Skip to content

Commit

Permalink
Merge branch 'release-1.29.4'
Browse files Browse the repository at this point in the history
* release-1.29.4:
  Bumping version to 1.29.4
  Update changelog based on model updates
  Add --no-build-isolation to make-bundle script
  Add support for PyYAML 6.0
  • Loading branch information
aws-sdk-python-automation committed Jul 17, 2023
2 parents cd60dab + a835972 commit 820b279
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 7 deletions.
37 changes: 37 additions & 0 deletions .changes/1.29.4.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
======

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.29.3'
__version__ = '1.29.4'

#
# Get our data path to be added to botocore's search path
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.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.
Expand Down
2 changes: 1 addition & 1 deletion scripts/make-bundle
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]
Expand Down

0 comments on commit 820b279

Please sign in to comment.