Skip to content

Commit

Permalink
Merge branch 'release-1.27.134'
Browse files Browse the repository at this point in the history
* release-1.27.134:
  Bumping version to 1.27.134
  Update changelog based on model updates
  Removing innacurate paragraph regarding access point object ARNs
  • Loading branch information
aws-sdk-python-automation committed May 15, 2023
2 parents dbbf1ce + 651a5cb commit 41b9884
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 9 deletions.
32 changes: 32 additions & 0 deletions .changes/1.27.134.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"category": "``athena``",
"description": "You can now define custom spark properties at start of the session for use cases like cluster encryption, table formats, and general Spark tuning.",
"type": "api-change"
},
{
"category": "``codecatalyst``",
"description": "With this release, the users can list the active sessions connected to their Dev Environment on AWS CodeCatalyst",
"type": "api-change"
},
{
"category": "``kafka``",
"description": "Added a fix to make clusterarn a required field in ListClientVpcConnections and RejectClientVpcConnection APIs",
"type": "api-change"
},
{
"category": "``rekognition``",
"description": "This release adds a new EyeDirection attribute in Amazon Rekognition DetectFaces and IndexFaces APIs which predicts the yaw and pitch angles of a person's eye gaze direction for each face detected in the image.",
"type": "api-change"
},
{
"category": "``rolesanywhere``",
"description": "Adds support for custom notification settings in a trust anchor. Introduces PutNotificationSettings and ResetNotificationSettings API's. Updates DurationSeconds max value to 3600.",
"type": "api-change"
},
{
"category": "``transfer``",
"description": "This release introduces the ability to require both password and SSH key when users authenticate to your Transfer Family servers that use the SFTP protocol.",
"type": "api-change"
}
]
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
CHANGELOG
=========

1.27.134
========

* api-change:``athena``: You can now define custom spark properties at start of the session for use cases like cluster encryption, table formats, and general Spark tuning.
* api-change:``codecatalyst``: With this release, the users can list the active sessions connected to their Dev Environment on AWS CodeCatalyst
* api-change:``kafka``: Added a fix to make clusterarn a required field in ListClientVpcConnections and RejectClientVpcConnection APIs
* api-change:``rekognition``: This release adds a new EyeDirection attribute in Amazon Rekognition DetectFaces and IndexFaces APIs which predicts the yaw and pitch angles of a person's eye gaze direction for each face detected in the image.
* api-change:``rolesanywhere``: Adds support for custom notification settings in a trust anchor. Introduces PutNotificationSettings and ResetNotificationSettings API's. Updates DurationSeconds max value to 3600.
* api-change:``transfer``: This release introduces the ability to require both password and SSH key when users authenticate to your Transfer Family servers that use the SFTP protocol.


1.27.133
========

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

__version__ = '1.27.133'
__version__ = '1.27.134'

#
# Get our data path to be added to botocore's search path
Expand Down
5 changes: 0 additions & 5 deletions awscli/examples/s3/_concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ Similar to bucket names, you can also use prefixes with access point ARNs for
the ``S3Uri``. For example:
``s3://arn:aws:s3:us-west-2:123456789012:accesspoint/myaccesspoint/myprefix/``

The higher level ``s3`` commands do **not** support access point object ARNs.
For example, if the following was specified:
``s3://arn:aws:s3:us-west-2:123456789012:accesspoint/myaccesspoint/object/mykey``
the ``S3URI`` will resolve to the object key ``object/mykey``



Order of Path Arguments
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.27.1'
# The full version, including alpha/beta/rc tags.
release = '1.27.133'
release = '1.27.134'

# 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.29.133
botocore==1.29.134
docutils>=0.10,<0.17
s3transfer>=0.6.0,<0.7.0
PyYAML>=3.10,<5.5
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.29.133',
'botocore==1.29.134',
'docutils>=0.10,<0.17',
's3transfer>=0.6.0,<0.7.0',
'PyYAML>=3.10,<5.5',
Expand Down

0 comments on commit 41b9884

Please sign in to comment.