diff --git a/.changes/1.29.72.json b/.changes/1.29.72.json new file mode 100644 index 000000000000..6fa27a020b6b --- /dev/null +++ b/.changes/1.29.72.json @@ -0,0 +1,52 @@ +[ + { + "category": "``appstream``", + "description": "This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "Launching GetSecurityGroupsForVpc API. This API gets security groups that can be associated by the AWS account making the request with network interfaces in the specified VPC.", + "type": "api-change" + }, + { + "category": "``network-firewall``", + "description": "Network Firewall now supports inspection of outbound SSL/TLS traffic.", + "type": "api-change" + }, + { + "category": "``opensearch``", + "description": "You can specify ipv4 or dualstack IPAddressType for cluster endpoints. If you specify IPAddressType as dualstack, the new endpoint will be visible under the 'EndpointV2' parameter and will support IPv4 and IPv6 requests. Whereas, the 'Endpoint' will continue to serve IPv4 requests.", + "type": "api-change" + }, + { + "category": "``redshift``", + "description": "Add Redshift APIs GetResourcePolicy, DeleteResourcePolicy, PutResourcePolicy and DescribeInboundIntegrations for the new Amazon Redshift Zero-ETL integration feature, which can be used to control data ingress into Redshift namespace, and view inbound integrations.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "Amazon Sagemaker Autopilot now supports Text Generation jobs.", + "type": "api-change" + }, + { + "category": "``sns``", + "description": "Message Archiving and Replay is now supported in Amazon SNS for FIFO topics.", + "type": "api-change" + }, + { + "category": "``ssm-sap``", + "description": "AWS Systems Manager for SAP added support for registration and discovery of SAP ABAP applications", + "type": "api-change" + }, + { + "category": "``transfer``", + "description": "No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.", + "type": "api-change" + }, + { + "category": "``endpoint-rules``", + "description": "Update endpoint-rules command to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d72c4956785a..75b6496630b5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,21 @@ CHANGELOG ========= +1.29.72 +======= + +* api-change:``appstream``: This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance. +* api-change:``ec2``: Launching GetSecurityGroupsForVpc API. This API gets security groups that can be associated by the AWS account making the request with network interfaces in the specified VPC. +* api-change:``network-firewall``: Network Firewall now supports inspection of outbound SSL/TLS traffic. +* api-change:``opensearch``: You can specify ipv4 or dualstack IPAddressType for cluster endpoints. If you specify IPAddressType as dualstack, the new endpoint will be visible under the 'EndpointV2' parameter and will support IPv4 and IPv6 requests. Whereas, the 'Endpoint' will continue to serve IPv4 requests. +* api-change:``redshift``: Add Redshift APIs GetResourcePolicy, DeleteResourcePolicy, PutResourcePolicy and DescribeInboundIntegrations for the new Amazon Redshift Zero-ETL integration feature, which can be used to control data ingress into Redshift namespace, and view inbound integrations. +* api-change:``sagemaker``: Amazon Sagemaker Autopilot now supports Text Generation jobs. +* api-change:``sns``: Message Archiving and Replay is now supported in Amazon SNS for FIFO topics. +* api-change:``ssm-sap``: AWS Systems Manager for SAP added support for registration and discovery of SAP ABAP applications +* api-change:``transfer``: No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged. +* api-change:``endpoint-rules``: Update endpoint-rules command to latest version + + 1.29.71 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index a33c8e711b03..fdbc0f55120a 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.29.71' +__version__ = '1.29.72' # # 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 e9d5aaafe82f..011979711aa7 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.29.' # The full version, including alpha/beta/rc tags. -release = '1.29.71' +release = '1.29.72' # 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 6bfff4a7c3e3..723a0ab5338f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.31.71 + botocore==1.31.72 docutils>=0.10,<0.17 s3transfer>=0.7.0,<0.8.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index d2bcf8fb35d2..0adea1d1fa12 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.31.71', + 'botocore==1.31.72', 'docutils>=0.10,<0.17', 's3transfer>=0.7.0,<0.8.0', 'PyYAML>=3.10,<6.1',