diff --git a/.changes/1.18.22.json b/.changes/1.18.22.json new file mode 100644 index 0000000000..76f401a525 --- /dev/null +++ b/.changes/1.18.22.json @@ -0,0 +1,32 @@ +[ + { + "category": "``iotsitewise``", + "description": "[``botocore``] AWS IoT SiteWise added query window for the interpolation interval. AWS IoT SiteWise computes each interpolated value by using data points from the timestamp of each interval minus the window to the timestamp of each interval plus the window.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Documentation updates for Amazon S3", + "type": "api-change" + }, + { + "category": "``codebuild``", + "description": "[``botocore``] CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.", + "type": "api-change" + }, + { + "category": "``ds``", + "description": "[``botocore``] This release adds support for describing client authentication settings.", + "type": "api-change" + }, + { + "category": "``config``", + "description": "[``botocore``] Update ResourceType enum with values for Backup Plan, Selection, Vault, RecoveryPoint; ECS Cluster, Service, TaskDefinition; EFS AccessPoint, FileSystem; EKS Cluster; ECR Repository resources", + "type": "api-change" + }, + { + "category": "``license-manager``", + "description": "[``botocore``] AWS License Manager now allows end users to call CheckoutLicense API using new CheckoutType PERPETUAL. Perpetual checkouts allow sellers to check out a quantity of entitlements to be drawn down for consumption.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 815d190be6..0f90c0b441 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.18.22 +======= + +* api-change:``iotsitewise``: [``botocore``] AWS IoT SiteWise added query window for the interpolation interval. AWS IoT SiteWise computes each interpolated value by using data points from the timestamp of each interval minus the window to the timestamp of each interval plus the window. +* api-change:``s3``: [``botocore``] Documentation updates for Amazon S3 +* api-change:``codebuild``: [``botocore``] CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project. +* api-change:``ds``: [``botocore``] This release adds support for describing client authentication settings. +* api-change:``config``: [``botocore``] Update ResourceType enum with values for Backup Plan, Selection, Vault, RecoveryPoint; ECS Cluster, Service, TaskDefinition; EFS AccessPoint, FileSystem; EKS Cluster; ECR Repository resources +* api-change:``license-manager``: [``botocore``] AWS License Manager now allows end users to call CheckoutLicense API using new CheckoutType PERPETUAL. Perpetual checkouts allow sellers to check out a quantity of entitlements to be drawn down for consumption. + + 1.18.21 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index ae2d5d353f..1ae8b3187c 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.18.21' +__version__ = '1.18.22' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index adf99f5e32..0faf254595 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.21.21,<1.22.0 + botocore>=1.21.22,<1.22.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index a9e78f7fdd..e2d0a5e7d9 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.21.21,<1.22.0', + 'botocore>=1.21.22,<1.22.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]