Skip to content

Commit

Permalink
Merge branch 'release-1.26.55'
Browse files Browse the repository at this point in the history
* release-1.26.55:
  Bumping version to 1.26.55
  Add changelog entries from botocore
  Clarify resource feature freeze messaging (#3564)
  • Loading branch information
aws-sdk-python-automation committed Jan 23, 2023
2 parents ce9d3b1 + c8206e0 commit ebabf37
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 11 deletions.
12 changes: 12 additions & 0 deletions .changes/1.26.55.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"category": "``lambda``",
"description": "[``botocore``] Release Lambda RuntimeManagementConfig, enabling customers to better manage runtime updates to their Lambda functions. This release adds two new APIs, GetRuntimeManagementConfig and PutRuntimeManagementConfig, as well as support on existing Create/Get/Update function APIs.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "[``botocore``] Amazon SageMaker Inference now supports P4de instance types.",
"type": "api-change"
}
]
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
CHANGELOG
=========

1.26.55
=======

* api-change:``lambda``: [``botocore``] Release Lambda RuntimeManagementConfig, enabling customers to better manage runtime updates to their Lambda functions. This release adds two new APIs, GetRuntimeManagementConfig and PutRuntimeManagementConfig, as well as support on existing Create/Get/Update function APIs.
* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Inference now supports P4de instance types.


1.26.54
=======

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.26.54'
__version__ = '1.26.55'


# The default Boto3 session; autoloaded when needed.
Expand Down
13 changes: 5 additions & 8 deletions docs/source/guide/resources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@ Resources
Overview
--------

.. warning::
The AWS Python SDK team is no longer planning to support the resources
interface in boto3. Requests for new changes involving resource models
will no longer be considered, and the resources interface won't be supported
in the next major version of the AWS SDK for Python. The AWS SDK teams are
striving to achieve more consistent functionality among SDKs, and implementing
customized abstractions in individual SDKs is not a sustainable solution going
forward. Future feature requests will need to be considered at the cross-SDK level.
.. note::
The AWS Python SDK team does not intend to add new features to the resources
interface in boto3. Existing interfaces will continue to operate during
boto3's lifecycle. Customers can find access to newer service features through
the client interface.

Resources represent an object-oriented interface to Amazon Web Services (AWS).
They provide a higher-level abstraction than the raw, low-level calls made by
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.29.54,<1.30.0
botocore>=1.29.55,<1.30.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.29.54,<1.30.0',
'botocore>=1.29.55,<1.30.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.6.0,<0.7.0',
]
Expand Down

0 comments on commit ebabf37

Please sign in to comment.