Skip to content

Commit c533123

Browse files
Merge branch 'release-1.39.0' into develop
* release-1.39.0: Bumping version to 1.39.0 Add changelog entries from botocore Update changelog based on model updates
2 parents f808859 + 75e2890 commit c533123

File tree

7 files changed

+68
-12
lines changed

7 files changed

+68
-12
lines changed

.changes/1.39.0.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[
2+
{
3+
"category": "``account``",
4+
"description": "AWS Account Management now supports account name update via IAM principals.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``cognito-idp``",
9+
"description": "This release adds refresh token rotation.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``ec2``",
14+
"description": "Added support for ClientRouteEnforcementOptions flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``entityresolution``",
19+
"description": "To expand support for matching records using digital identifiers with TransUnion",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``mq``",
24+
"description": "You can now delete Amazon MQ broker configurations using the DeleteConfiguration API. For more information, see Configurations in the Amazon MQ API Reference.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``redshift-serverless``",
29+
"description": "Provides new and updated API members to support the Redshift Serverless reservations feature.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``s3control``",
34+
"description": "Fix endpoint resolution test cases",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "Python",
39+
"description": "End of support for Python 3.8",
40+
"type": "feature"
41+
},
42+
{
43+
"category": "Python",
44+
"description": "End of support for Python 3.8",
45+
"type": "feature"
46+
}
47+
]

.changes/next-release/feature-Python-58002.json

-5
This file was deleted.

CHANGELOG.rst

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
CHANGELOG
33
=========
44

5+
1.39.0
6+
======
7+
8+
* api-change:``account``: AWS Account Management now supports account name update via IAM principals.
9+
* api-change:``cognito-idp``: This release adds refresh token rotation.
10+
* api-change:``ec2``: Added support for ClientRouteEnforcementOptions flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
11+
* api-change:``entityresolution``: To expand support for matching records using digital identifiers with TransUnion
12+
* api-change:``mq``: You can now delete Amazon MQ broker configurations using the DeleteConfiguration API. For more information, see Configurations in the Amazon MQ API Reference.
13+
* api-change:``redshift-serverless``: Provides new and updated API members to support the Redshift Serverless reservations feature.
14+
* api-change:``s3control``: Fix endpoint resolution test cases
15+
* feature:Python: End of support for Python 3.8
16+
* feature:Python: End of support for Python 3.8
17+
18+
519
1.38.38
620
=======
721

awscli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import os
2020

21-
__version__ = '1.38.38'
21+
__version__ = '1.39.0'
2222

2323
#
2424
# Get our data path to be added to botocore's search path

doc/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '1.38.'
53+
version = '1.39'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.38.38'
55+
release = '1.39.0'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.37.38
6+
botocore==1.38.0
77
docutils>=0.18.1,<=0.19
8-
s3transfer>=0.11.0,<0.12.0
8+
s3transfer>=0.12.0,<0.13.0
99
PyYAML>=3.10,<6.1
1010
colorama>=0.2.5,<0.4.7
1111
rsa>=3.1.2,<4.8

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ def find_version(*file_paths):
2424

2525

2626
install_requires = [
27-
'botocore==1.37.38',
27+
'botocore==1.38.0',
2828
'docutils>=0.18.1,<=0.19',
29-
's3transfer>=0.11.0,<0.12.0',
29+
's3transfer>=0.12.0,<0.13.0',
3030
'PyYAML>=3.10,<6.1',
3131
'colorama>=0.2.5,<0.4.7',
3232
'rsa>=3.1.2,<4.8',

0 commit comments

Comments
 (0)