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

Commits on Mar 11, 2024

  1. Merge branch 'release-1.34.60' into develop

    * release-1.34.60:
      Bumping version to 1.34.60
      Update to latest models
    aws-sdk-python-automation committed Mar 11, 2024
    Copy the full SHA
    7e24ee2 View commit details

Commits on Mar 12, 2024

  1. Copy the full SHA
    c737ccd View commit details
  2. Copy the full SHA
    1cc973e View commit details
  3. Merge branch 'release-1.34.61'

    * release-1.34.61:
      Bumping version to 1.34.61
      Update to latest models
    aws-sdk-python-automation committed Mar 12, 2024
    Copy the full SHA
    be8b962 View commit details
27 changes: 27 additions & 0 deletions .changes/1.34.61.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``cloudformation``",
"description": "CloudFormation documentation update for March, 2024",
"type": "api-change"
},
{
"category": "``connect``",
"description": "This release increases MaxResults limit to 500 in request for SearchUsers, SearchQueues and SearchRoutingProfiles APIs of Amazon Connect.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "Documentation updates for Amazon EC2.",
"type": "api-change"
},
{
"category": "``kafka``",
"description": "Added support for specifying the starting position of topic replication in MSK-Replicator.",
"type": "api-change"
},
{
"category": "``ssm``",
"description": "March 2024 doc-only updates for Systems Manager.",
"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.34.61
=======

* api-change:``cloudformation``: CloudFormation documentation update for March, 2024
* api-change:``connect``: This release increases MaxResults limit to 500 in request for SearchUsers, SearchQueues and SearchRoutingProfiles APIs of Amazon Connect.
* api-change:``ec2``: Documentation updates for Amazon EC2.
* api-change:``kafka``: Added support for specifying the starting position of topic replication in MSK-Replicator.
* api-change:``ssm``: March 2024 doc-only updates for Systems Manager.


1.34.60
=======

2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.60'
__version__ = '1.34.61'


class NullHandler(logging.Handler):
Loading