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: boto/boto3
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.37.1
Choose a base ref
...
head repository: boto/boto3
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.37.2
Choose a head ref
  • 4 commits
  • 5 files changed
  • 1 contributor

Commits on Feb 25, 2025

  1. Merge branch 'release-1.37.1' into develop

    * release-1.37.1:
      Bumping version to 1.37.1
      Add changelog entries from botocore
    aws-sdk-python-automation committed Feb 25, 2025
    Copy the full SHA
    0e7574d View commit details

Commits on Feb 26, 2025

  1. Copy the full SHA
    235677f View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    d10ead8 View commit details
  3. Merge branch 'release-1.37.2'

    * release-1.37.2:
      Bumping version to 1.37.2
      Add changelog entries from botocore
    aws-sdk-python-automation committed Feb 26, 2025
    Copy the full SHA
    474cfa0 View commit details
Showing with 64 additions and 3 deletions.
  1. +47 −0 .changes/1.37.2.json
  2. +14 −0 CHANGELOG.rst
  3. +1 −1 boto3/__init__.py
  4. +1 −1 setup.cfg
  5. +1 −1 setup.py
47 changes: 47 additions & 0 deletions .changes/1.37.2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"category": "``application-signals``",
"description": "[``botocore``] This release adds API support for reading Service Level Objectives and Services from monitoring accounts, from SLO and Service-scoped operations, including ListServices and ListServiceLevelObjectives.",
"type": "api-change"
},
{
"category": "``batch``",
"description": "[``botocore``] AWS Batch: Resource Aware Scheduling feature support",
"type": "api-change"
},
{
"category": "``chime``",
"description": "[``botocore``] Removes the Amazon Chime SDK APIs from the \"chime\" namespace. Amazon Chime SDK APIs continue to be available in the AWS SDK via the dedicated Amazon Chime SDK namespaces: chime-sdk-identity, chime-sdk-mediapipelines, chime-sdk-meetings, chime-sdk-messaging, and chime-sdk-voice.",
"type": "api-change"
},
{
"category": "``cloudfront``",
"description": "[``botocore``] Documentation update for VPC origin config.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "[``botocore``] Amazon EC2 Fleet customers can now override the Block Device Mapping specified in the Launch Template when creating a new Fleet request, saving the effort of creating and associating new Launch Templates to customize the Block Device Mapping.",
"type": "api-change"
},
{
"category": "``iotfleetwise``",
"description": "[``botocore``] This release adds an optional listResponseScope request parameter in certain list API requests to limit the response to metadata only.",
"type": "api-change"
},
{
"category": "``oam``",
"description": "[``botocore``] This release adds support for sharing AWS::ApplicationSignals::Service and AWS::ApplicationSignals::ServiceLevelObjective resources.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "[``botocore``] AWS SageMaker InferenceComponents now support rolling update deployments for Inference Components.",
"type": "api-change"
},
{
"category": "``Protocol``",
"description": "[``botocore``] Adds support for the smithy-rpc-v2-cbor protocol. If a service supports smithy-rpc-v2-cbor, this protocol will automatically be used. For more information, see https://smithy.io/2.0/additional-specs/protocols/smithy-rpc-v2.html",
"type": "enhancement"
}
]
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -2,6 +2,20 @@
CHANGELOG
=========

1.37.2
======

* api-change:``application-signals``: [``botocore``] This release adds API support for reading Service Level Objectives and Services from monitoring accounts, from SLO and Service-scoped operations, including ListServices and ListServiceLevelObjectives.
* api-change:``batch``: [``botocore``] AWS Batch: Resource Aware Scheduling feature support
* api-change:``chime``: [``botocore``] Removes the Amazon Chime SDK APIs from the "chime" namespace. Amazon Chime SDK APIs continue to be available in the AWS SDK via the dedicated Amazon Chime SDK namespaces: chime-sdk-identity, chime-sdk-mediapipelines, chime-sdk-meetings, chime-sdk-messaging, and chime-sdk-voice.
* api-change:``cloudfront``: [``botocore``] Documentation update for VPC origin config.
* api-change:``ec2``: [``botocore``] Amazon EC2 Fleet customers can now override the Block Device Mapping specified in the Launch Template when creating a new Fleet request, saving the effort of creating and associating new Launch Templates to customize the Block Device Mapping.
* api-change:``iotfleetwise``: [``botocore``] This release adds an optional listResponseScope request parameter in certain list API requests to limit the response to metadata only.
* api-change:``oam``: [``botocore``] This release adds support for sharing AWS::ApplicationSignals::Service and AWS::ApplicationSignals::ServiceLevelObjective resources.
* api-change:``sagemaker``: [``botocore``] AWS SageMaker InferenceComponents now support rolling update deployments for Inference Components.
* enhancement:``Protocol``: [``botocore``] Adds support for the smithy-rpc-v2-cbor protocol. If a service supports smithy-rpc-v2-cbor, this protocol will automatically be used. For more information, see https://smithy.io/2.0/additional-specs/protocols/smithy-rpc-v2.html


1.37.1
======

2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
from boto3.session import Session

__author__ = 'Amazon Web Services'
__version__ = '1.37.1'
__version__ = '1.37.2'


# The default Boto3 session; autoloaded when needed.
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.1,<1.38.0
botocore>=1.37.2,<1.38.0
jmespath>=0.7.1,<2.0.0
s3transfer>=0.11.0,<0.12.0

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@


requires = [
'botocore>=1.37.1,<1.38.0',
'botocore>=1.37.2,<1.38.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.11.0,<0.12.0',
]