Upgrade guide
Migrate to v3 from v2¶
We strongly encourage you to migrate to v3. However, if you still need to upgrade from v1 to v2, you can find the upgrade guide.
We've made minimal breaking changes to make your transition to v3 as smooth as possible.
Quick summary¶
Area | Change | Code change required |
---|---|---|
Pydantic | We have removed support for Pydantic v1 | No |
Parser | We have replaced DynamoDBStreamModel AttributeValue with native Python types |
Yes |
Parser | We no longer export Pydantic objects from parser.pydantic . |
Yes |
Lambda layer | Lambda layers are now compiled according to the specific Python version and architecture | No |
Event Handler | We have deprecated the get_header_value function. |
Yes |
Batch Processor | @batch_processor and @async_batch_processor decorators are now deprecated |
Yes |
Event Source Data Classes | We have updated default values for optional fields. | Yes |
Parameters | The default cache TTL is now set to 5 minutes | No |
Parameters | The config parameter is deprecated in favor of boto_config |
Yes |
JMESPath Functions | The extract_data_from_envelope function is deprecated in favor of query |
Yes |
Types file | We have removed the type imports from the shared/types.py file |
Yes |
First Steps¶
Before you start, we suggest making a copy of your current working project or create a new branch with git.
- Upgrade Python to at least v3.8.
- Ensure you have the latest version via Lambda Layer or PyPi.
- Review the following sections to confirm if you need to make changes to your code.
Drop support for Pydantic v1¶
No code changes required
As of June 30, 2024, Pydantic v1 has reached its end-of-life, and we have discontinued support for this version. We now exclusively support Pydantic v2.
Use Pydantic v2 Migration Guide to migrate your custom Pydantic models to v2.
DynamoDBStreamModel in parser¶
This also applies if you're using DynamoDB BatchProcessor.
DynamoDBStreamModel
now returns native Python types when you access DynamoDB records through Keys
, NewImage
, and OldImage
attributes.
Previously, you'd receive a raw JSON and need to deserialize each item to the type you'd want for convenience, or to the type DynamoDB stored via get
method.
With this change, you can access data deserialized as stored in DynamoDB, and no longer need to recursively deserialize nested objects (Maps) if you had them.
Note
For a lossless conversion of DynamoDB Number
type, we follow AWS Python SDK (boto3) approach and convert to Decimal
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
|
Importing Pydantic objects¶
We have stopped exporting Pydantic objects directly from aws_lambda_powertools.utilities.parser.pydantic
. This change prevents customers from accidentally importing all of Pydantic, which could significantly slow down function startup times.
1 2 3 4 5 |
|
New AWS Lambda Layer ARNs¶
No code changes required
To give you better a better experience, we're now building Powertools for AWS Lambda (Python)'s Lambda layers for specific Python versions (3.8-3.13
) and architectures (x86_64
& arm64
).
This also allows us to include architecture-specific versions of both Pydantic v2 and AWS Encryption SDK and give you a more streamlined setup.
To take advantage of the new layers, you need to update your functions or deployment setup to include one of the new Lambda layer ARN from the table below:
Architecture | Python version | Layer ARN |
---|---|---|
x86_64 | 3.8 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python38-x86_64:{version} |
x86_64 | 3.9 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python39-x86_64:{version} |
x86_64 | 3.10 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python310-x86_64:{version} |
x86_64 | 3.11 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python311-x86_64:{version} |
x86_64 | 3.12 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python312-x86_64:{version} |
x86_64 | 3.13 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python313-x86_64:{version} |
arm64 | 3.8 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python38-arm64:{version} |
arm64 | 3.9 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python39-arm64:{version} |
arm64 | 3.10 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python310-arm64:{version} |
arm64 | 3.11 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python311-arm64:{version} |
arm64 | 3.12 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python312-arm64:{version} |
arm64 | 3.13 | arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python313-arm64:{version} |
Event Handler: headers are case-insensitive¶
According to the HTTP RFC, HTTP headers are case-insensitive. As a result, we have deprecated the get_header_value
function to align with this standard. Instead, we recommend using app.current_event.headers.get
to access header values directly
Consequently, the case_sensitive
parameter in this function no longer has any effect, as we now ensure consistent casing by normalizing headers for you. This function will be removed in a future release, and we encourage users to adopt the new method to access header values.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
Deprecated Batch Processing decorators¶
In v2, we designated @batch_processor
and @async_batch_processor
as legacy modes for using the Batch Processing utility.
In v3, these have been marked as deprecated. Continuing to use them will result in warnings in your IDE and during Lambda execution.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
|
Event source default values¶
We've modified the Event Source Data classes so that optional dictionaries and lists now return empty strings, dictionaries or lists instead of None
. This improvement simplifies your code by eliminating the need for conditional checks when accessing these fields, while maintaining backward compatibility with previous implementations.
We've applied this change broadly across various event source data classes, ensuring a more consistent and streamlined coding experience for you.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Parameters: default cache TTL updated to 5 minutes¶
No code changes required
We have updated the cache TTL from 5 seconds to 5 minutes to reduce the number of API calls to AWS, leading to improved performance and lower costs.
No code changes are necessary for this update; however, if you prefer the previous behavior, you can set the max_age
parameter back to 5 seconds.
Parameters: using the new boto_config parameter¶
In v2, you could use the config
parameter to modify the botocore Config session settings.
In v3, we renamed this parameter to boto_config
to standardize the name with other features, such as Idempotency, and introduced deprecation warnings for users still using config
.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Utilizing the new query function in JMESPath Functions¶
In v2, you could use the extract_data_from_envelope
function to search and extract data from dictionaries with JMESPath. This name was too generic and customers told us it was confusing.
In v3, we renamed this function to query
to align with similar frameworks in the ecosystem, and introduced deprecation warnings for users still using extract_data_from_envelope
.
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Importing types from typing and typing_annotations¶
We refactored our codebase to align with Python guidelines and eliminated the use of aws_lambda_powertools.shared.types
imports.
Instead, we now utilize types from the standard typing
library, which are compatible with Python versions 3.8 and above, or from typing_extensions
(included as a required dependency) for additional type support.
1 2 3 4 5 6 7 8 9 10 11 |
|