diff --git a/.changes/1.29.4.json b/.changes/1.29.4.json new file mode 100644 index 000000000000..6b157945c3a3 --- /dev/null +++ b/.changes/1.29.4.json @@ -0,0 +1,37 @@ +[ + { + "category": "dependency", + "description": "Support PyYAML 6.0", + "type": "enhancement" + }, + { + "category": "``codeartifact``", + "description": "Doc only update for AWS CodeArtifact", + "type": "api-change" + }, + { + "category": "``docdb``", + "description": "Added major version upgrade option in ModifyDBCluster API", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "Add Nitro TPM support on DescribeInstanceTypes", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "Adding new supported permission type flags to get-unfiltered endpoints that callers may pass to indicate support for enforcing Lake Formation fine-grained access control on nested column attributes.", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "This release provides the flexibility to configure what renditions or thumbnail qualities to record when creating recording configuration.", + "type": "api-change" + }, + { + "category": "``lakeformation``", + "description": "Adds supports for ReadOnlyAdmins and AllowFullTableExternalDataAccess. Adds NESTED_PERMISSION and NESTED_CELL_PERMISSION to SUPPORTED_PERMISSION_TYPES enum. Adds CREATE_LF_TAG on catalog resource and ALTER, DROP, and GRANT_WITH_LF_TAG_EXPRESSION on LF Tag resource.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f9bf36d86a8b..4e6ddaf0b254 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.29.4 +====== + +* enhancement:dependency: Support PyYAML 6.0 +* api-change:``codeartifact``: Doc only update for AWS CodeArtifact +* api-change:``docdb``: Added major version upgrade option in ModifyDBCluster API +* api-change:``ec2``: Add Nitro TPM support on DescribeInstanceTypes +* api-change:``glue``: Adding new supported permission type flags to get-unfiltered endpoints that callers may pass to indicate support for enforcing Lake Formation fine-grained access control on nested column attributes. +* api-change:``ivs``: This release provides the flexibility to configure what renditions or thumbnail qualities to record when creating recording configuration. +* api-change:``lakeformation``: Adds supports for ReadOnlyAdmins and AllowFullTableExternalDataAccess. Adds NESTED_PERMISSION and NESTED_CELL_PERMISSION to SUPPORTED_PERMISSION_TYPES enum. Adds CREATE_LF_TAG on catalog resource and ALTER, DROP, and GRANT_WITH_LF_TAG_EXPRESSION on LF Tag resource. + + 1.29.3 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index 9a2de514122e..26dafb7526c0 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.29.3' +__version__ = '1.29.4' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index cf0f1a026946..0e4b9846bd40 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.29' # The full version, including alpha/beta/rc tags. -release = '1.29.3' +release = '1.29.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/scripts/make-bundle b/scripts/make-bundle index 14bfedc57dcc..180a5eb1bd67 100755 --- a/scripts/make-bundle +++ b/scripts/make-bundle @@ -30,7 +30,7 @@ BUILDTIME_DEPS = [ ('setuptools-scm', '3.3.3'), ('wheel', '0.33.6'), ] -PIP_DOWNLOAD_ARGS = '--no-binary :all:' +PIP_DOWNLOAD_ARGS = '--no-build-isolation --no-binary :all:' class BadRCError(Exception): diff --git a/setup.cfg b/setup.cfg index b62019d1274f..4766dd6c4ed2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,10 +3,10 @@ universal = 0 [metadata] requires_dist = - botocore==1.31.3 + botocore==1.31.4 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 - PyYAML>=3.10,<5.5 + PyYAML>=3.10,<6.1 colorama>=0.2.5,<0.4.5 rsa>=3.1.2,<4.8 diff --git a/setup.py b/setup.py index 1ed99bd27b38..c834084b14ee 100644 --- a/setup.py +++ b/setup.py @@ -24,10 +24,10 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.31.3', + 'botocore==1.31.4', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', - 'PyYAML>=3.10,<5.5', + 'PyYAML>=3.10,<6.1', 'colorama>=0.2.5,<0.4.5', 'rsa>=3.1.2,<4.8', ]