diff --git a/.changes/1.34.127.json b/.changes/1.34.127.json new file mode 100644 index 0000000000..d0c8f8e1f6 --- /dev/null +++ b/.changes/1.34.127.json @@ -0,0 +1,27 @@ +[ + { + "category": "``datazone``", + "description": "[``botocore``] This release introduces a new default service blueprint for custom environment creation.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Documentation updates for Amazon EC2.", + "type": "api-change" + }, + { + "category": "``macie2``", + "description": "[``botocore``] This release adds support for managing the status of automated sensitive data discovery for individual accounts in an organization, and determining whether individual S3 buckets are included in the scope of the analyses.", + "type": "api-change" + }, + { + "category": "``mediaconvert``", + "description": "[``botocore``] This release adds the ability to search for historical job records within the management console using a search box and/or via the SDK/CLI with partial string matching search on input file name.", + "type": "api-change" + }, + { + "category": "``route53domains``", + "description": "[``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-datazone-6155.json b/.changes/next-release/api-change-datazone-6155.json deleted file mode 100644 index 4ecd82d06a..0000000000 --- a/.changes/next-release/api-change-datazone-6155.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``datazone``", - "description": "[``botocore``] This release introduces a new default service blueprint for custom environment creation." -} diff --git a/.changes/next-release/api-change-ec2-26039.json b/.changes/next-release/api-change-ec2-26039.json deleted file mode 100644 index 0306a0e5da..0000000000 --- a/.changes/next-release/api-change-ec2-26039.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ec2``", - "description": "[``botocore``] Documentation updates for Amazon EC2." -} diff --git a/.changes/next-release/api-change-macie2-49199.json b/.changes/next-release/api-change-macie2-49199.json deleted file mode 100644 index b93e5584fa..0000000000 --- a/.changes/next-release/api-change-macie2-49199.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``macie2``", - "description": "[``botocore``] This release adds support for managing the status of automated sensitive data discovery for individual accounts in an organization, and determining whether individual S3 buckets are included in the scope of the analyses." -} diff --git a/.changes/next-release/api-change-mediaconvert-48848.json b/.changes/next-release/api-change-mediaconvert-48848.json deleted file mode 100644 index a322d31a69..0000000000 --- a/.changes/next-release/api-change-mediaconvert-48848.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``mediaconvert``", - "description": "[``botocore``] This release adds the ability to search for historical job records within the management console using a search box and/or via the SDK/CLI with partial string matching search on input file name." -} diff --git a/.changes/next-release/api-change-route53domains-93048.json b/.changes/next-release/api-change-route53domains-93048.json deleted file mode 100644 index aa33289d7c..0000000000 --- a/.changes/next-release/api-change-route53domains-93048.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``route53domains``", - "description": "[``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 22eeeee467..c603dca580 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.34.127 +======== + +* api-change:``datazone``: [``botocore``] This release introduces a new default service blueprint for custom environment creation. +* api-change:``ec2``: [``botocore``] Documentation updates for Amazon EC2. +* api-change:``macie2``: [``botocore``] This release adds support for managing the status of automated sensitive data discovery for individual accounts in an organization, and determining whether individual S3 buckets are included in the scope of the analyses. +* api-change:``mediaconvert``: [``botocore``] This release adds the ability to search for historical job records within the management console using a search box and/or via the SDK/CLI with partial string matching search on input file name. +* api-change:``route53domains``: [``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing. + + 1.34.126 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 386050e448..28045320d2 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.126' +__version__ = '1.34.127' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index e03083e608..fddd31018b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.126,<1.35.0 + botocore>=1.34.127,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 9809f42b7f..33e4846d5e 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.34.126,<1.35.0', + 'botocore>=1.34.127,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]