Skip to content

Commit

Permalink
Merge branch 'release-1.34.23'
Browse files Browse the repository at this point in the history
* release-1.34.23:
  Bumping version to 1.34.23
  Update changelog based on model updates
  Add more detail to the no-paginate parameter description (v1)
  • Loading branch information
aws-sdk-python-automation committed Sep 19, 2024
2 parents f44ec37 + 3ca3e2f commit 845d103
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 6 deletions.
42 changes: 42 additions & 0 deletions .changes/1.34.23.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"category": "``codeconnections``",
"description": "This release adds the PullRequestComment field to CreateSyncConfiguration API input, UpdateSyncConfiguration API input, GetSyncConfiguration API output and ListSyncConfiguration API output",
"type": "api-change"
},
{
"category": "``glue``",
"description": "This change is for releasing TestConnection api SDK model",
"type": "api-change"
},
{
"category": "``lambda``",
"description": "Tagging support for Lambda event source mapping, and code signing configuration resources.",
"type": "api-change"
},
{
"category": "``mediaconvert``",
"description": "This release provides support for additional DRM configurations per SPEKE Version 2.0.",
"type": "api-change"
},
{
"category": "``medialive``",
"description": "Adds Bandwidth Reduction Filtering for HD AVC and HEVC encodes, multiplex container settings.",
"type": "api-change"
},
{
"category": "``quicksight``",
"description": "QuickSight: 1. Add new API - ListFoldersForResource. 2. Commit mode adds visibility configuration of Apply button on multi-select controls for authors.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "Introduced support for G6e instance types on SageMaker Studio for JupyterLab and CodeEditor applications.",
"type": "api-change"
},
{
"category": "``workspaces-web``",
"description": "WorkSpaces Secure Browser now enables Administrators to view and manage end-user browsing sessions via Session Management APIs.",
"type": "api-change"
}
]
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
CHANGELOG
=========

1.34.23
=======

* api-change:``codeconnections``: This release adds the PullRequestComment field to CreateSyncConfiguration API input, UpdateSyncConfiguration API input, GetSyncConfiguration API output and ListSyncConfiguration API output
* api-change:``glue``: This change is for releasing TestConnection api SDK model
* api-change:``lambda``: Tagging support for Lambda event source mapping, and code signing configuration resources.
* api-change:``mediaconvert``: This release provides support for additional DRM configurations per SPEKE Version 2.0.
* api-change:``medialive``: Adds Bandwidth Reduction Filtering for HD AVC and HEVC encodes, multiplex container settings.
* api-change:``quicksight``: QuickSight: 1. Add new API - ListFoldersForResource. 2. Commit mode adds visibility configuration of Apply button on multi-select controls for authors.
* api-change:``sagemaker``: Introduced support for G6e instance types on SageMaker Studio for JupyterLab and CodeEditor applications.
* api-change:``workspaces-web``: WorkSpaces Secure Browser now enables Administrators to view and manage end-user browsing sessions via Session Management APIs.


1.34.22
=======

Expand Down
2 changes: 1 addition & 1 deletion awscli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import os

__version__ = '1.34.22'
__version__ = '1.34.23'

#
# Get our data path to be added to botocore's search path
Expand Down
2 changes: 1 addition & 1 deletion awscli/data/cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"no-paginate": {
"action": "store_false",
"help": "<p>Disable automatic pagination.</p>",
"help": "<p>Disable automatic pagination. If automatic pagination is disabled, the AWS CLI will only make one call, for the first page of results.</p>",
"dest": "paginate"
},
"output": {
Expand Down
2 changes: 1 addition & 1 deletion awscli/examples/global_options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

``--no-paginate`` (boolean)

Disable automatic pagination.
Disable automatic pagination. If automatic pagination is disabled, the AWS CLI will only make one call, for the first page of results.

``--output`` (string)

Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.34.'
# The full version, including alpha/beta/rc tags.
release = '1.34.22'
release = '1.34.23'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore==1.35.22
botocore==1.35.23
docutils>=0.10,<0.17
s3transfer>=0.10.0,<0.11.0
PyYAML>=3.10,<6.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def find_version(*file_paths):


install_requires = [
'botocore==1.35.22',
'botocore==1.35.23',
'docutils>=0.10,<0.17',
's3transfer>=0.10.0,<0.11.0',
'PyYAML>=3.10,<6.1',
Expand Down

0 comments on commit 845d103

Please sign in to comment.