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.3
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.4
Choose a head ref
  • 4 commits
  • 5 files changed
  • 1 contributor

Commits on Feb 27, 2025

  1. Merge branch 'release-1.37.3' into develop

    * release-1.37.3:
      Bumping version to 1.37.3
      Add changelog entries from botocore
    aws-sdk-python-automation committed Feb 27, 2025
    Copy the full SHA
    63a9bb2 View commit details

Commits on Feb 28, 2025

  1. Copy the full SHA
    de332a9 View commit details
  2. Verified

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

    * release-1.37.4:
      Bumping version to 1.37.4
      Add changelog entries from botocore
    aws-sdk-python-automation committed Feb 28, 2025
    Copy the full SHA
    0c61b96 View commit details
Showing with 64 additions and 3 deletions.
  1. +47 −0 .changes/1.37.4.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.4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"category": "``bedrock-agent``",
"description": "[``botocore``] This release lets Amazon Bedrock Flows support newer models by increasing the maximum length of output in a prompt configuration. This release also increases the maximum number of prompt variables to 20 and the maximum number of node inputs to 20.",
"type": "api-change"
},
{
"category": "``bedrock-data-automation``",
"description": "[``botocore``] Renamed and added new StandardConfiguration enums. Added support to update EncryptionConfiguration in UpdateBlueprint and UpdateDataAutomation APIs. Changed HttpStatus code for DeleteBlueprint and DeleteDataAutomationProject APIs to 200 from 204. Added APIs to support tagging.",
"type": "api-change"
},
{
"category": "``bedrock-data-automation-runtime``",
"description": "[``botocore``] Added a mandatory parameter DataAutomationProfileArn to support for cross region inference for InvokeDataAutomationAsync API. Renamed DataAutomationArn to DataAutomationProjectArn. Added APIs to support tagging.",
"type": "api-change"
},
{
"category": "``dms``",
"description": "[``botocore``] Add skipped status to the Result Statistics of an Assessment Run",
"type": "api-change"
},
{
"category": "``eks``",
"description": "[``botocore``] Adding licenses to EKS Anywhere Subscription operations response.",
"type": "api-change"
},
{
"category": "``mediaconvert``",
"description": "[``botocore``] The AWS MediaConvert Probe API allows you to analyze media files and retrieve detailed metadata about their content, format, and structure.",
"type": "api-change"
},
{
"category": "``pricing``",
"description": "[``botocore``] Update GetProducts and DescribeServices API request input validations.",
"type": "api-change"
},
{
"category": "``ssm``",
"description": "[``botocore``] Systems Manager doc-only updates for Feb. 2025.",
"type": "api-change"
},
{
"category": "useragent",
"description": "[``botocore``] Update user agent string to include client feature use.",
"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.4
======

* api-change:``bedrock-agent``: [``botocore``] This release lets Amazon Bedrock Flows support newer models by increasing the maximum length of output in a prompt configuration. This release also increases the maximum number of prompt variables to 20 and the maximum number of node inputs to 20.
* api-change:``bedrock-data-automation``: [``botocore``] Renamed and added new StandardConfiguration enums. Added support to update EncryptionConfiguration in UpdateBlueprint and UpdateDataAutomation APIs. Changed HttpStatus code for DeleteBlueprint and DeleteDataAutomationProject APIs to 200 from 204. Added APIs to support tagging.
* api-change:``bedrock-data-automation-runtime``: [``botocore``] Added a mandatory parameter DataAutomationProfileArn to support for cross region inference for InvokeDataAutomationAsync API. Renamed DataAutomationArn to DataAutomationProjectArn. Added APIs to support tagging.
* api-change:``dms``: [``botocore``] Add skipped status to the Result Statistics of an Assessment Run
* api-change:``eks``: [``botocore``] Adding licenses to EKS Anywhere Subscription operations response.
* api-change:``mediaconvert``: [``botocore``] The AWS MediaConvert Probe API allows you to analyze media files and retrieve detailed metadata about their content, format, and structure.
* api-change:``pricing``: [``botocore``] Update GetProducts and DescribeServices API request input validations.
* api-change:``ssm``: [``botocore``] Systems Manager doc-only updates for Feb. 2025.
* enhancement:useragent: [``botocore``] Update user agent string to include client feature use.


1.37.3
======

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.3'
__version__ = '1.37.4'


# 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.3,<1.38.0
botocore>=1.37.4,<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.3,<1.38.0',
'botocore>=1.37.4,<1.38.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.11.0,<0.12.0',
]