From 1cc1db338e464c5e41b585c7cf21bfe943ba0835 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 22 Nov 2024 19:10:37 +0000 Subject: [PATCH 1/4] Merge customizations for EMR --- awscli/customizations/emr/argumentschema.py | 16 ++++++++++++ .../emr/test_create_cluster_release_label.py | 26 +++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/awscli/customizations/emr/argumentschema.py b/awscli/customizations/emr/argumentschema.py index e3f64dc47002..2022480a56ca 100644 --- a/awscli/customizations/emr/argumentschema.py +++ b/awscli/customizations/emr/argumentschema.py @@ -849,6 +849,22 @@ "The parameter is used to split capacity allocation between core and task nodes." } } + }, + "ScalingStrategy": { + "type": "string", + "enum": ["DEFAULT", "ADVANCED"], + "description": + "Determines whether a custom scaling utilization performance index can be set. " + "Possible values include ADVANCED or DEFAULT." + }, + "UtilizationPerformanceIndex": { + "type": "integer", + "description": + "An integer value that represents an advanced scaling strategy. " + "Setting a higher value optimizes for performance. " + "Setting a lower value optimizes for resource conservation. " + "Setting the value to 50 balances performance and resource conservation. " + "Possible values are 1, 25, 50, 75, and 100." } } } diff --git a/tests/unit/customizations/emr/test_create_cluster_release_label.py b/tests/unit/customizations/emr/test_create_cluster_release_label.py index 5fef58312559..841f68ccf0d2 100644 --- a/tests/unit/customizations/emr/test_create_cluster_release_label.py +++ b/tests/unit/customizations/emr/test_create_cluster_release_label.py @@ -1496,6 +1496,32 @@ def test_create_cluster_with_managed_scaling_policy(self): } self.assert_params_for_cmd(cmd, result) + def test_create_cluster_with_managed_scaling_policy_customer_knobs(self): + cmd = (self.prefix + '--release-label emr-5.28.0 --security-configuration MySecurityConfig ' + + '--managed-scaling-policy ComputeLimits={MinimumCapacityUnits=2,MaximumCapacityUnits=4,' + + 'UnitType=Instances,MaximumCoreCapacityUnits=1},ScalingStrategy=ADVANCED,' + + 'UtilizationPerformanceIndex=1 --instance-groups ' + DEFAULT_INSTANCE_GROUPS_ARG) + result = \ + { + 'Name': DEFAULT_CLUSTER_NAME, + 'Instances': DEFAULT_INSTANCES, + 'ReleaseLabel': 'emr-5.28.0', + 'VisibleToAllUsers': True, + 'Tags': [], + 'ManagedScalingPolicy': { + 'ComputeLimits': { + 'MinimumCapacityUnits': 2, + 'MaximumCapacityUnits': 4, + 'UnitType': 'Instances', + 'MaximumCoreCapacityUnits': 1 + }, + 'ScalingStrategy': 'ADVANCED', + 'UtilizationPerformanceIndex': 1, + }, + 'SecurityConfiguration': 'MySecurityConfig' + } + self.assert_params_for_cmd(cmd, result) + def test_create_cluster_with_auto_termination_policy(self): cmd = (self.prefix + '--release-label emr-5.34.0 ' + '--auto-termination-policy IdleTimeout=100 ' + From 84cd3845a74f087ef6e1a8b59ab939f2297a98d6 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 22 Nov 2024 19:10:37 +0000 Subject: [PATCH 2/4] Merge customizations for Bedrock Agent Runtime --- awscli/customizations/removals.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awscli/customizations/removals.py b/awscli/customizations/removals.py index af7894e90c19..ad986d1ebbf8 100644 --- a/awscli/customizations/removals.py +++ b/awscli/customizations/removals.py @@ -56,6 +56,7 @@ def register_removals(event_handler): cmd_remover.remove(on_event='building-command-table.bedrock-agent-runtime', remove_commands=['invoke-agent', 'invoke-flow', + 'invoke-inline-agent', 'optimize-prompt']) cmd_remover.remove(on_event='building-command-table.qbusiness', remove_commands=['chat']) From 478cb054e26a89e0cd18f456e084e636ba98619f Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 22 Nov 2024 19:10:43 +0000 Subject: [PATCH 3/4] Update changelog based on model updates --- .changes/next-release/api-change-autoscaling-71496.json | 5 +++++ .../next-release/api-change-bcmpricingcalculator-57102.json | 5 +++++ .../next-release/api-change-bedrockagentruntime-41306.json | 5 +++++ .changes/next-release/api-change-ce-98876.json | 5 +++++ .changes/next-release/api-change-chatbot-81188.json | 5 +++++ .changes/next-release/api-change-codepipeline-28045.json | 5 +++++ .changes/next-release/api-change-cognitoidp-3247.json | 5 +++++ .changes/next-release/api-change-connect-96625.json | 5 +++++ .changes/next-release/api-change-elbv2-32429.json | 5 +++++ .changes/next-release/api-change-emr-40799.json | 5 +++++ .changes/next-release/api-change-inspector2-6787.json | 5 +++++ .changes/next-release/api-change-lambda-47881.json | 5 +++++ .changes/next-release/api-change-mailmanager-62413.json | 5 +++++ .changes/next-release/api-change-neptunegraph-12418.json | 5 +++++ .changes/next-release/api-change-omics-14565.json | 5 +++++ .changes/next-release/api-change-quicksight-93035.json | 5 +++++ .changes/next-release/api-change-sagemaker-63067.json | 5 +++++ .changes/next-release/api-change-ses-30272.json | 5 +++++ .changes/next-release/api-change-sns-50181.json | 5 +++++ .changes/next-release/api-change-stepfunctions-95183.json | 5 +++++ .changes/next-release/api-change-workspaces-47480.json | 5 +++++ 21 files changed, 105 insertions(+) create mode 100644 .changes/next-release/api-change-autoscaling-71496.json create mode 100644 .changes/next-release/api-change-bcmpricingcalculator-57102.json create mode 100644 .changes/next-release/api-change-bedrockagentruntime-41306.json create mode 100644 .changes/next-release/api-change-ce-98876.json create mode 100644 .changes/next-release/api-change-chatbot-81188.json create mode 100644 .changes/next-release/api-change-codepipeline-28045.json create mode 100644 .changes/next-release/api-change-cognitoidp-3247.json create mode 100644 .changes/next-release/api-change-connect-96625.json create mode 100644 .changes/next-release/api-change-elbv2-32429.json create mode 100644 .changes/next-release/api-change-emr-40799.json create mode 100644 .changes/next-release/api-change-inspector2-6787.json create mode 100644 .changes/next-release/api-change-lambda-47881.json create mode 100644 .changes/next-release/api-change-mailmanager-62413.json create mode 100644 .changes/next-release/api-change-neptunegraph-12418.json create mode 100644 .changes/next-release/api-change-omics-14565.json create mode 100644 .changes/next-release/api-change-quicksight-93035.json create mode 100644 .changes/next-release/api-change-sagemaker-63067.json create mode 100644 .changes/next-release/api-change-ses-30272.json create mode 100644 .changes/next-release/api-change-sns-50181.json create mode 100644 .changes/next-release/api-change-stepfunctions-95183.json create mode 100644 .changes/next-release/api-change-workspaces-47480.json diff --git a/.changes/next-release/api-change-autoscaling-71496.json b/.changes/next-release/api-change-autoscaling-71496.json new file mode 100644 index 000000000000..e313ec51143d --- /dev/null +++ b/.changes/next-release/api-change-autoscaling-71496.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``autoscaling``", + "description": "Now, Amazon EC2 Auto Scaling customers can enable target tracking policies to take quicker scaling decisions, enhancing their application performance and EC2 utilization. To get started, specify target tracking to monitor a metric that is available on Amazon CloudWatch at seconds-level interval." +} diff --git a/.changes/next-release/api-change-bcmpricingcalculator-57102.json b/.changes/next-release/api-change-bcmpricingcalculator-57102.json new file mode 100644 index 000000000000..cae6dd6b5363 --- /dev/null +++ b/.changes/next-release/api-change-bcmpricingcalculator-57102.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``bcm-pricing-calculator``", + "description": "Initial release of the AWS Billing and Cost Management Pricing Calculator API." +} diff --git a/.changes/next-release/api-change-bedrockagentruntime-41306.json b/.changes/next-release/api-change-bedrockagentruntime-41306.json new file mode 100644 index 000000000000..592bff0ed421 --- /dev/null +++ b/.changes/next-release/api-change-bedrockagentruntime-41306.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``bedrock-agent-runtime``", + "description": "InvokeInlineAgent API release to help invoke runtime agents without any dependency on preconfigured agents." +} diff --git a/.changes/next-release/api-change-ce-98876.json b/.changes/next-release/api-change-ce-98876.json new file mode 100644 index 000000000000..fa02d3f30532 --- /dev/null +++ b/.changes/next-release/api-change-ce-98876.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``ce``", + "description": "This release adds the Impact field(contains Contribution field) to the GetAnomalies API response under RootCause" +} diff --git a/.changes/next-release/api-change-chatbot-81188.json b/.changes/next-release/api-change-chatbot-81188.json new file mode 100644 index 000000000000..b41908ea181a --- /dev/null +++ b/.changes/next-release/api-change-chatbot-81188.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``chatbot``", + "description": "Adds support for programmatic management of custom actions and aliases which can be associated with channel configurations." +} diff --git a/.changes/next-release/api-change-codepipeline-28045.json b/.changes/next-release/api-change-codepipeline-28045.json new file mode 100644 index 000000000000..5b8c529661ce --- /dev/null +++ b/.changes/next-release/api-change-codepipeline-28045.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``codepipeline``", + "description": "AWS CodePipeline V2 type pipelines now support ECRBuildAndPublish and InspectorScan actions." +} diff --git a/.changes/next-release/api-change-cognitoidp-3247.json b/.changes/next-release/api-change-cognitoidp-3247.json new file mode 100644 index 000000000000..cea52e86756f --- /dev/null +++ b/.changes/next-release/api-change-cognitoidp-3247.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``cognito-idp``", + "description": "Add support for users to sign up and sign in without passwords, using email and SMS OTPs and Passkeys. Add support for Passkeys based on WebAuthn. Add support for enhanced branding customization for hosted authentication pages with Amazon Cognito Managed Login. Add feature tiers with new pricing." +} diff --git a/.changes/next-release/api-change-connect-96625.json b/.changes/next-release/api-change-connect-96625.json new file mode 100644 index 000000000000..09f5588810d2 --- /dev/null +++ b/.changes/next-release/api-change-connect-96625.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``connect``", + "description": "Amazon Connect Service Feature: Add APIs for Amazon Connect Email Channel" +} diff --git a/.changes/next-release/api-change-elbv2-32429.json b/.changes/next-release/api-change-elbv2-32429.json new file mode 100644 index 000000000000..01fc73160e8b --- /dev/null +++ b/.changes/next-release/api-change-elbv2-32429.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``elbv2``", + "description": "This release adds support for advertising trusted CA certificate names in associated trust stores." +} diff --git a/.changes/next-release/api-change-emr-40799.json b/.changes/next-release/api-change-emr-40799.json new file mode 100644 index 000000000000..358d0d91aedb --- /dev/null +++ b/.changes/next-release/api-change-emr-40799.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``emr``", + "description": "Advanced Scaling in Amazon EMR Managed Scaling" +} diff --git a/.changes/next-release/api-change-inspector2-6787.json b/.changes/next-release/api-change-inspector2-6787.json new file mode 100644 index 000000000000..079b38e15c95 --- /dev/null +++ b/.changes/next-release/api-change-inspector2-6787.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``inspector2``", + "description": "Extend inspector2 service model to include ServiceQuotaExceededException." +} diff --git a/.changes/next-release/api-change-lambda-47881.json b/.changes/next-release/api-change-lambda-47881.json new file mode 100644 index 000000000000..f3c4f8028cd5 --- /dev/null +++ b/.changes/next-release/api-change-lambda-47881.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``lambda``", + "description": "Add ProvisionedPollerConfig to Lambda event-source-mapping API." +} diff --git a/.changes/next-release/api-change-mailmanager-62413.json b/.changes/next-release/api-change-mailmanager-62413.json new file mode 100644 index 000000000000..3b20711fdef3 --- /dev/null +++ b/.changes/next-release/api-change-mailmanager-62413.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``mailmanager``", + "description": "Added new \"DeliverToQBusiness\" rule action to MailManager RulesSet for ingesting email data into Amazon Q Business customer applications" +} diff --git a/.changes/next-release/api-change-neptunegraph-12418.json b/.changes/next-release/api-change-neptunegraph-12418.json new file mode 100644 index 000000000000..3b8b603ed799 --- /dev/null +++ b/.changes/next-release/api-change-neptunegraph-12418.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``neptune-graph``", + "description": "Add 4 new APIs to support new Export features, allowing Parquet and CSV formats. Add new arguments in Import APIs to support Parquet import. Add a new query \"neptune.read\" to run algorithms without loading data into database" +} diff --git a/.changes/next-release/api-change-omics-14565.json b/.changes/next-release/api-change-omics-14565.json new file mode 100644 index 000000000000..1bf3d5d62e81 --- /dev/null +++ b/.changes/next-release/api-change-omics-14565.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``omics``", + "description": "This release adds support for resource policy based cross account S3 access to sequence store read sets." +} diff --git a/.changes/next-release/api-change-quicksight-93035.json b/.changes/next-release/api-change-quicksight-93035.json new file mode 100644 index 000000000000..bfd6c0490708 --- /dev/null +++ b/.changes/next-release/api-change-quicksight-93035.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``quicksight``", + "description": "This release includes: Update APIs to support Image, Layer Map, font customization, and Plugin Visual. Add Identity center related information in ListNamsespace API. Update API for restrictedFolder support in topics and add API for SearchTopics, Describe/Update DashboardsQA Configration." +} diff --git a/.changes/next-release/api-change-sagemaker-63067.json b/.changes/next-release/api-change-sagemaker-63067.json new file mode 100644 index 000000000000..858131b6654e --- /dev/null +++ b/.changes/next-release/api-change-sagemaker-63067.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``sagemaker``", + "description": "This release adds APIs for new features for SageMaker endpoint to scale down to zero instances, native support for multi-adapter inference, and endpoint scaling improvements." +} diff --git a/.changes/next-release/api-change-ses-30272.json b/.changes/next-release/api-change-ses-30272.json new file mode 100644 index 000000000000..dc955a9cfee2 --- /dev/null +++ b/.changes/next-release/api-change-ses-30272.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``ses``", + "description": "This release adds support for starting email contacts in your Amazon Connect instance as an email receiving action." +} diff --git a/.changes/next-release/api-change-sns-50181.json b/.changes/next-release/api-change-sns-50181.json new file mode 100644 index 000000000000..05b7a2ed6ded --- /dev/null +++ b/.changes/next-release/api-change-sns-50181.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``sns``", + "description": "ArchivePolicy attribute added to Archive and Replay feature" +} diff --git a/.changes/next-release/api-change-stepfunctions-95183.json b/.changes/next-release/api-change-stepfunctions-95183.json new file mode 100644 index 000000000000..5f5b01327dc4 --- /dev/null +++ b/.changes/next-release/api-change-stepfunctions-95183.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``stepfunctions``", + "description": "Add support for variables and JSONata in TestState, GetExecutionHistory, DescribeStateMachine, and DescribeStateMachineForExecution" +} diff --git a/.changes/next-release/api-change-workspaces-47480.json b/.changes/next-release/api-change-workspaces-47480.json new file mode 100644 index 000000000000..af778581797c --- /dev/null +++ b/.changes/next-release/api-change-workspaces-47480.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``workspaces``", + "description": "While integrating WSP-DCV rebrand, a few mentions were erroneously renamed from WSP to DCV. This release reverts those mentions back to WSP." +} From 87df0c0466d6c4260217c23b918c83b5dce4e3e4 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 22 Nov 2024 19:11:51 +0000 Subject: [PATCH 4/4] Bumping version to 1.36.9 --- .changes/1.36.9.json | 107 ++++++++++++++++++ .../api-change-autoscaling-71496.json | 5 - ...api-change-bcmpricingcalculator-57102.json | 5 - .../api-change-bedrockagentruntime-41306.json | 5 - .../next-release/api-change-ce-98876.json | 5 - .../api-change-chatbot-81188.json | 5 - .../api-change-codepipeline-28045.json | 5 - .../api-change-cognitoidp-3247.json | 5 - .../api-change-connect-96625.json | 5 - .../next-release/api-change-elbv2-32429.json | 5 - .../next-release/api-change-emr-40799.json | 5 - .../api-change-inspector2-6787.json | 5 - .../next-release/api-change-lambda-47881.json | 5 - .../api-change-mailmanager-62413.json | 5 - .../api-change-neptunegraph-12418.json | 5 - .../next-release/api-change-omics-14565.json | 5 - .../api-change-quicksight-93035.json | 5 - .../api-change-sagemaker-63067.json | 5 - .../next-release/api-change-ses-30272.json | 5 - .../next-release/api-change-sns-50181.json | 5 - .../api-change-stepfunctions-95183.json | 5 - .../api-change-workspaces-47480.json | 5 - CHANGELOG.rst | 26 +++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 27 files changed, 137 insertions(+), 109 deletions(-) create mode 100644 .changes/1.36.9.json delete mode 100644 .changes/next-release/api-change-autoscaling-71496.json delete mode 100644 .changes/next-release/api-change-bcmpricingcalculator-57102.json delete mode 100644 .changes/next-release/api-change-bedrockagentruntime-41306.json delete mode 100644 .changes/next-release/api-change-ce-98876.json delete mode 100644 .changes/next-release/api-change-chatbot-81188.json delete mode 100644 .changes/next-release/api-change-codepipeline-28045.json delete mode 100644 .changes/next-release/api-change-cognitoidp-3247.json delete mode 100644 .changes/next-release/api-change-connect-96625.json delete mode 100644 .changes/next-release/api-change-elbv2-32429.json delete mode 100644 .changes/next-release/api-change-emr-40799.json delete mode 100644 .changes/next-release/api-change-inspector2-6787.json delete mode 100644 .changes/next-release/api-change-lambda-47881.json delete mode 100644 .changes/next-release/api-change-mailmanager-62413.json delete mode 100644 .changes/next-release/api-change-neptunegraph-12418.json delete mode 100644 .changes/next-release/api-change-omics-14565.json delete mode 100644 .changes/next-release/api-change-quicksight-93035.json delete mode 100644 .changes/next-release/api-change-sagemaker-63067.json delete mode 100644 .changes/next-release/api-change-ses-30272.json delete mode 100644 .changes/next-release/api-change-sns-50181.json delete mode 100644 .changes/next-release/api-change-stepfunctions-95183.json delete mode 100644 .changes/next-release/api-change-workspaces-47480.json diff --git a/.changes/1.36.9.json b/.changes/1.36.9.json new file mode 100644 index 000000000000..2053793705e5 --- /dev/null +++ b/.changes/1.36.9.json @@ -0,0 +1,107 @@ +[ + { + "category": "``autoscaling``", + "description": "Now, Amazon EC2 Auto Scaling customers can enable target tracking policies to take quicker scaling decisions, enhancing their application performance and EC2 utilization. To get started, specify target tracking to monitor a metric that is available on Amazon CloudWatch at seconds-level interval.", + "type": "api-change" + }, + { + "category": "``bcm-pricing-calculator``", + "description": "Initial release of the AWS Billing and Cost Management Pricing Calculator API.", + "type": "api-change" + }, + { + "category": "``bedrock-agent-runtime``", + "description": "InvokeInlineAgent API release to help invoke runtime agents without any dependency on preconfigured agents.", + "type": "api-change" + }, + { + "category": "``ce``", + "description": "This release adds the Impact field(contains Contribution field) to the GetAnomalies API response under RootCause", + "type": "api-change" + }, + { + "category": "``chatbot``", + "description": "Adds support for programmatic management of custom actions and aliases which can be associated with channel configurations.", + "type": "api-change" + }, + { + "category": "``codepipeline``", + "description": "AWS CodePipeline V2 type pipelines now support ECRBuildAndPublish and InspectorScan actions.", + "type": "api-change" + }, + { + "category": "``cognito-idp``", + "description": "Add support for users to sign up and sign in without passwords, using email and SMS OTPs and Passkeys. Add support for Passkeys based on WebAuthn. Add support for enhanced branding customization for hosted authentication pages with Amazon Cognito Managed Login. Add feature tiers with new pricing.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "Amazon Connect Service Feature: Add APIs for Amazon Connect Email Channel", + "type": "api-change" + }, + { + "category": "``elbv2``", + "description": "This release adds support for advertising trusted CA certificate names in associated trust stores.", + "type": "api-change" + }, + { + "category": "``emr``", + "description": "Advanced Scaling in Amazon EMR Managed Scaling", + "type": "api-change" + }, + { + "category": "``inspector2``", + "description": "Extend inspector2 service model to include ServiceQuotaExceededException.", + "type": "api-change" + }, + { + "category": "``lambda``", + "description": "Add ProvisionedPollerConfig to Lambda event-source-mapping API.", + "type": "api-change" + }, + { + "category": "``mailmanager``", + "description": "Added new \"DeliverToQBusiness\" rule action to MailManager RulesSet for ingesting email data into Amazon Q Business customer applications", + "type": "api-change" + }, + { + "category": "``neptune-graph``", + "description": "Add 4 new APIs to support new Export features, allowing Parquet and CSV formats. Add new arguments in Import APIs to support Parquet import. Add a new query \"neptune.read\" to run algorithms without loading data into database", + "type": "api-change" + }, + { + "category": "``omics``", + "description": "This release adds support for resource policy based cross account S3 access to sequence store read sets.", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "This release includes: Update APIs to support Image, Layer Map, font customization, and Plugin Visual. Add Identity center related information in ListNamsespace API. Update API for restrictedFolder support in topics and add API for SearchTopics, Describe/Update DashboardsQA Configration.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "This release adds APIs for new features for SageMaker endpoint to scale down to zero instances, native support for multi-adapter inference, and endpoint scaling improvements.", + "type": "api-change" + }, + { + "category": "``ses``", + "description": "This release adds support for starting email contacts in your Amazon Connect instance as an email receiving action.", + "type": "api-change" + }, + { + "category": "``sns``", + "description": "ArchivePolicy attribute added to Archive and Replay feature", + "type": "api-change" + }, + { + "category": "``stepfunctions``", + "description": "Add support for variables and JSONata in TestState, GetExecutionHistory, DescribeStateMachine, and DescribeStateMachineForExecution", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "While integrating WSP-DCV rebrand, a few mentions were erroneously renamed from WSP to DCV. This release reverts those mentions back to WSP.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-autoscaling-71496.json b/.changes/next-release/api-change-autoscaling-71496.json deleted file mode 100644 index e313ec51143d..000000000000 --- a/.changes/next-release/api-change-autoscaling-71496.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``autoscaling``", - "description": "Now, Amazon EC2 Auto Scaling customers can enable target tracking policies to take quicker scaling decisions, enhancing their application performance and EC2 utilization. To get started, specify target tracking to monitor a metric that is available on Amazon CloudWatch at seconds-level interval." -} diff --git a/.changes/next-release/api-change-bcmpricingcalculator-57102.json b/.changes/next-release/api-change-bcmpricingcalculator-57102.json deleted file mode 100644 index cae6dd6b5363..000000000000 --- a/.changes/next-release/api-change-bcmpricingcalculator-57102.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``bcm-pricing-calculator``", - "description": "Initial release of the AWS Billing and Cost Management Pricing Calculator API." -} diff --git a/.changes/next-release/api-change-bedrockagentruntime-41306.json b/.changes/next-release/api-change-bedrockagentruntime-41306.json deleted file mode 100644 index 592bff0ed421..000000000000 --- a/.changes/next-release/api-change-bedrockagentruntime-41306.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``bedrock-agent-runtime``", - "description": "InvokeInlineAgent API release to help invoke runtime agents without any dependency on preconfigured agents." -} diff --git a/.changes/next-release/api-change-ce-98876.json b/.changes/next-release/api-change-ce-98876.json deleted file mode 100644 index fa02d3f30532..000000000000 --- a/.changes/next-release/api-change-ce-98876.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ce``", - "description": "This release adds the Impact field(contains Contribution field) to the GetAnomalies API response under RootCause" -} diff --git a/.changes/next-release/api-change-chatbot-81188.json b/.changes/next-release/api-change-chatbot-81188.json deleted file mode 100644 index b41908ea181a..000000000000 --- a/.changes/next-release/api-change-chatbot-81188.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``chatbot``", - "description": "Adds support for programmatic management of custom actions and aliases which can be associated with channel configurations." -} diff --git a/.changes/next-release/api-change-codepipeline-28045.json b/.changes/next-release/api-change-codepipeline-28045.json deleted file mode 100644 index 5b8c529661ce..000000000000 --- a/.changes/next-release/api-change-codepipeline-28045.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``codepipeline``", - "description": "AWS CodePipeline V2 type pipelines now support ECRBuildAndPublish and InspectorScan actions." -} diff --git a/.changes/next-release/api-change-cognitoidp-3247.json b/.changes/next-release/api-change-cognitoidp-3247.json deleted file mode 100644 index cea52e86756f..000000000000 --- a/.changes/next-release/api-change-cognitoidp-3247.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cognito-idp``", - "description": "Add support for users to sign up and sign in without passwords, using email and SMS OTPs and Passkeys. Add support for Passkeys based on WebAuthn. Add support for enhanced branding customization for hosted authentication pages with Amazon Cognito Managed Login. Add feature tiers with new pricing." -} diff --git a/.changes/next-release/api-change-connect-96625.json b/.changes/next-release/api-change-connect-96625.json deleted file mode 100644 index 09f5588810d2..000000000000 --- a/.changes/next-release/api-change-connect-96625.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect``", - "description": "Amazon Connect Service Feature: Add APIs for Amazon Connect Email Channel" -} diff --git a/.changes/next-release/api-change-elbv2-32429.json b/.changes/next-release/api-change-elbv2-32429.json deleted file mode 100644 index 01fc73160e8b..000000000000 --- a/.changes/next-release/api-change-elbv2-32429.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``elbv2``", - "description": "This release adds support for advertising trusted CA certificate names in associated trust stores." -} diff --git a/.changes/next-release/api-change-emr-40799.json b/.changes/next-release/api-change-emr-40799.json deleted file mode 100644 index 358d0d91aedb..000000000000 --- a/.changes/next-release/api-change-emr-40799.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``emr``", - "description": "Advanced Scaling in Amazon EMR Managed Scaling" -} diff --git a/.changes/next-release/api-change-inspector2-6787.json b/.changes/next-release/api-change-inspector2-6787.json deleted file mode 100644 index 079b38e15c95..000000000000 --- a/.changes/next-release/api-change-inspector2-6787.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``inspector2``", - "description": "Extend inspector2 service model to include ServiceQuotaExceededException." -} diff --git a/.changes/next-release/api-change-lambda-47881.json b/.changes/next-release/api-change-lambda-47881.json deleted file mode 100644 index f3c4f8028cd5..000000000000 --- a/.changes/next-release/api-change-lambda-47881.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``lambda``", - "description": "Add ProvisionedPollerConfig to Lambda event-source-mapping API." -} diff --git a/.changes/next-release/api-change-mailmanager-62413.json b/.changes/next-release/api-change-mailmanager-62413.json deleted file mode 100644 index 3b20711fdef3..000000000000 --- a/.changes/next-release/api-change-mailmanager-62413.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``mailmanager``", - "description": "Added new \"DeliverToQBusiness\" rule action to MailManager RulesSet for ingesting email data into Amazon Q Business customer applications" -} diff --git a/.changes/next-release/api-change-neptunegraph-12418.json b/.changes/next-release/api-change-neptunegraph-12418.json deleted file mode 100644 index 3b8b603ed799..000000000000 --- a/.changes/next-release/api-change-neptunegraph-12418.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``neptune-graph``", - "description": "Add 4 new APIs to support new Export features, allowing Parquet and CSV formats. Add new arguments in Import APIs to support Parquet import. Add a new query \"neptune.read\" to run algorithms without loading data into database" -} diff --git a/.changes/next-release/api-change-omics-14565.json b/.changes/next-release/api-change-omics-14565.json deleted file mode 100644 index 1bf3d5d62e81..000000000000 --- a/.changes/next-release/api-change-omics-14565.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``omics``", - "description": "This release adds support for resource policy based cross account S3 access to sequence store read sets." -} diff --git a/.changes/next-release/api-change-quicksight-93035.json b/.changes/next-release/api-change-quicksight-93035.json deleted file mode 100644 index bfd6c0490708..000000000000 --- a/.changes/next-release/api-change-quicksight-93035.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``quicksight``", - "description": "This release includes: Update APIs to support Image, Layer Map, font customization, and Plugin Visual. Add Identity center related information in ListNamsespace API. Update API for restrictedFolder support in topics and add API for SearchTopics, Describe/Update DashboardsQA Configration." -} diff --git a/.changes/next-release/api-change-sagemaker-63067.json b/.changes/next-release/api-change-sagemaker-63067.json deleted file mode 100644 index 858131b6654e..000000000000 --- a/.changes/next-release/api-change-sagemaker-63067.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "This release adds APIs for new features for SageMaker endpoint to scale down to zero instances, native support for multi-adapter inference, and endpoint scaling improvements." -} diff --git a/.changes/next-release/api-change-ses-30272.json b/.changes/next-release/api-change-ses-30272.json deleted file mode 100644 index dc955a9cfee2..000000000000 --- a/.changes/next-release/api-change-ses-30272.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ses``", - "description": "This release adds support for starting email contacts in your Amazon Connect instance as an email receiving action." -} diff --git a/.changes/next-release/api-change-sns-50181.json b/.changes/next-release/api-change-sns-50181.json deleted file mode 100644 index 05b7a2ed6ded..000000000000 --- a/.changes/next-release/api-change-sns-50181.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sns``", - "description": "ArchivePolicy attribute added to Archive and Replay feature" -} diff --git a/.changes/next-release/api-change-stepfunctions-95183.json b/.changes/next-release/api-change-stepfunctions-95183.json deleted file mode 100644 index 5f5b01327dc4..000000000000 --- a/.changes/next-release/api-change-stepfunctions-95183.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``stepfunctions``", - "description": "Add support for variables and JSONata in TestState, GetExecutionHistory, DescribeStateMachine, and DescribeStateMachineForExecution" -} diff --git a/.changes/next-release/api-change-workspaces-47480.json b/.changes/next-release/api-change-workspaces-47480.json deleted file mode 100644 index af778581797c..000000000000 --- a/.changes/next-release/api-change-workspaces-47480.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``workspaces``", - "description": "While integrating WSP-DCV rebrand, a few mentions were erroneously renamed from WSP to DCV. This release reverts those mentions back to WSP." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 13b1c90a8e81..a6ef0dbf2902 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,32 @@ CHANGELOG ========= +1.36.9 +====== + +* api-change:``autoscaling``: Now, Amazon EC2 Auto Scaling customers can enable target tracking policies to take quicker scaling decisions, enhancing their application performance and EC2 utilization. To get started, specify target tracking to monitor a metric that is available on Amazon CloudWatch at seconds-level interval. +* api-change:``bcm-pricing-calculator``: Initial release of the AWS Billing and Cost Management Pricing Calculator API. +* api-change:``bedrock-agent-runtime``: InvokeInlineAgent API release to help invoke runtime agents without any dependency on preconfigured agents. +* api-change:``ce``: This release adds the Impact field(contains Contribution field) to the GetAnomalies API response under RootCause +* api-change:``chatbot``: Adds support for programmatic management of custom actions and aliases which can be associated with channel configurations. +* api-change:``codepipeline``: AWS CodePipeline V2 type pipelines now support ECRBuildAndPublish and InspectorScan actions. +* api-change:``cognito-idp``: Add support for users to sign up and sign in without passwords, using email and SMS OTPs and Passkeys. Add support for Passkeys based on WebAuthn. Add support for enhanced branding customization for hosted authentication pages with Amazon Cognito Managed Login. Add feature tiers with new pricing. +* api-change:``connect``: Amazon Connect Service Feature: Add APIs for Amazon Connect Email Channel +* api-change:``elbv2``: This release adds support for advertising trusted CA certificate names in associated trust stores. +* api-change:``emr``: Advanced Scaling in Amazon EMR Managed Scaling +* api-change:``inspector2``: Extend inspector2 service model to include ServiceQuotaExceededException. +* api-change:``lambda``: Add ProvisionedPollerConfig to Lambda event-source-mapping API. +* api-change:``mailmanager``: Added new "DeliverToQBusiness" rule action to MailManager RulesSet for ingesting email data into Amazon Q Business customer applications +* api-change:``neptune-graph``: Add 4 new APIs to support new Export features, allowing Parquet and CSV formats. Add new arguments in Import APIs to support Parquet import. Add a new query "neptune.read" to run algorithms without loading data into database +* api-change:``omics``: This release adds support for resource policy based cross account S3 access to sequence store read sets. +* api-change:``quicksight``: This release includes: Update APIs to support Image, Layer Map, font customization, and Plugin Visual. Add Identity center related information in ListNamsespace API. Update API for restrictedFolder support in topics and add API for SearchTopics, Describe/Update DashboardsQA Configration. +* api-change:``sagemaker``: This release adds APIs for new features for SageMaker endpoint to scale down to zero instances, native support for multi-adapter inference, and endpoint scaling improvements. +* api-change:``ses``: This release adds support for starting email contacts in your Amazon Connect instance as an email receiving action. +* api-change:``sns``: ArchivePolicy attribute added to Archive and Replay feature +* api-change:``stepfunctions``: Add support for variables and JSONata in TestState, GetExecutionHistory, DescribeStateMachine, and DescribeStateMachineForExecution +* api-change:``workspaces``: While integrating WSP-DCV rebrand, a few mentions were erroneously renamed from WSP to DCV. This release reverts those mentions back to WSP. + + 1.36.8 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index 0e8d865923fa..88730b52ee6d 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -18,7 +18,7 @@ import os -__version__ = '1.36.8' +__version__ = '1.36.9' # # 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 969b2bb4d790..f59a254fe31c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.36' # The full version, including alpha/beta/rc tags. -release = '1.36.8' +release = '1.36.9' # 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 8a52347b0d00..5d64449a5d74 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.35.67 + botocore==1.35.68 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 378d3329dacc..3e7c55c7519a 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.35.67', + 'botocore==1.35.68', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',