Skip to content

Commit

Permalink
Merge branch 'release-1.37.10'
Browse files Browse the repository at this point in the history
* release-1.37.10:
  Bumping version to 1.37.10
  Update changelog based on model updates
  Improve formatting in docs (#8775)
  • Loading branch information
aws-sdk-python-automation committed Jan 30, 2025
2 parents 06460e5 + 6474a38 commit 6e456d0
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 10 deletions.
42 changes: 42 additions & 0 deletions .changes/1.37.10.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"category": "``appstream``",
"description": "Add support for managing admin consent requirement on selected domains for OneDrive Storage Connectors in AppStream2.0.",
"type": "api-change"
},
{
"category": "``bedrock-agent-runtime``",
"description": "Add a 'reason' field to InternalServerException",
"type": "api-change"
},
{
"category": "``ecr``",
"description": "Temporarily updating dualstack endpoint support",
"type": "api-change"
},
{
"category": "``ecr-public``",
"description": "Temporarily updating dualstack endpoint support",
"type": "api-change"
},
{
"category": "``mediatailor``",
"description": "Adds options for configuring how MediaTailor conditions ads before inserting them into the content stream. Based on the new settings, MediaTailor will either transcode ads to match the content stream as it has in the past, or it will insert ads without first transcoding them.",
"type": "api-change"
},
{
"category": "``qbusiness``",
"description": "Added APIs to manage QBusiness user subscriptions",
"type": "api-change"
},
{
"category": "``s3tables``",
"description": "You can now use the CreateTable API operation to create tables with schemas by adding an optional metadata argument.",
"type": "api-change"
},
{
"category": "``verifiedpermissions``",
"description": "Adds Cedar JSON format support for entities and context data in authorization requests",
"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.37.10
=======

* api-change:``appstream``: Add support for managing admin consent requirement on selected domains for OneDrive Storage Connectors in AppStream2.0.
* api-change:``bedrock-agent-runtime``: Add a 'reason' field to InternalServerException
* api-change:``ecr``: Temporarily updating dualstack endpoint support
* api-change:``ecr-public``: Temporarily updating dualstack endpoint support
* api-change:``mediatailor``: Adds options for configuring how MediaTailor conditions ads before inserting them into the content stream. Based on the new settings, MediaTailor will either transcode ads to match the content stream as it has in the past, or it will insert ads without first transcoding them.
* api-change:``qbusiness``: Added APIs to manage QBusiness user subscriptions
* api-change:``s3tables``: You can now use the CreateTable API operation to create tables with schemas by adding an optional metadata argument.
* api-change:``verifiedpermissions``: Adds Cedar JSON format support for entities and context data in authorization requests


1.37.9
======

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.37.9'
__version__ = '1.37.10'

#
# Get our data path to be added to botocore's search path
Expand Down
10 changes: 5 additions & 5 deletions awscli/examples/eks/update-kubeconfig/_description.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ Note:
To use the resulting configuration, you must have kubectl installed and in your PATH environment variable.

This command constructs a configuration with prepopulated server and certificate authority data values for a specified cluster.
You can specify an IAM role ARN with the --role-arn option to use for authentication when you issue kubectl commands.
You can specify an IAM role ARN with the ``--role-arn`` option to use for authentication when you issue kubectl commands.
Otherwise, the IAM entity in your default AWS CLI or SDK credential chain is used.
You can view your default AWS CLI or SDK identity by running the ``aws sts get-caller-identity`` command.

The resulting kubeconfig is created as a new file or merged with an existing kubeconfig file using the following logic:

* If you specify a path with the --kubeconfig option, then the resulting configuration file is created there or merged with an existing kubeconfig at that location.
* Or, if you have the KUBECONFIG environment variable set, then the resulting configuration file is created at the first entry in that variable or merged with an existing kubeconfig at that location.
* Otherwise, by default, the resulting configuration file is created at the default kubeconfig path (.kube/config) in your home directory or merged with an existing kubeconfig at that location.
* If you specify a path with the ``--kubeconfig option``, then the resulting configuration file is created there or merged with an existing kubeconfig at that location.
* Or, if you have the ``KUBECONFIG`` environment variable set, then the resulting configuration file is created at the first entry in that variable or merged with an existing kubeconfig at that location.
* Otherwise, by default, the resulting configuration file is created at the default kubeconfig path (``.kube/config``) in your home directory or merged with an existing kubeconfig at that location.
* If a previous cluster configuration exists for an Amazon EKS cluster with the same name at the specified path, the existing configuration is overwritten with the new configuration.
* When update-kubeconfig writes a configuration to a kubeconfig file, the current-context of the kubeconfig file is set to that configuration.

You can use the --dry-run option to print the resulting configuration to stdout instead of writing it to the specified location.
You can use the ``--dry-run`` option to print the resulting configuration to stdout instead of writing it to the specified location.
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = '1.37'
version = '1.37.'
# The full version, including alpha/beta/rc tags.
release = '1.37.9'
release = '1.37.10'

# 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.36.9
botocore==1.36.10
docutils>=0.10,<0.17
s3transfer>=0.11.0,<0.12.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.36.9',
'botocore==1.36.10',
'docutils>=0.10,<0.17',
's3transfer>=0.11.0,<0.12.0',
'PyYAML>=3.10,<6.1',
Expand Down

0 comments on commit 6e456d0

Please sign in to comment.