diff --git a/.changes/1.19.7.json b/.changes/1.19.7.json new file mode 100644 index 0000000000..9a83c4463c --- /dev/null +++ b/.changes/1.19.7.json @@ -0,0 +1,27 @@ +[ + { + "category": "``transcribe``", + "description": "[``botocore``] Transcribe and Transcribe Call Analytics now support automatic language identification along with custom vocabulary, vocabulary filter, custom language model and PII redaction.", + "type": "api-change" + }, + { + "category": "``application-insights``", + "description": "[``botocore``] Added Monitoring support for SQL Server Failover Cluster Instance. Additionally, added a new API to allow one-click monitoring of containers resources.", + "type": "api-change" + }, + { + "category": "``rekognition``", + "description": "[``botocore``] This release added new attributes to Rekognition Video GetCelebrityRecognition API operations.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] Amazon Connect Chat now supports real-time message streaming.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Support added for AMI sharing with organizations and organizational units in ModifyImageAttribute API", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-applicationinsights-82799.json b/.changes/next-release/api-change-applicationinsights-82799.json deleted file mode 100644 index 8fa5fda85f..0000000000 --- a/.changes/next-release/api-change-applicationinsights-82799.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``application-insights``", - "description": "[``botocore``] Added Monitoring support for SQL Server Failover Cluster Instance. Additionally, added a new API to allow one-click monitoring of containers resources." -} diff --git a/.changes/next-release/api-change-connect-57542.json b/.changes/next-release/api-change-connect-57542.json deleted file mode 100644 index 5948a00b6c..0000000000 --- a/.changes/next-release/api-change-connect-57542.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect``", - "description": "[``botocore``] Amazon Connect Chat now supports real-time message streaming." -} diff --git a/.changes/next-release/api-change-ec2-90474.json b/.changes/next-release/api-change-ec2-90474.json deleted file mode 100644 index 0a9ee73b16..0000000000 --- a/.changes/next-release/api-change-ec2-90474.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ec2``", - "description": "[``botocore``] Support added for AMI sharing with organizations and organizational units in ModifyImageAttribute API" -} diff --git a/.changes/next-release/api-change-rekognition-42517.json b/.changes/next-release/api-change-rekognition-42517.json deleted file mode 100644 index 9ae4540c63..0000000000 --- a/.changes/next-release/api-change-rekognition-42517.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``rekognition``", - "description": "[``botocore``] This release added new attributes to Rekognition Video GetCelebrityRecognition API operations." -} diff --git a/.changes/next-release/api-change-transcribe-74699.json b/.changes/next-release/api-change-transcribe-74699.json deleted file mode 100644 index 53bac34044..0000000000 --- a/.changes/next-release/api-change-transcribe-74699.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``transcribe``", - "description": "[``botocore``] Transcribe and Transcribe Call Analytics now support automatic language identification along with custom vocabulary, vocabulary filter, custom language model and PII redaction." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f6cdbd72b9..727fe360ad 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.19.7 +====== + +* api-change:``transcribe``: [``botocore``] Transcribe and Transcribe Call Analytics now support automatic language identification along with custom vocabulary, vocabulary filter, custom language model and PII redaction. +* api-change:``application-insights``: [``botocore``] Added Monitoring support for SQL Server Failover Cluster Instance. Additionally, added a new API to allow one-click monitoring of containers resources. +* api-change:``rekognition``: [``botocore``] This release added new attributes to Rekognition Video GetCelebrityRecognition API operations. +* api-change:``connect``: [``botocore``] Amazon Connect Chat now supports real-time message streaming. +* api-change:``ec2``: [``botocore``] Support added for AMI sharing with organizations and organizational units in ModifyImageAttribute API + + 1.19.6 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index ea1fe745be..534d72bc8e 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.19.6' +__version__ = '1.19.7' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 549cc93cb9..84b11de50b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.22.6,<1.23.0 + botocore>=1.22.7,<1.23.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index 255770af88..d1e3534e6c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.22.6,<1.23.0', + 'botocore>=1.22.7,<1.23.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]