Skip to content

Commit 89d37e3

Browse files
committedSep 26, 2023
Merge branch 'release-1.28.55'
* release-1.28.55: Bumping version to 1.28.55 Add changelog entries from botocore
2 parents f6daaef + 565af80 commit 89d37e3

File tree

5 files changed

+66
-5
lines changed

5 files changed

+66
-5
lines changed
 

‎.changes/1.28.55.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[
2+
{
3+
"category": "``appintegrations``",
4+
"description": "[``botocore``] The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``apprunner``",
9+
"description": "[``botocore``] This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``codedeploy``",
14+
"description": "[``botocore``] CodeDeploy now supports In-place and Blue/Green EC2 deployments with multiple Classic Load Balancers and multiple Target Groups.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``connect``",
19+
"description": "[``botocore``] This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``dynamodb``",
24+
"description": "[``botocore``] Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``ec2``",
29+
"description": "[``botocore``] The release includes AWS verified access to support FIPs compliance in North America regions",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``lakeformation``",
34+
"description": "[``botocore``] This release adds three new API support \"CreateLakeFormationOptIn\", \"DeleteLakeFormationOptIn\" and \"ListLakeFormationOptIns\", and also updates the corresponding documentation.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``pinpoint``",
39+
"description": "[``botocore``] Update documentation for RemoveAttributes to more accurately reflect its behavior when attributes are deleted.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``s3``",
44+
"description": "[``botocore``] This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.",
45+
"type": "api-change"
46+
}
47+
]

‎CHANGELOG.rst

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

5+
1.28.55
6+
=======
7+
8+
* api-change:``appintegrations``: [``botocore``] The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace.
9+
* api-change:``apprunner``: [``botocore``] This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories
10+
* api-change:``codedeploy``: [``botocore``] CodeDeploy now supports In-place and Blue/Green EC2 deployments with multiple Classic Load Balancers and multiple Target Groups.
11+
* api-change:``connect``: [``botocore``] This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace.
12+
* api-change:``dynamodb``: [``botocore``] Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table
13+
* api-change:``ec2``: [``botocore``] The release includes AWS verified access to support FIPs compliance in North America regions
14+
* api-change:``lakeformation``: [``botocore``] This release adds three new API support "CreateLakeFormationOptIn", "DeleteLakeFormationOptIn" and "ListLakeFormationOptIns", and also updates the corresponding documentation.
15+
* api-change:``pinpoint``: [``botocore``] Update documentation for RemoveAttributes to more accurately reflect its behavior when attributes are deleted.
16+
* api-change:``s3``: [``botocore``] This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.
17+
18+
519
1.28.54
620
=======
721

‎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.54'
20+
__version__ = '1.28.55'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

‎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.31.54,<1.32.0
6+
botocore>=1.31.55,<1.32.0
77
jmespath>=0.7.1,<2.0.0
8-
s3transfer>=0.6.0,<0.7.0
8+
s3transfer>=0.7.0,<0.8.0
99

1010
[options.extras_require]
1111
crt = botocore[crt]>=1.21.0,<2.0a0

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414

1515
requires = [
16-
'botocore>=1.31.54,<1.32.0',
16+
'botocore>=1.31.55,<1.32.0',
1717
'jmespath>=0.7.1,<2.0.0',
18-
's3transfer>=0.6.0,<0.7.0',
18+
's3transfer>=0.7.0,<0.8.0',
1919
]
2020

2121

0 commit comments

Comments
 (0)
Please sign in to comment.