diff --git a/.changes/1.31.2.json b/.changes/1.31.2.json new file mode 100644 index 000000000000..d67780dd43ba --- /dev/null +++ b/.changes/1.31.2.json @@ -0,0 +1,62 @@ +[ + { + "category": "``accessanalyzer``", + "description": "This release adds support for external access findings for S3 directory buckets to help you easily identify cross-account access. Updated service API, documentation, and paginators.", + "type": "api-change" + }, + { + "category": "``bedrock``", + "description": "This release adds support for customization types, model life cycle status and minor versions/aliases for model identifiers.", + "type": "api-change" + }, + { + "category": "``bedrock-agent``", + "description": "This release introduces Agents for Amazon Bedrock", + "type": "api-change" + }, + { + "category": "``bedrock-agent-runtime``", + "description": "This release introduces Agents for Amazon Bedrock Runtime", + "type": "api-change" + }, + { + "category": "``bedrock-runtime``", + "description": "This release adds support for minor versions/aliases for invoke model identifier.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "Added support for following capabilities: Amazon Connect's in-app, web, and video calling. Two-way SMS integrations. Contact Lens real-time chat analytics feature. Amazon Connect Analytics Datalake capability. Capability to configure real time chat rules.", + "type": "api-change" + }, + { + "category": "``customer-profiles``", + "description": "This release introduces DetectProfileObjectType API to auto generate object type mapping.", + "type": "api-change" + }, + { + "category": "``endpoint-rules``", + "description": "Update endpoint-rules command to latest version", + "type": "api-change" + }, + { + "category": "``qbusiness``", + "description": "Amazon Q - a generative AI powered application that your employees can use to ask questions and get answers from knowledge spread across disparate content repositories, summarize reports, write articles, take actions, and much more - all within their company's connected content repositories.", + "type": "api-change" + }, + { + "category": "``qconnect``", + "description": "Amazon Q in Connect, an LLM-enhanced evolution of Amazon Connect Wisdom. This release adds generative AI support to Amazon Q Connect QueryAssistant and GetRecommendations APIs.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "Adds support for S3 Express One Zone.", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "Adds support for S3 Express One Zone, and InvocationSchemaVersion 2.0 for S3 Batch Operations.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index eee6d84a88f0..e8d0a3c99a0b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,23 @@ CHANGELOG ========= +1.31.2 +====== + +* api-change:``accessanalyzer``: This release adds support for external access findings for S3 directory buckets to help you easily identify cross-account access. Updated service API, documentation, and paginators. +* api-change:``bedrock``: This release adds support for customization types, model life cycle status and minor versions/aliases for model identifiers. +* api-change:``bedrock-agent``: This release introduces Agents for Amazon Bedrock +* api-change:``bedrock-agent-runtime``: This release introduces Agents for Amazon Bedrock Runtime +* api-change:``bedrock-runtime``: This release adds support for minor versions/aliases for invoke model identifier. +* api-change:``connect``: Added support for following capabilities: Amazon Connect's in-app, web, and video calling. Two-way SMS integrations. Contact Lens real-time chat analytics feature. Amazon Connect Analytics Datalake capability. Capability to configure real time chat rules. +* api-change:``customer-profiles``: This release introduces DetectProfileObjectType API to auto generate object type mapping. +* api-change:``endpoint-rules``: Update endpoint-rules command to latest version +* api-change:``qbusiness``: Amazon Q - a generative AI powered application that your employees can use to ask questions and get answers from knowledge spread across disparate content repositories, summarize reports, write articles, take actions, and much more - all within their company's connected content repositories. +* api-change:``qconnect``: Amazon Q in Connect, an LLM-enhanced evolution of Amazon Connect Wisdom. This release adds generative AI support to Amazon Q Connect QueryAssistant and GetRecommendations APIs. +* api-change:``s3``: Adds support for S3 Express One Zone. +* api-change:``s3control``: Adds support for S3 Express One Zone, and InvocationSchemaVersion 2.0 for S3 Batch Operations. + + 1.31.1 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index 6a8a950ea2f3..17129a2934f9 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.31.1' +__version__ = '1.31.2' # # Get our data path to be added to botocore's search path diff --git a/awscli/customizations/removals.py b/awscli/customizations/removals.py index 74d995d8dc6c..439b3cade64a 100644 --- a/awscli/customizations/removals.py +++ b/awscli/customizations/removals.py @@ -50,6 +50,8 @@ def register_removals(event_handler): remove_commands=['invoke-endpoint-with-response-stream']) cmd_remover.remove(on_event='building-command-table.bedrock-runtime', remove_commands=['invoke-model-with-response-stream']) + cmd_remover.remove(on_event='building-command-table.bedrock-agent-runtime', + remove_commands=['invoke-agent']) class CommandRemover(object): diff --git a/doc/source/conf.py b/doc/source/conf.py index 807ca514780e..2394133569dc 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.31' # The full version, including alpha/beta/rc tags. -release = '1.31.1' +release = '1.31.2' # 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 ef4e8c978f4e..9d855cda88a5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.33.1 + botocore==1.33.2 docutils>=0.10,<0.17 s3transfer>=0.8.0,<0.9.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index c09905000511..bee249744818 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.33.1', + 'botocore==1.33.2', 'docutils>=0.10,<0.17', 's3transfer>=0.8.0,<0.9.0', 'PyYAML>=3.10,<6.1',