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.6
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.7
Choose a head ref
  • 5 commits
  • 7 files changed
  • 3 contributors

Commits on Mar 4, 2025

  1. Merge branch 'release-1.37.6' into develop

    * release-1.37.6:
      Bumping version to 1.37.6
      Add changelog entries from botocore
    aws-sdk-python-automation committed Mar 4, 2025
    Copy the full SHA
    041070b View commit details
  2. Add MRAP section to developer guide (#4460)

    * Add MRAP section
    This PR adds a section that briefly says what MRAP is and points to the
    content in the S3 developer guide, which includes Python examples.
    
    * Update docs/source/guide/s3-example-mrap.rst
    
    You're right, this should just be 2025.
    
    Co-authored-by: Nate Prewitt <nate.prewitt@gmail.com>
    
    ---------
    
    Co-authored-by: Nate Prewitt <nate.prewitt@gmail.com>
    shepazon and nateprewitt authored Mar 4, 2025
    Copy the full SHA
    6aadaee View commit details

Commits on Mar 5, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    46c15fc View commit details
  2. Copy the full SHA
    ccc8e2b View commit details
  3. Merge branch 'release-1.37.7'

    * release-1.37.7:
      Bumping version to 1.37.7
      Add changelog entries from botocore
      Add MRAP section to developer guide (#4460)
    aws-sdk-python-automation committed Mar 5, 2025
    Copy the full SHA
    2f57a02 View commit details
Showing with 68 additions and 3 deletions.
  1. +27 −0 .changes/1.37.7.json
  2. +10 −0 CHANGELOG.rst
  3. +1 −1 boto3/__init__.py
  4. +27 −0 docs/source/guide/s3-example-mrap.rst
  5. +1 −0 docs/source/guide/s3-examples.rst
  6. +1 −1 setup.cfg
  7. +1 −1 setup.py
27 changes: 27 additions & 0 deletions .changes/1.37.7.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``bedrock-runtime``",
"description": "[``botocore``] This releases adds support for Custom Prompt Router ARN",
"type": "api-change"
},
{
"category": "``datasync``",
"description": "[``botocore``] AWS DataSync now supports modifying ServerHostname while updating locations SMB, NFS, and ObjectStorage.",
"type": "api-change"
},
{
"category": "``gameliftstreams``",
"description": "[``botocore``] New Service: Amazon GameLift Streams delivers low-latency game streaming from AWS global infrastructure to virtually any device with a browser at up to 1080p resolution and 60 fps.",
"type": "api-change"
},
{
"category": "``iotfleetwise``",
"description": "[``botocore``] This release adds floating point support for CAN/OBD signals and adds support for signed OBD signals.",
"type": "api-change"
},
{
"category": "``workspaces``",
"description": "[``botocore``] Added DeviceTypeWorkSpacesThinClient type to allow users to access their WorkSpaces through a WorkSpaces Thin Client.",
"type": "api-change"
}
]
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -2,6 +2,16 @@
CHANGELOG
=========

1.37.7
======

* api-change:``bedrock-runtime``: [``botocore``] This releases adds support for Custom Prompt Router ARN
* api-change:``datasync``: [``botocore``] AWS DataSync now supports modifying ServerHostname while updating locations SMB, NFS, and ObjectStorage.
* api-change:``gameliftstreams``: [``botocore``] New Service: Amazon GameLift Streams delivers low-latency game streaming from AWS global infrastructure to virtually any device with a browser at up to 1080p resolution and 60 fps.
* api-change:``iotfleetwise``: [``botocore``] This release adds floating point support for CAN/OBD signals and adds support for signed OBD signals.
* api-change:``workspaces``: [``botocore``] Added DeviceTypeWorkSpacesThinClient type to allow users to access their WorkSpaces through a WorkSpaces Thin Client.


1.37.6
======

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.6'
__version__ = '1.37.7'


# The default Boto3 session; autoloaded when needed.
27 changes: 27 additions & 0 deletions docs/source/guide/s3-example-mrap.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.. Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0
International License (the "License"). You may not use this file except in compliance with the
License. A copy of the License is located at http://creativecommons.org/licenses/by-nc-sa/4.0/.
This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions and
limitations under the License.
##########################
Multi-Region Access Points
##########################

Amazon S3 Multi-Region Access Points (MRAPs) provide global endpoints that
applications can use to fulfill requests from Amazon S3 buckets located in
multiple AWS Regions. You can use them to build multi-Region applications
with the same architecture used by single-Region applications, then run those
applications anywhere in the world.

To learn more about using Multi-Region Access Points in your Boto3
application, see `Using Multi-Region Access Points with supported API
operations <https://docs.aws.amazon.com/AmazonS3/latest/userguide/MrapOperations.html>`_,
which offers a thorough explanation as well as examples for the CLI and for
the SDK for Python.

1 change: 1 addition & 0 deletions docs/source/guide/s3-examples.rst
Original file line number Diff line number Diff line change
@@ -38,4 +38,5 @@ services.
s3-example-access-permissions
s3-example-static-web-host
s3-example-configuring-buckets
s3-example-mrap
s3-example-privatelink
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.6,<1.38.0
botocore>=1.37.7,<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.6,<1.38.0',
'botocore>=1.37.7,<1.38.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.11.0,<0.12.0',
]