diff --git a/.changes/1.32.92.json b/.changes/1.32.92.json new file mode 100644 index 000000000000..bcd750c38770 --- /dev/null +++ b/.changes/1.32.92.json @@ -0,0 +1,32 @@ +[ + { + "category": "``appsync``", + "description": "UpdateGraphQLAPI documentation update and datasource introspection secret arn update", + "type": "api-change" + }, + { + "category": "``fms``", + "description": "AWS Firewall Manager adds support for network ACL policies to manage Amazon Virtual Private Cloud (VPC) network access control lists (ACLs) for accounts in your organization.", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "Bug Fix: IVS does not support arns with the `svs` prefix", + "type": "api-change" + }, + { + "category": "``ivs-realtime``", + "description": "Bug Fix: IVS Real Time does not support ARNs using the `svs` prefix.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "Updates Amazon RDS documentation for setting local time zones for RDS for Db2 DB instances.", + "type": "api-change" + }, + { + "category": "``stepfunctions``", + "description": "Add new ValidateStateMachineDefinition operation, which performs syntax checking on the definition of a Amazon States Language (ASL) state machine.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d5c231c09bc9..4c3782e76cd7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.32.92 +======= + +* api-change:``appsync``: UpdateGraphQLAPI documentation update and datasource introspection secret arn update +* api-change:``fms``: AWS Firewall Manager adds support for network ACL policies to manage Amazon Virtual Private Cloud (VPC) network access control lists (ACLs) for accounts in your organization. +* api-change:``ivs``: Bug Fix: IVS does not support arns with the `svs` prefix +* api-change:``ivs-realtime``: Bug Fix: IVS Real Time does not support ARNs using the `svs` prefix. +* api-change:``rds``: Updates Amazon RDS documentation for setting local time zones for RDS for Db2 DB instances. +* api-change:``stepfunctions``: Add new ValidateStateMachineDefinition operation, which performs syntax checking on the definition of a Amazon States Language (ASL) state machine. + + 1.32.91 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 1763c10f4edf..44e152b51f81 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.32.91' +__version__ = '1.32.92' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 359e84b45818..42973e819cb4 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.32.' # The full version, including alpha/beta/rc tags. -release = '1.32.91' +release = '1.32.92' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index d0e17c3f642d..23fd8bb3ff44 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.34.91 + botocore==1.34.92 docutils>=0.10,<0.17 s3transfer>=0.10.0,<0.11.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index 4b9e1d9b724e..e1393acff120 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.34.91', + 'botocore==1.34.92', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',