Skip to content

Commit 0382926

Browse files
Bumping version to 1.28.0
1 parent 4c203e4 commit 0382926

13 files changed

+58
-43
lines changed

.changes/1.28.0.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[
2+
{
3+
"category": "configprovider",
4+
"description": "[``botocore``] Always use shallow copy of session config value store for clients",
5+
"type": "enhancement"
6+
},
7+
{
8+
"category": "configuration",
9+
"description": "[``botocore``] Configure the endpoint URL in the shared configuration file or via an environment variable for a specific AWS service or all AWS services.",
10+
"type": "feature"
11+
},
12+
{
13+
"category": "configprovider",
14+
"description": "[``botocore``] Fix bug when deep copying config value store where overrides were not preserved",
15+
"type": "bugfix"
16+
},
17+
{
18+
"category": "``ec2``",
19+
"description": "[``botocore``] Add Nitro Enclaves support on DescribeInstanceTypes",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``location``",
24+
"description": "[``botocore``] This release adds support for authenticating with Amazon Location Service's Places & Routes APIs with an API Key. Also, with this release developers can publish tracked device position updates to Amazon EventBridge.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``outposts``",
29+
"description": "[``botocore``] Added paginator support to several APIs. Added the ISOLATED enum value to AssetState.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``quicksight``",
34+
"description": "[``botocore``] This release includes below three changes: small multiples axes improvement, field based coloring, removed required trait from Aggregation function for TopBottomFilter.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``rds``",
39+
"description": "[``botocore``] Updates Amazon RDS documentation for creating DB instances and creating Aurora global clusters.",
40+
"type": "api-change"
41+
}
42+
]

.changes/next-release/api-change-ec2-20851.json

-5
This file was deleted.

.changes/next-release/api-change-location-63755.json

-5
This file was deleted.

.changes/next-release/api-change-outposts-20776.json

-5
This file was deleted.

.changes/next-release/api-change-quicksight-20340.json

-5
This file was deleted.

.changes/next-release/api-change-rds-54098.json

-5
This file was deleted.

.changes/next-release/bugfix-configprovider-46546.json

-5
This file was deleted.

.changes/next-release/enhancement-configprovider-27540.json

-5
This file was deleted.

.changes/next-release/feature-configuration-3829.json

-5
This file was deleted.

CHANGELOG.rst

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

5+
1.28.0
6+
======
7+
8+
* enhancement:configprovider: [``botocore``] Always use shallow copy of session config value store for clients
9+
* feature:configuration: [``botocore``] Configure the endpoint URL in the shared configuration file or via an environment variable for a specific AWS service or all AWS services.
10+
* bugfix:configprovider: [``botocore``] Fix bug when deep copying config value store where overrides were not preserved
11+
* api-change:``ec2``: [``botocore``] Add Nitro Enclaves support on DescribeInstanceTypes
12+
* api-change:``location``: [``botocore``] This release adds support for authenticating with Amazon Location Service's Places & Routes APIs with an API Key. Also, with this release developers can publish tracked device position updates to Amazon EventBridge.
13+
* api-change:``outposts``: [``botocore``] Added paginator support to several APIs. Added the ISOLATED enum value to AssetState.
14+
* api-change:``quicksight``: [``botocore``] This release includes below three changes: small multiples axes improvement, field based coloring, removed required trait from Aggregation function for TopBottomFilter.
15+
* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for creating DB instances and creating Aurora global clusters.
16+
17+
518
1.27.1
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.27.1'
20+
__version__ = '1.28.0'
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.30.1,<1.31.0
6+
botocore>=1.31.0,<1.32.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.6.0,<0.7.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.30.1,<1.31.0',
16+
'botocore>=1.31.0,<1.32.0',
1717
'jmespath>=0.7.1,<2.0.0',
1818
's3transfer>=0.6.0,<0.7.0',
1919
]

0 commit comments

Comments
 (0)