diff --git a/.changes/1.18.13.json b/.changes/1.18.13.json new file mode 100644 index 0000000000..fd4e8438ac --- /dev/null +++ b/.changes/1.18.13.json @@ -0,0 +1,27 @@ +[ + { + "category": "``redshift``", + "description": "[``botocore``] API support for Redshift Data Sharing feature.", + "type": "api-change" + }, + { + "category": "``iotsitewise``", + "description": "[``botocore``] My AWS Service (placeholder) - This release introduces custom Intervals and offset for tumbling window in metric for AWS IoT SiteWise.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Add ConcurrentModificationException to create-table, delete-table, create-database, update-database, delete-database", + "type": "api-change" + }, + { + "category": "``mediaconvert``", + "description": "[``botocore``] AWS Elemental MediaConvert SDK has added control over the passthrough of XDS captions metadata to outputs.", + "type": "api-change" + }, + { + "category": "``proton``", + "description": "[``botocore``] Docs only add idempotent create apis", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-glue-56284.json b/.changes/next-release/api-change-glue-56284.json deleted file mode 100644 index 0107319e9f..0000000000 --- a/.changes/next-release/api-change-glue-56284.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``glue``", - "description": "[``botocore``] Add ConcurrentModificationException to create-table, delete-table, create-database, update-database, delete-database" -} diff --git a/.changes/next-release/api-change-iotsitewise-92571.json b/.changes/next-release/api-change-iotsitewise-92571.json deleted file mode 100644 index fa658d9e78..0000000000 --- a/.changes/next-release/api-change-iotsitewise-92571.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``iotsitewise``", - "description": "[``botocore``] My AWS Service (placeholder) - This release introduces custom Intervals and offset for tumbling window in metric for AWS IoT SiteWise." -} diff --git a/.changes/next-release/api-change-mediaconvert-10550.json b/.changes/next-release/api-change-mediaconvert-10550.json deleted file mode 100644 index 1fb6c9b998..0000000000 --- a/.changes/next-release/api-change-mediaconvert-10550.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``mediaconvert``", - "description": "[``botocore``] AWS Elemental MediaConvert SDK has added control over the passthrough of XDS captions metadata to outputs." -} diff --git a/.changes/next-release/api-change-proton-90731.json b/.changes/next-release/api-change-proton-90731.json deleted file mode 100644 index 26b45ef6cb..0000000000 --- a/.changes/next-release/api-change-proton-90731.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``proton``", - "description": "[``botocore``] Docs only add idempotent create apis" -} diff --git a/.changes/next-release/api-change-redshift-6205.json b/.changes/next-release/api-change-redshift-6205.json deleted file mode 100644 index 943aa97901..0000000000 --- a/.changes/next-release/api-change-redshift-6205.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``redshift``", - "description": "[``botocore``] API support for Redshift Data Sharing feature." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e22d813846..a2d039b894 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.18.13 +======= + +* api-change:``redshift``: [``botocore``] API support for Redshift Data Sharing feature. +* api-change:``iotsitewise``: [``botocore``] My AWS Service (placeholder) - This release introduces custom Intervals and offset for tumbling window in metric for AWS IoT SiteWise. +* api-change:``glue``: [``botocore``] Add ConcurrentModificationException to create-table, delete-table, create-database, update-database, delete-database +* api-change:``mediaconvert``: [``botocore``] AWS Elemental MediaConvert SDK has added control over the passthrough of XDS captions metadata to outputs. +* api-change:``proton``: [``botocore``] Docs only add idempotent create apis + + 1.18.12 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index fc950ac6c1..63e6aae50b 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.18.12' +__version__ = '1.18.13' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index c233a410d7..fa451c9846 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.21.12,<1.22.0 + botocore>=1.21.13,<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 102688c109..a0fd69cbea 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.21.12,<1.22.0', + 'botocore>=1.21.13,<1.22.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]