Skip to content

Commit

Permalink
Merge branch 'release-1.29.89'
Browse files Browse the repository at this point in the history
* release-1.29.89:
  Bumping version to 1.29.89
  Update to latest partitions and endpoints
  Update to latest models
  Add timezone info to the datetime instances used in test_token_chosen_from_provider (#2882)
  • Loading branch information
aws-sdk-python-automation committed Mar 10, 2023
2 parents c87cd7c + 6e9303f commit 424f4be
Show file tree
Hide file tree
Showing 12 changed files with 744 additions and 1,804 deletions.
12 changes: 12 additions & 0 deletions .changes/1.29.89.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"category": "``ivschat``",
"description": "This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations.",
"type": "api-change"
},
{
"category": "``secretsmanager``",
"description": "The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values.",
"type": "api-change"
}
]
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
CHANGELOG
=========

1.29.89
=======

* api-change:``ivschat``: This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations.
* api-change:``secretsmanager``: The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values.


1.29.88
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.29.88'
__version__ = '1.29.89'


class NullHandler(logging.Handler):
Expand Down
10 changes: 9 additions & 1 deletion botocore/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -12055,6 +12055,7 @@
"endpoints" : {
"ap-northeast-1" : { },
"ap-northeast-2" : { },
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ca-central-1" : { },
Expand Down Expand Up @@ -20769,11 +20770,18 @@
},
"participant.connect" : {
"endpoints" : {
"us-gov-west-1" : {
"fips-us-gov-west-1" : {
"credentialScope" : {
"region" : "us-gov-west-1"
},
"deprecated" : true,
"hostname" : "participant.connect.us-gov-west-1.amazonaws.com"
},
"us-gov-west-1" : {
"variants" : [ {
"hostname" : "participant.connect.us-gov-west-1.amazonaws.com",
"tags" : [ "fips" ]
} ]
}
}
},
Expand Down
380 changes: 203 additions & 177 deletions botocore/data/ivschat/2020-07-14/endpoint-rule-set-1.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions botocore/data/ivschat/2020-07-14/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@
"input":{"shape":"UpdateLoggingConfigurationRequest"},
"output":{"shape":"UpdateLoggingConfigurationResponse"},
"errors":[
{"shape":"ConflictException"},
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"PendingVerification"},
Expand Down
392 changes: 218 additions & 174 deletions botocore/data/secretsmanager/2017-10-17/endpoint-rule-set-1.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions botocore/data/secretsmanager/2017-10-17/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@
"SecretBinaryType":{
"type":"blob",
"max":65536,
"min":0,
"min":1,
"sensitive":true
},
"SecretIdType":{
Expand Down Expand Up @@ -1484,7 +1484,7 @@
"SecretStringType":{
"type":"string",
"max":65536,
"min":0,
"min":1,
"sensitive":true
},
"SecretVersionIdType":{
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# The short X.Y version.
version = '1.29.'
# The full version, including alpha/beta/rc tags.
release = '1.29.88'
release = '1.29.89'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
Loading

0 comments on commit 424f4be

Please sign in to comment.