Skip to content

Commit aeb8a15

Browse files
Shubham ChaturvediShubham Chaturvedi
andauthored
chore: Mark 2.x as End-of-Support (#481)
* chore: Mark 2.x as End-of-Support * fix: tox dependency Co-authored-by: Shubham Chaturvedi <[email protected]>
1 parent 2019002 commit aeb8a15

File tree

12 files changed

+34
-15
lines changed

12 files changed

+34
-15
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
Changelog
33
*********
44

5+
2.1.1 -- 2022-12-19
6+
===================
7+
8+
Deprecation Announcement
9+
------------------------
10+
The AWS DynamoDB Encryption Client for Python Major Version 2 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
2.1.0 -- 2021-07-15
619
===================
720

SUPPORT_POLICY.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,13 @@ This table describes the current support status of each major version of the AWS
2222
- Next status
2323
- Next status date
2424
* - 1.x
25-
- Maintenance
2625
- End of Support
27-
- 2022-07-08
2826
* - 2.x
29-
- Generally Available
30-
- Maintenance
31-
- 2021-07-13
27+
- End of Support
28+
-
29+
-
3230
* - 3.x
3331
-
3432
- Generally Available
35-
- 2021-07-13
3633

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

ci-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tox
1+
tox < 4.0

codebuild/coverage/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ phases:
1010
python: latest
1111
build:
1212
commands:
13-
- pip install tox
13+
- pip install "tox < 4.0"
1414
- tox

codebuild/python3.7.yml

Lines changed: 1 addition & 1 deletion
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

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

codebuild/python3.9.yml

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

codebuild/release/prod-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
phases:
1111
install:
1212
commands:
13-
- pip install tox
13+
- pip install "tox < 4.0"
1414
- pip install --upgrade pip
1515
runtime-versions:
1616
python: latest

codebuild/release/test-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
phases:
1111
install:
1212
commands:
13-
- pip install tox
13+
- pip install "tox < 4.0"
1414
- pip install --upgrade pip
1515
runtime-versions:
1616
python: latest

codebuild/release/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
phases:
1616
install:
1717
commands:
18-
- pip install tox
18+
- pip install "tox < 4.0"
1919
runtime-versions:
2020
python: latest
2121
pre_build:

0 commit comments

Comments
 (0)