diff --git a/.changes/1.34.151.json b/.changes/1.34.151.json new file mode 100644 index 0000000000..2f534c12df --- /dev/null +++ b/.changes/1.34.151.json @@ -0,0 +1,57 @@ +[ + { + "category": "``appstream``", + "description": "[``botocore``] Added support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0", + "type": "api-change" + }, + { + "category": "``autoscaling``", + "description": "[``botocore``] Increase the length limit for VPCZoneIdentifier from 2047 to 5000", + "type": "api-change" + }, + { + "category": "``codepipeline``", + "description": "[``botocore``] AWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.", + "type": "api-change" + }, + { + "category": "``elasticache``", + "description": "[``botocore``] Doc only update for changes to deletion API.", + "type": "api-change" + }, + { + "category": "``elb``", + "description": "[``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing.", + "type": "api-change" + }, + { + "category": "``events``", + "description": "[``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing.", + "type": "api-change" + }, + { + "category": "``lexv2-models``", + "description": "[``botocore``] This release adds new capabilities to the AMAZON.QnAIntent: Custom prompting, Guardrails integration and ExactResponse support for Bedrock Knowledge Base.", + "type": "api-change" + }, + { + "category": "``logs``", + "description": "[``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing.", + "type": "api-change" + }, + { + "category": "``rolesanywhere``", + "description": "[``botocore``] IAM RolesAnywhere now supports custom role session name on the CreateSession. This release adds the acceptRoleSessionName option to a profile to control whether a role session name will be accepted in a session request with a given profile.", + "type": "api-change" + }, + { + "category": "``tnb``", + "description": "[``botocore``] This release adds Network Service Update, through which customers will be able to update their instantiated networks to a new network package. See the documentation for limitations. The release also enhances the Get network operation API to return parameter overrides used during the operation.", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "[``botocore``] Removing multi-session as it isn't supported for pools", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 315cc77cd0..91ea2cec40 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,22 @@ CHANGELOG ========= +1.34.151 +======== + +* api-change:``appstream``: [``botocore``] Added support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0 +* api-change:``autoscaling``: [``botocore``] Increase the length limit for VPCZoneIdentifier from 2047 to 5000 +* api-change:``codepipeline``: [``botocore``] AWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements. +* api-change:``elasticache``: [``botocore``] Doc only update for changes to deletion API. +* api-change:``elb``: [``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing. +* api-change:``events``: [``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing. +* api-change:``lexv2-models``: [``botocore``] This release adds new capabilities to the AMAZON.QnAIntent: Custom prompting, Guardrails integration and ExactResponse support for Bedrock Knowledge Base. +* api-change:``logs``: [``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing. +* api-change:``rolesanywhere``: [``botocore``] IAM RolesAnywhere now supports custom role session name on the CreateSession. This release adds the acceptRoleSessionName option to a profile to control whether a role session name will be accepted in a session request with a given profile. +* api-change:``tnb``: [``botocore``] This release adds Network Service Update, through which customers will be able to update their instantiated networks to a new network package. See the documentation for limitations. The release also enhances the Get network operation API to return parameter overrides used during the operation. +* api-change:``workspaces``: [``botocore``] Removing multi-session as it isn't supported for pools + + 1.34.150 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 45af060b31..32b10fa5ca 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.150' +__version__ = '1.34.151' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 4c45967198..7fcb493ab4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.150,<1.35.0 + botocore>=1.34.151,<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 f23e732660..b309d96986 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.34.150,<1.35.0', + 'botocore>=1.34.151,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]