Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aws/aws-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.38.17
Choose a base ref
...
head repository: aws/aws-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.38.18
Choose a head ref
  • 4 commits
  • 6 files changed
  • 1 contributor

Commits on Mar 20, 2025

  1. Merge branch 'release-1.38.17' into develop

    * release-1.38.17:
      Bumping version to 1.38.17
      Update changelog based on model updates
    aws-sdk-python-automation committed Mar 20, 2025
    Copy the full SHA
    29b76db View commit details

Commits on Mar 21, 2025

  1. Copy the full SHA
    6247d4c View commit details
  2. Copy the full SHA
    0f082ca View commit details
  3. Merge branch 'release-1.38.18'

    * release-1.38.18:
      Bumping version to 1.38.18
      Update changelog based on model updates
    aws-sdk-python-automation committed Mar 21, 2025
    Copy the full SHA
    f587b1f View commit details
Showing with 35 additions and 4 deletions.
  1. +22 −0 .changes/1.38.18.json
  2. +9 −0 CHANGELOG.rst
  3. +1 −1 awscli/__init__.py
  4. +1 −1 doc/source/conf.py
  5. +1 −1 setup.cfg
  6. +1 −1 setup.py
22 changes: 22 additions & 0 deletions .changes/1.38.18.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"category": "``bedrock``",
"description": "A CustomModelUnit(CMU) is an abstract view of the hardware utilization that Bedrock needs to host a a single copy of your custom imported model. Bedrock determines the number of CMUs that a model copy needs when you import the custom model. You can use CMUs to estimate the cost of Inference's.",
"type": "api-change"
},
{
"category": "``datazone``",
"description": "Add support for overriding selection of default AWS IAM Identity Center instance as part of Amazon DataZone domain APIs.",
"type": "api-change"
},
{
"category": "``route53-recovery-control-config``",
"description": "Adds dual-stack (IPv4 and IPv6) endpoint support for route53-recovery-control-config operations, opt-in dual-stack addresses for cluster endpoints, and UpdateCluster API to update the network-type of clusters between IPv4 and dual-stack.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "This release does the following: 1.) Adds DurationHours as a required field to the SearchTrainingPlanOfferings action in the SageMaker AI API; 2.) Adds support for G6e instance types for SageMaker AI inference optimization jobs.",
"type": "api-change"
}
]
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -2,6 +2,15 @@
CHANGELOG
=========

1.38.18
=======

* api-change:``bedrock``: A CustomModelUnit(CMU) is an abstract view of the hardware utilization that Bedrock needs to host a a single copy of your custom imported model. Bedrock determines the number of CMUs that a model copy needs when you import the custom model. You can use CMUs to estimate the cost of Inference's.
* api-change:``datazone``: Add support for overriding selection of default AWS IAM Identity Center instance as part of Amazon DataZone domain APIs.
* api-change:``route53-recovery-control-config``: Adds dual-stack (IPv4 and IPv6) endpoint support for route53-recovery-control-config operations, opt-in dual-stack addresses for cluster endpoints, and UpdateCluster API to update the network-type of clusters between IPv4 and dual-stack.
* api-change:``sagemaker``: This release does the following: 1.) Adds DurationHours as a required field to the SearchTrainingPlanOfferings action in the SageMaker AI API; 2.) Adds support for G6e instance types for SageMaker AI inference optimization jobs.


1.38.17
=======

2 changes: 1 addition & 1 deletion awscli/__init__.py
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@

import os

__version__ = '1.38.17'
__version__ = '1.38.18'

#
# Get our data path to be added to botocore's search path
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.38.'
# The full version, including alpha/beta/rc tags.
release = '1.38.17'
release = '1.38.18'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore==1.37.17
botocore==1.37.18
docutils>=0.10,<0.17
s3transfer>=0.11.0,<0.12.0
PyYAML>=3.10,<6.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ def find_version(*file_paths):


install_requires = [
'botocore==1.37.17',
'botocore==1.37.18',
'docutils>=0.10,<0.17',
's3transfer>=0.11.0,<0.12.0',
'PyYAML>=3.10,<6.1',