Skip to content

Commit c4e6524

Browse files
authored
chore(CHANGELOG): 3.3.0 (#778)
1 parent 4dd6e0b commit c4e6524

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.rst

+19
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22
Changelog
33
*********
44

5+
3.3.0 -- 2024-08-05
6+
===================
7+
8+
Deprecation
9+
-----------
10+
- The AWS DynamoDB Encryption Client for Python no longer supports Python 3.7 as of version 3.3
11+
- Only Python 3.8+ is supported.
12+
- 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>`_.
13+
14+
Feature
15+
-----------
16+
* Warn on Deprecated Python 3.7 usage
17+
* Add Python 3.11 to CI
18+
* Add Python 3.12 to CI
19+
20+
Maintenance
21+
-----------
22+
* Update requirements for boto3 (>=1.10.0) and cryptography (>=3.4.6)
23+
524
3.2.0 -- 2021-12-19
625
===================
726

SUPPORT_POLICY.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ This table describes the current support status of each major version of the AWS
3232
* - 3.x
3333
- Generally Available
3434
- Maintenance
35-
- 2023-07-23
35+
- 2024-08-05
3636

3737
.. _AWS SDKs and Tools Maintenance Policy: https://docs.aws.amazon.com/sdkref/latest/guide/maint-policy.html#version-life-cycle

src/dynamodb_encryption_sdk/identifiers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from enum import Enum
1515

1616
__all__ = ("LOGGER_NAME", "CryptoAction", "EncryptionKeyType", "KeyEncodingType")
17-
__version__ = "3.2.0"
17+
__version__ = "3.3.0"
1818

1919
LOGGER_NAME = "dynamodb_encryption_sdk"
2020
USER_AGENT_SUFFIX = "DynamodbEncryptionSdkPython/{}".format(__version__)

0 commit comments

Comments
 (0)