From 0351c2c8c28af6d4d69d0e56167c8747bc6aebc2 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 13 May 2024 18:03:48 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-events-35161.json | 5 +++++ .changes/next-release/api-change-vpclattice-72437.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-events-35161.json create mode 100644 .changes/next-release/api-change-vpclattice-72437.json diff --git a/.changes/next-release/api-change-events-35161.json b/.changes/next-release/api-change-events-35161.json new file mode 100644 index 0000000000..35642ad451 --- /dev/null +++ b/.changes/next-release/api-change-events-35161.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``events``", + "description": "[``botocore``] Amazon EventBridge introduces KMS customer-managed key (CMK) encryption support for custom and partner events published on EventBridge Event Bus (including default bus) and UpdateEventBus API." +} diff --git a/.changes/next-release/api-change-vpclattice-72437.json b/.changes/next-release/api-change-vpclattice-72437.json new file mode 100644 index 0000000000..88b56a5347 --- /dev/null +++ b/.changes/next-release/api-change-vpclattice-72437.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``vpc-lattice``", + "description": "[``botocore``] This release adds TLS Passthrough support. It also increases max number of target group per rule to 10." +} From f0c077a8b4580bd5110297b02ec9d7da31384c9e Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 13 May 2024 18:04:52 +0000 Subject: [PATCH 2/2] Bumping version to 1.34.104 --- .changes/1.34.104.json | 12 ++++++++++++ .changes/next-release/api-change-events-35161.json | 5 ----- .../next-release/api-change-vpclattice-72437.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.34.104.json delete mode 100644 .changes/next-release/api-change-events-35161.json delete mode 100644 .changes/next-release/api-change-vpclattice-72437.json diff --git a/.changes/1.34.104.json b/.changes/1.34.104.json new file mode 100644 index 0000000000..33125d50ab --- /dev/null +++ b/.changes/1.34.104.json @@ -0,0 +1,12 @@ +[ + { + "category": "``events``", + "description": "[``botocore``] Amazon EventBridge introduces KMS customer-managed key (CMK) encryption support for custom and partner events published on EventBridge Event Bus (including default bus) and UpdateEventBus API.", + "type": "api-change" + }, + { + "category": "``vpc-lattice``", + "description": "[``botocore``] This release adds TLS Passthrough support. It also increases max number of target group per rule to 10.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-events-35161.json b/.changes/next-release/api-change-events-35161.json deleted file mode 100644 index 35642ad451..0000000000 --- a/.changes/next-release/api-change-events-35161.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``events``", - "description": "[``botocore``] Amazon EventBridge introduces KMS customer-managed key (CMK) encryption support for custom and partner events published on EventBridge Event Bus (including default bus) and UpdateEventBus API." -} diff --git a/.changes/next-release/api-change-vpclattice-72437.json b/.changes/next-release/api-change-vpclattice-72437.json deleted file mode 100644 index 88b56a5347..0000000000 --- a/.changes/next-release/api-change-vpclattice-72437.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``vpc-lattice``", - "description": "[``botocore``] This release adds TLS Passthrough support. It also increases max number of target group per rule to 10." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9c9d6888f9..4256b35506 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.34.104 +======== + +* api-change:``events``: [``botocore``] Amazon EventBridge introduces KMS customer-managed key (CMK) encryption support for custom and partner events published on EventBridge Event Bus (including default bus) and UpdateEventBus API. +* api-change:``vpc-lattice``: [``botocore``] This release adds TLS Passthrough support. It also increases max number of target group per rule to 10. + + 1.34.103 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 5cc7c1991a..3877946829 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.103' +__version__ = '1.34.104' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 1f7b79a43f..3b77005b1c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.103,<1.35.0 + botocore>=1.34.104,<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 01b3568ac4..19ff749853 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.103,<1.35.0', + 'botocore>=1.34.104,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]