Skip to content

Commit 5d60168

Browse files
committedNov 13, 2023
Merge branch 'release-1.28.85' into develop
* release-1.28.85: Bumping version to 1.28.85 Add changelog entries from botocore
2 parents 8dd177f + 19b48e9 commit 5d60168

File tree

5 files changed

+58
-3
lines changed

5 files changed

+58
-3
lines changed
 

‎.changes/1.28.85.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[
2+
{
3+
"category": "AWSCRT",
4+
"description": "[``botocore``] Update awscrt version to 0.19.12",
5+
"type": "enhancement"
6+
},
7+
{
8+
"category": "``dataexchange``",
9+
"description": "[``botocore``] Removed Required trait for DataSet.OriginDetails.ProductId.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``dms``",
14+
"description": "[``botocore``] Added new Db2 LUW Target endpoint with related endpoint settings. New executeTimeout endpoint setting for mysql endpoint. New ReplicationDeprovisionTime field for serverless describe-replications.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``ec2``",
19+
"description": "[``botocore``] Adds the new EC2 DescribeInstanceTopology API, which you can use to retrieve the network topology of your running instances on select platform types to determine their relative proximity to each other.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``ecs``",
24+
"description": "[``botocore``] Adds a Client Token parameter to the ECS RunTask API. The Client Token parameter allows for idempotent RunTask requests.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``emr``",
29+
"description": "[``botocore``] Update emr client to latest version",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``servicecatalog-appregistry``",
34+
"description": "[``botocore``] When the customer associates a resource collection to their application with this new feature, then a new application tag will be applied to all supported resources that are part of that collection. This allows customers to more easily find the application that is associated with those resources.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``endpoint-rules``",
39+
"description": "[``botocore``] Update endpoint-rules client to latest version",
40+
"type": "api-change"
41+
}
42+
]

‎CHANGELOG.rst

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

5+
1.28.85
6+
=======
7+
8+
* enhancement:AWSCRT: [``botocore``] Update awscrt version to 0.19.12
9+
* api-change:``dataexchange``: [``botocore``] Removed Required trait for DataSet.OriginDetails.ProductId.
10+
* api-change:``dms``: [``botocore``] Added new Db2 LUW Target endpoint with related endpoint settings. New executeTimeout endpoint setting for mysql endpoint. New ReplicationDeprovisionTime field for serverless describe-replications.
11+
* api-change:``ec2``: [``botocore``] Adds the new EC2 DescribeInstanceTopology API, which you can use to retrieve the network topology of your running instances on select platform types to determine their relative proximity to each other.
12+
* api-change:``ecs``: [``botocore``] Adds a Client Token parameter to the ECS RunTask API. The Client Token parameter allows for idempotent RunTask requests.
13+
* api-change:``emr``: [``botocore``] Update emr client to latest version
14+
* api-change:``servicecatalog-appregistry``: [``botocore``] When the customer associates a resource collection to their application with this new feature, then a new application tag will be applied to all supported resources that are part of that collection. This allows customers to more easily find the application that is associated with those resources.
15+
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
16+
17+
518
1.28.84
619
=======
720

‎boto3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from boto3.session import Session
1818

1919
__author__ = 'Amazon Web Services'
20-
__version__ = '1.28.84'
20+
__version__ = '1.28.85'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.31.84,<1.32.0
6+
botocore>=1.31.85,<1.32.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.7.0,<0.8.0
99

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
requires = [
16-
'botocore>=1.31.84,<1.32.0',
16+
'botocore>=1.31.85,<1.32.0',
1717
'jmespath>=0.7.1,<2.0.0',
1818
's3transfer>=0.7.0,<0.8.0',
1919
]

0 commit comments

Comments
 (0)
Please sign in to comment.