Skip to content

chore(CHANGELOG): 3.3.0 #778

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
Changelog
*********

3.3.0 -- 2024-08-05
===================

Deprecation
-----------
- 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 <https://cryptography.io/en/3.4.6/installation.html#supported-platforms>`_.

Feature
-----------
* Warn on Deprecated Python 3.7 usage
* Add Python 3.11 to CI
* Add Python 3.12 to CI

Maintenance
-----------
* Update requirements for boto3 (>=1.10.0) and cryptography (>=3.4.6)

3.2.0 -- 2021-12-19
===================

Expand Down
2 changes: 1 addition & 1 deletion SUPPORT_POLICY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ This table describes the current support status of each major version of the AWS
* - 3.x
- Generally Available
- Maintenance
- 2023-07-23
- 2024-08-05

.. _AWS SDKs and Tools Maintenance Policy: https://docs.aws.amazon.com/sdkref/latest/guide/maint-policy.html#version-life-cycle
2 changes: 1 addition & 1 deletion src/dynamodb_encryption_sdk/identifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from enum import Enum

__all__ = ("LOGGER_NAME", "CryptoAction", "EncryptionKeyType", "KeyEncodingType")
__version__ = "3.2.0"
__version__ = "3.3.0"

LOGGER_NAME = "dynamodb_encryption_sdk"
USER_AGENT_SUFFIX = "DynamodbEncryptionSdkPython/{}".format(__version__)
Expand Down