diff --git a/.changes/1.22.66.json b/.changes/1.22.66.json new file mode 100644 index 000000000000..d22316de84ef --- /dev/null +++ b/.changes/1.22.66.json @@ -0,0 +1,27 @@ +[ + { + "category": "``athena``", + "description": "This release adds support for S3 Object Ownership by allowing the S3 bucket owner full control canned ACL to be set when Athena writes query results to S3 buckets.", + "type": "api-change" + }, + { + "category": "``ecr``", + "description": "This release adds support for tracking images lastRecordedPullTime.", + "type": "api-change" + }, + { + "category": "``keyspaces``", + "description": "This release adds support for data definition language (DDL) operations", + "type": "api-change" + }, + { + "category": "``gamelift``", + "description": "Minor updates to address errors.", + "type": "api-change" + }, + { + "category": "``cloudtrail``", + "description": "Add bytesScanned field into responses of DescribeQuery and GetQueryResults.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-athena-6477.json b/.changes/next-release/api-change-athena-6477.json deleted file mode 100644 index e15a6bea0a39..000000000000 --- a/.changes/next-release/api-change-athena-6477.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``athena``", - "description": "This release adds support for S3 Object Ownership by allowing the S3 bucket owner full control canned ACL to be set when Athena writes query results to S3 buckets." -} diff --git a/.changes/next-release/api-change-cloudtrail-86632.json b/.changes/next-release/api-change-cloudtrail-86632.json deleted file mode 100644 index f45054cb5e1d..000000000000 --- a/.changes/next-release/api-change-cloudtrail-86632.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cloudtrail``", - "description": "Add bytesScanned field into responses of DescribeQuery and GetQueryResults." -} diff --git a/.changes/next-release/api-change-ecr-69823.json b/.changes/next-release/api-change-ecr-69823.json deleted file mode 100644 index a94fd6401f22..000000000000 --- a/.changes/next-release/api-change-ecr-69823.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ecr``", - "description": "This release adds support for tracking images lastRecordedPullTime." -} diff --git a/.changes/next-release/api-change-gamelift-39955.json b/.changes/next-release/api-change-gamelift-39955.json deleted file mode 100644 index d8957a7f9415..000000000000 --- a/.changes/next-release/api-change-gamelift-39955.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``gamelift``", - "description": "Minor updates to address errors." -} diff --git a/.changes/next-release/api-change-keyspaces-9362.json b/.changes/next-release/api-change-keyspaces-9362.json deleted file mode 100644 index ebc8f36f5ebb..000000000000 --- a/.changes/next-release/api-change-keyspaces-9362.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``keyspaces``", - "description": "This release adds support for data definition language (DDL) operations" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1f4978e29311..b3f88270a36a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.22.66 +======= + +* api-change:``athena``: This release adds support for S3 Object Ownership by allowing the S3 bucket owner full control canned ACL to be set when Athena writes query results to S3 buckets. +* api-change:``ecr``: This release adds support for tracking images lastRecordedPullTime. +* api-change:``keyspaces``: This release adds support for data definition language (DDL) operations +* api-change:``gamelift``: Minor updates to address errors. +* api-change:``cloudtrail``: Add bytesScanned field into responses of DescribeQuery and GetQueryResults. + + 1.22.65 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 4606d78bed9c..1d54dee7e495 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.22.65' +__version__ = '1.22.66' # # 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 4896aa3ed5eb..73e2ad977126 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.22.' # The full version, including alpha/beta/rc tags. -release = '1.22.65' +release = '1.22.66' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 17df45c5799e..f2926a244068 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.24.10 + botocore==1.24.11 docutils>=0.10,<0.16 s3transfer>=0.5.0,<0.6.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index fa36075a5408..89f6f19c709b 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.24.10', + 'botocore==1.24.11', 'docutils>=0.10,<0.16', 's3transfer>=0.5.0,<0.6.0', 'PyYAML>=3.10,<5.5',