diff --git a/.changes/1.26.20.json b/.changes/1.26.20.json new file mode 100644 index 0000000000..b1974e6968 --- /dev/null +++ b/.changes/1.26.20.json @@ -0,0 +1,42 @@ +[ + { + "category": "``accessanalyzer``", + "description": "[``botocore``] This release adds support for S3 cross account access points. IAM Access Analyzer will now produce public or cross account findings when it detects bucket delegation to external account access points.", + "type": "api-change" + }, + { + "category": "``athena``", + "description": "[``botocore``] This release includes support for using Apache Spark in Amazon Athena.", + "type": "api-change" + }, + { + "category": "``dataexchange``", + "description": "[``botocore``] This release enables data providers to license direct access to data in their Amazon S3 buckets or AWS Lake Formation data lakes through AWS Data Exchange. Subscribers get read-only access to the data and can use it in downstream AWS services, like Amazon Athena, without creating or managing copies.", + "type": "api-change" + }, + { + "category": "``docdb-elastic``", + "description": "[``botocore``] Launched Amazon DocumentDB Elastic Clusters. You can now use the SDK to create, list, update and delete Amazon DocumentDB Elastic Cluster resources", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] This release adds support for AWS Glue Data Quality, which helps you evaluate and monitor the quality of your data and includes the API for creating, deleting, or updating data quality rulesets, runs and evaluations.", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "[``botocore``] Amazon S3 now supports cross-account access points. S3 bucket owners can now allow trusted AWS accounts to create access points associated with their bucket.", + "type": "api-change" + }, + { + "category": "``sagemaker-geospatial``", + "description": "[``botocore``] This release provides Amazon SageMaker geospatial APIs to build, train, deploy and visualize geospatial models.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Added Models as part of the Search API. Added Model shadow deployments in realtime inference, and shadow testing in managed inference. Added support for shared spaces, geospatial APIs, Model Cards, AutoMLJobStep in pipelines, Git repositories on user profiles and domains, Model sharing in Jumpstart.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 29f3360e1a..977e410e3a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.26.20 +======= + +* api-change:``accessanalyzer``: [``botocore``] This release adds support for S3 cross account access points. IAM Access Analyzer will now produce public or cross account findings when it detects bucket delegation to external account access points. +* api-change:``athena``: [``botocore``] This release includes support for using Apache Spark in Amazon Athena. +* api-change:``dataexchange``: [``botocore``] This release enables data providers to license direct access to data in their Amazon S3 buckets or AWS Lake Formation data lakes through AWS Data Exchange. Subscribers get read-only access to the data and can use it in downstream AWS services, like Amazon Athena, without creating or managing copies. +* api-change:``docdb-elastic``: [``botocore``] Launched Amazon DocumentDB Elastic Clusters. You can now use the SDK to create, list, update and delete Amazon DocumentDB Elastic Cluster resources +* api-change:``glue``: [``botocore``] This release adds support for AWS Glue Data Quality, which helps you evaluate and monitor the quality of your data and includes the API for creating, deleting, or updating data quality rulesets, runs and evaluations. +* api-change:``s3control``: [``botocore``] Amazon S3 now supports cross-account access points. S3 bucket owners can now allow trusted AWS accounts to create access points associated with their bucket. +* api-change:``sagemaker-geospatial``: [``botocore``] This release provides Amazon SageMaker geospatial APIs to build, train, deploy and visualize geospatial models. +* api-change:``sagemaker``: [``botocore``] Added Models as part of the Search API. Added Model shadow deployments in realtime inference, and shadow testing in managed inference. Added support for shared spaces, geospatial APIs, Model Cards, AutoMLJobStep in pipelines, Git repositories on user profiles and domains, Model sharing in Jumpstart. + + 1.26.19 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 4185002620..5acfc1003a 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.19' +__version__ = '1.26.20' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 48071fee32..c625949622 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.19,<1.30.0 + botocore>=1.29.20,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 2d90d2a382..937702379a 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.19,<1.30.0', + 'botocore>=1.29.20,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]