diff --git a/.changes/1.10.35.json b/.changes/1.10.35.json new file mode 100644 index 0000000000..6a5280e16d --- /dev/null +++ b/.changes/1.10.35.json @@ -0,0 +1,27 @@ +[ + { + "category": "s3", + "description": "[``botocore``] Add stricter validation to s3 control account id parameter.", + "type": "bugfix" + }, + { + "category": "``quicksight``", + "description": "[``botocore``] Update quicksight client to latest version", + "type": "api-change" + }, + { + "category": "``kms``", + "description": "[``botocore``] Update kms client to latest version", + "type": "api-change" + }, + { + "category": "``ssm``", + "description": "[``botocore``] Update ssm client to latest version", + "type": "api-change" + }, + { + "category": "``kafka``", + "description": "[``botocore``] Update kafka client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e913840d0e..e5e5b74d0e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.10.35 +======= + +* bugfix:s3: [``botocore``] Add stricter validation to s3 control account id parameter. +* api-change:``quicksight``: [``botocore``] Update quicksight client to latest version +* api-change:``kms``: [``botocore``] Update kms client to latest version +* api-change:``ssm``: [``botocore``] Update ssm client to latest version +* api-change:``kafka``: [``botocore``] Update kafka client to latest version + + 1.10.34 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 9abe8c2690..1262d0e87c 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.10.34' +__version__ = '1.10.35' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index c0db69d815..a6072f8cb4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires-dist = - botocore>=1.13.34,<1.14.0 + botocore>=1.13.35,<1.14.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.2.0,<0.3.0 diff --git a/setup.py b/setup.py index 18ff34a8a9..c3dc0e7588 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.13.34,<1.14.0', + 'botocore>=1.13.35,<1.14.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.2.0,<0.3.0' ]