Skip to content

Commit

Permalink
Merge branch 'release-1.28.0' into develop
Browse files Browse the repository at this point in the history
* release-1.28.0:
  Bumping version to 1.28.0
  Add changelog entries from botocore
  • Loading branch information
aws-sdk-python-automation committed Jul 6, 2023
2 parents 2419f0c + 0382926 commit b05369d
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 3 deletions.
42 changes: 42 additions & 0 deletions .changes/1.28.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"category": "configprovider",
"description": "[``botocore``] Always use shallow copy of session config value store for clients",
"type": "enhancement"
},
{
"category": "configuration",
"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.",
"type": "feature"
},
{
"category": "configprovider",
"description": "[``botocore``] Fix bug when deep copying config value store where overrides were not preserved",
"type": "bugfix"
},
{
"category": "``ec2``",
"description": "[``botocore``] Add Nitro Enclaves support on DescribeInstanceTypes",
"type": "api-change"
},
{
"category": "``location``",
"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.",
"type": "api-change"
},
{
"category": "``outposts``",
"description": "[``botocore``] Added paginator support to several APIs. Added the ISOLATED enum value to AssetState.",
"type": "api-change"
},
{
"category": "``quicksight``",
"description": "[``botocore``] This release includes below three changes: small multiples axes improvement, field based coloring, removed required trait from Aggregation function for TopBottomFilter.",
"type": "api-change"
},
{
"category": "``rds``",
"description": "[``botocore``] Updates Amazon RDS documentation for creating DB instances and creating Aurora global clusters.",
"type": "api-change"
}
]
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
CHANGELOG
=========

1.28.0
======

* enhancement:configprovider: [``botocore``] Always use shallow copy of session config value store for clients
* 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.
* bugfix:configprovider: [``botocore``] Fix bug when deep copying config value store where overrides were not preserved
* api-change:``ec2``: [``botocore``] Add Nitro Enclaves support on DescribeInstanceTypes
* 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.
* api-change:``outposts``: [``botocore``] Added paginator support to several APIs. Added the ISOLATED enum value to AssetState.
* 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.
* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for creating DB instances and creating Aurora global clusters.


1.27.1
======

Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from boto3.session import Session

__author__ = 'Amazon Web Services'
__version__ = '1.27.1'
__version__ = '1.28.0'


# The default Boto3 session; autoloaded when needed.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.30.1,<1.31.0
botocore>=1.31.0,<1.32.0
jmespath>=0.7.1,<2.0.0
s3transfer>=0.6.0,<0.7.0

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


requires = [
'botocore>=1.30.1,<1.31.0',
'botocore>=1.31.0,<1.32.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.6.0,<0.7.0',
]
Expand Down

0 comments on commit b05369d

Please sign in to comment.