File tree Expand file tree Collapse file tree 5 files changed +29
-9
lines changed Expand file tree Collapse file tree 5 files changed +29
-9
lines changed Original file line number Diff line number Diff line change 2
2
Changelog
3
3
*********
4
4
5
+ 2.5.1 -- 2022-08-30
6
+ ===================
7
+
8
+ Deprecation Announcement
9
+ ------------------------
10
+ The AWS Encryption SDK 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 Encryption SDK for Python.
13
+
14
+ Maintenance
15
+ ------------------------
16
+ * Emit Deprecation Warning on library initialization
17
+
5
18
2.5.0 -- 2022-06-20
6
19
===================
7
20
Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ This table describes the current support status of each major version of the AWS
22
22
- Next status
23
23
- Next status date
24
24
* - 1.x
25
- - Maintenance
26
25
- End of Support
27
- - 2022-06-30
26
+ -
27
+ -
28
28
* - 2.x
29
- - General Availability
30
- - Maintenance
31
- - 2021-07-01
32
- * - 3.x
29
+ - End of Support
30
+ -
33
31
-
32
+ * - 3.x
34
33
- General Availability
35
- - 2021-07-01
34
+ -
35
+ -
36
36
37
37
.. _AWS SDKs and Tools Maintenance Policy : http://docs.aws.amazon.com/sdkref/latest/guide/maint-policy.html#version-life-cycle
Original file line number Diff line number Diff line change 36
36
StreamEncryptor ,
37
37
)
38
38
39
+ warnings .warn (
40
+ "This major version (2.x) of the AWS Encryption SDK for Python has reached End-of-Support.\n "
41
+ + "It will no longer receive security updates or bug fixes.\n "
42
+ + "Consider updating to the latest version of the AWS Encryption SDK." ,
43
+ DeprecationWarning ,
44
+ )
45
+
39
46
40
47
@attr .s (hash = True )
41
48
class EncryptionSDKClientConfig (object ):
Original file line number Diff line number Diff line change 27
27
# We only actually need these imports when running the mypy checks
28
28
pass
29
29
30
- __version__ = "2.5.0 "
30
+ __version__ = "2.5.1 "
31
31
USER_AGENT_SUFFIX = "AwsEncryptionSdkPython/{}" .format (__version__ )
32
32
33
33
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ deps = {[testenv:isort]deps}
247
247
commands = {[testenv:isort]commands} -c
248
248
249
249
[testenv:autoformat]
250
- basepython = python3
250
+ basepython = python3.7
251
251
deps =
252
252
{[testenv:blacken]deps}
253
253
{[testenv:isort]deps}
You can’t perform that action at this time.
0 commit comments