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

Commits on Jan 30, 2025

  1. Update configuration.rst to include the general use_dualstack_endpoin…

    …t config option
    RyanFitzSimmonsAK authored Jan 30, 2025
    Copy the full SHA
    148c9dd View commit details

Commits on Feb 6, 2025

  1. Merge branch 'release-1.36.15' into develop

    * release-1.36.15:
      Bumping version to 1.36.15
      Add changelog entries from botocore
    aws-sdk-python-automation committed Feb 6, 2025
    Copy the full SHA
    2b18684 View commit details

Commits on Feb 7, 2025

  1. Merge pull request #4417 from RyanFitzSimmonsAK/develop

    Update configuration.rst to include the general use_dualstack_endpoint config option
    nateprewitt authored Feb 7, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    cc56a2a View commit details
  2. Copy the full SHA
    dab3dfb View commit details
  3. Copy the full SHA
    df382df View commit details
  4. Merge branch 'release-1.36.16'

    * release-1.36.16:
      Bumping version to 1.36.16
      Add changelog entries from botocore
      Update configuration.rst to include the general use_dualstack_endpoint config option
    aws-sdk-python-automation committed Feb 7, 2025
    Copy the full SHA
    7fa6ec7 View commit details
Showing with 43 additions and 3 deletions.
  1. +27 −0 .changes/1.36.16.json
  2. +10 −0 CHANGELOG.rst
  3. +1 −1 boto3/__init__.py
  4. +3 −0 docs/source/guide/configuration.rst
  5. +1 −1 setup.cfg
  6. +1 −1 setup.py
27 changes: 27 additions & 0 deletions .changes/1.36.16.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``ecr``",
"description": "[``botocore``] Adds support to handle the new basic scanning daily quota.",
"type": "api-change"
},
{
"category": "``eks``",
"description": "[``botocore``] Introduce versionStatus field to take place of status field in EKS DescribeClusterVersions API",
"type": "api-change"
},
{
"category": "``mediaconvert``",
"description": "[``botocore``] This release adds support for Animated GIF output, forced chroma sample positioning metadata, and Extensible Wave Container format",
"type": "api-change"
},
{
"category": "``pi``",
"description": "[``botocore``] Adds documentation for dimension groups and dimensions to analyze locks for Database Insights.",
"type": "api-change"
},
{
"category": "``transcribe``",
"description": "[``botocore``] This release adds support for the Clinical Note Template Customization feature for the AWS HealthScribe APIs within Amazon Transcribe.",
"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.36.16
=======

* api-change:``ecr``: [``botocore``] Adds support to handle the new basic scanning daily quota.
* api-change:``eks``: [``botocore``] Introduce versionStatus field to take place of status field in EKS DescribeClusterVersions API
* api-change:``mediaconvert``: [``botocore``] This release adds support for Animated GIF output, forced chroma sample positioning metadata, and Extensible Wave Container format
* api-change:``pi``: [``botocore``] Adds documentation for dimension groups and dimensions to analyze locks for Database Insights.
* api-change:``transcribe``: [``botocore``] This release adds support for the Clinical Note Template Customization feature for the AWS HealthScribe APIs within Amazon Transcribe.


1.36.15
=======

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.36.15'
__version__ = '1.36.16'


# The default Boto3 session; autoloaded when needed.
3 changes: 3 additions & 0 deletions docs/source/guide/configuration.rst
Original file line number Diff line number Diff line change
@@ -510,6 +510,9 @@ in the ``~/.aws/config`` file.
on response payloads of operations unless the checksum algorithm is
supported and the ``requestValidationModeMember`` member is set to ``ENABLED``.

``use_dualstack_endpoint``
When ``true``, dualstack endpoint resolution is enabled. Valid values are ``true`` or ``false``. Default : ``false``.

.. _IAM Roles for Amazon EC2: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html
.. _Using IAM Roles: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html
.. _Sourcing Credentials with an External Process: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sourcing-external.html
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.36.15,<1.37.0
botocore>=1.36.16,<1.37.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.36.15,<1.37.0',
'botocore>=1.36.16,<1.37.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.11.0,<0.12.0',
]