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

Commits on Feb 11, 2025

  1. Merge branch 'release-1.36.18' into develop

    * release-1.36.18:
      Bumping version to 1.36.18
      Add changelog entries from botocore
    aws-sdk-python-automation committed Feb 11, 2025
    Copy the full SHA
    8d1696b View commit details

Commits on Feb 12, 2025

  1. Copy the full SHA
    565b2a3 View commit details
  2. Verified

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

    * release-1.36.19:
      Bumping version to 1.36.19
      Add changelog entries from botocore
    aws-sdk-python-automation committed Feb 12, 2025
    Copy the full SHA
    3c124c2 View commit details
Showing with 64 additions and 3 deletions.
  1. +47 −0 .changes/1.36.19.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.36.19.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"category": "``b2bi``",
"description": "[``botocore``] Allow spaces in the following fields in the Partnership resource: ISA 06 - Sender ID, ISA 08 - Receiver ID, GS 02 - Application Sender Code, GS 03 - Application Receiver Code",
"type": "api-change"
},
{
"category": "``bedrock-agent``",
"description": "[``botocore``] This releases adds the additionalModelRequestFields field to the CreateAgent and UpdateAgent operations. Use additionalModelRequestFields to specify additional inference parameters for a model beyond the base inference parameters.",
"type": "api-change"
},
{
"category": "``bedrock-agent-runtime``",
"description": "[``botocore``] This releases adds the additionalModelRequestFields field to the InvokeInlineAgent operation. Use additionalModelRequestFields to specify additional inference parameters for a model beyond the base inference parameters.",
"type": "api-change"
},
{
"category": "``codebuild``",
"description": "[``botocore``] Add note for the RUNNER_BUILDKITE_BUILD buildType.",
"type": "api-change"
},
{
"category": "``fsx``",
"description": "[``botocore``] Support for in-place Lustre version upgrades",
"type": "api-change"
},
{
"category": "``medialive``",
"description": "[``botocore``] Adds a RequestId parameter to all MediaLive Workflow Monitor create operations. The RequestId parameter allows idempotent operations.",
"type": "api-change"
},
{
"category": "``opensearchserverless``",
"description": "[``botocore``] Custom OpenSearchServerless Entity ID for SAML Config.",
"type": "api-change"
},
{
"category": "``polly``",
"description": "[``botocore``] Added support for the new voice - Jasmine (en-SG). Jasmine is available as a Neural voice only.",
"type": "api-change"
},
{
"category": "Protocols",
"description": "[``botocore``] Added support for multiple protocols within a service based on performance priority.",
"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.36.19
=======

* api-change:``b2bi``: [``botocore``] Allow spaces in the following fields in the Partnership resource: ISA 06 - Sender ID, ISA 08 - Receiver ID, GS 02 - Application Sender Code, GS 03 - Application Receiver Code
* api-change:``bedrock-agent``: [``botocore``] This releases adds the additionalModelRequestFields field to the CreateAgent and UpdateAgent operations. Use additionalModelRequestFields to specify additional inference parameters for a model beyond the base inference parameters.
* api-change:``bedrock-agent-runtime``: [``botocore``] This releases adds the additionalModelRequestFields field to the InvokeInlineAgent operation. Use additionalModelRequestFields to specify additional inference parameters for a model beyond the base inference parameters.
* api-change:``codebuild``: [``botocore``] Add note for the RUNNER_BUILDKITE_BUILD buildType.
* api-change:``fsx``: [``botocore``] Support for in-place Lustre version upgrades
* api-change:``medialive``: [``botocore``] Adds a RequestId parameter to all MediaLive Workflow Monitor create operations. The RequestId parameter allows idempotent operations.
* api-change:``opensearchserverless``: [``botocore``] Custom OpenSearchServerless Entity ID for SAML Config.
* api-change:``polly``: [``botocore``] Added support for the new voice - Jasmine (en-SG). Jasmine is available as a Neural voice only.
* enhancement:Protocols: [``botocore``] Added support for multiple protocols within a service based on performance priority.


1.36.18
=======

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.18'
__version__ = '1.36.19'


# 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.36.18,<1.37.0
botocore>=1.36.19,<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.18,<1.37.0',
'botocore>=1.36.19,<1.37.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.11.0,<0.12.0',
]