Skip to content

Commit 5ce26f3

Browse files
Shubham ChaturvediShubham Chaturvedi
Shubham Chaturvedi
and
Shubham Chaturvedi
authored
chore: Mark 1.x as End-of-Support (#480)
* chore: Mark 1.x as End-of-Support * fix: pin tox and flake8 dependencies Co-authored-by: Shubham Chaturvedi <[email protected]>
1 parent b55e8ed commit 5ce26f3

File tree

7 files changed

+29
-7
lines changed

7 files changed

+29
-7
lines changed

CHANGELOG.rst

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

5+
1.3.1 -- 2022-12-19
6+
===================
7+
8+
Deprecation Announcement
9+
------------------------
10+
The AWS DynamoDB Encryption Client for Python Major Version 1 is End of Support.
11+
It will no longer receive security updates or bug fixes.
12+
Consider updating to the latest version of the AWS DynamoDB Encryption Client for Python.
13+
14+
Maintenance
15+
------------------------
16+
* Emit Deprecation Warning on library initialization
17+
518
1.3.0 -- 2021-02-04
619
===================
720
Adds the CachingMostRecentProvider and deprecates MostRecentProvider.

ci-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tox
1+
tox < 4.0

codebuild/python3.7.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ phases:
2828
# The choice of versions should be reviewed.
2929
- pyenv install 3.7.9
3030
- pyenv local 3.7.9
31-
- pip install tox tox-pyenv
31+
- pip install "tox < 4.0"
3232
- tox

codebuild/python3.8.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ phases:
1616
commands:
1717
- pyenv install 3.8.6
1818
- pyenv local 3.8.6
19-
- pip install tox tox-pyenv
19+
- pip install "tox < 4.0"
2020
- tox

src/dynamodb_encryption_sdk/__init__.py

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# ANY KIND, either express or implied. See the License for the specific
1212
# language governing permissions and limitations under the License.
1313
"""DynamoDB Encryption Client."""
14+
import warnings
15+
1416
from dynamodb_encryption_sdk.encrypted.client import EncryptedClient
1517
from dynamodb_encryption_sdk.encrypted.item import (
1618
decrypt_dynamodb_item,
@@ -32,3 +34,10 @@
3234
"EncryptedTable",
3335
"__version__",
3436
)
37+
38+
warnings.warn(
39+
"This major version (1.x) of the AWS DynamoDB Encryption Client for Python has reached End-of-Support.\n"
40+
+ "It will no longer receive security updates or bug fixes.\n"
41+
+ "Consider updating to the latest version of the AWS DynamoDB Encryption Client.",
42+
DeprecationWarning,
43+
)

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__ = "1.3.0"
17+
__version__ = "1.3.1"
1818

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

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ commands =
176176
[testenv:flake8]
177177
basepython = python3
178178
deps =
179-
flake8
180-
flake8-docstrings
181-
flake8-isort
179+
flake8==4.0.1
180+
flake8-docstrings==1.6.0
181+
flake8-isort==4.1.1
182182
# https://github.com/PyCQA/pydocstyle/issues/375
183183
pydocstyle<4.0.0
184184
# https://github.com/JBKahn/flake8-print/pull/30

0 commit comments

Comments
 (0)