- The AWS DynamoDB Encryption Client for Python no longer supports Python 3.7 as of version 3.3 - Only Python 3.8+ is supported.
- We no longer support OpenSSL 1.0.1 or 1.0.2, as per cryptography documentation.
- Warn on Deprecated Python 3.7 usage
- Add Python 3.11 to CI
- Add Python 3.12 to CI
- Update requirements for boto3 (>=1.10.0) and cryptography (>=3.4.6)
The AWS DynamoDB Encryption Client for Python no longer supports Python 3.6 as of version 3.2; only Python 3.7+ is supported.
- Warn on Deprecated Python 3.6 usage
The AWS DynamoDB Encryption Client for Python no longer supports Python 3.5 as of version 3.1; only Python 3.6+ is supported. Customers using Python 3.5 can still use the 2.x line of the AWS DynamoDB Encryption Client for Python, which will continue to receive security updates, in accordance with our Support Policy.
- Warn on Deprecated Python usage #368
- Add Python 3.10 to CI
- Remove Python 3.5 from testing
The AWS DynamoDB Encryption Client for Python no longer supports Python 2 or Python 3.4 as of major version 3.x; only Python 3.5+ is supported. Customers using Python 2 or Python 3.4 can still use the 2.x line of the DynamoDB Encryption Client, which will continue to receive security updates for the next 12 months, in accordance with our Support Policy.
The AWS DynamoDB Encryption Client for Python is discontinuing support for Python 2. Future major versions of this library will drop support for Python 2 and begin to adopt changes that are known to break Python 2.
Support for Python 3.4 will be removed at the same time. Moving forward, we will support Python 3.5+.
Security updates will still be available for the DynamoDB Encryption Client 2.x line for the next 12 months, in accordance with our Support Policy.
Removes MostRecentProvider. MostRecentProvider is replaced by CachingMostRecentProvider as of 1.3.0.
Adds the CachingMostRecentProvider and deprecates MostRecentProvider.
Time-based key reauthorization logic in MostRecentProvider did not reauthorize the use of the key after key usage permissions were changed at the key provider (for example AWS Key Management Service). This created the potential for keys to be used in the DynamoDB Encryption Client after permissions to do so were revoked.
CachingMostRecentProvider replaces MostRecentProvider and provides a cache entry TTL to reauthorize the key with the key provider.
MostRecentProvider is now deprecated, and is removed in 2.0.0. See https://docs.aws.amazon.com/database-encryption-sdk/latest/devguide/most-recent-provider.html#mrp-versions for more details.
- Fix :class:`AwsKmsCryptographicMaterialsProvider` regional clients override bug #124 NOTE: It is possible that this is a breaking change for you, depending on how you are re-using any custom botocore sessions that you provide to AwsKmsCryptographicMaterialsProvider.
- Remove
attributes
attribute from :class:`EncryptionContext`str
andrepr
values. #127
- Fix :class:`EncryptedPaginator` to successfully decrypt when using :class:`AwsKmsCryptographicMaterialsProvider` #118
- Batch write operations via the high-level helper clients now return plaintext items in
UnprocessedItems
. - #107
- Batch write operations via the high-level helper clients now return plaintext items in
- Fix :class:`MostRecentProvider` cache reuse bug. #105
- Fix :class:`MostRecentProvider` bug in providing invalid cached results. #102
- Move the
aws-dynamodb-encryption-python
repository fromawslabs
toaws
.
- Fix :class:`MostRecentProvider` behavior when lock cannot be acquired. #72
- Fix :class:`MostRecentProvider` lock acquisition for Python 2.7. #74
- Fix :class:`TableInfo` secondary index storage. #75
- Finish fixing
MANIFEST.in
.
- Fill out
MANIFEST.in
to correctly include necessary files in source build.
- Add version convenience import to base namespace.
- Initial public release