Skip to content

Releases: aws/aws-encryption-sdk-python

4.0.0 -- 2024-11-13

13 Nov 22:16
242d974
Compare
Choose a tag to compare

Features

Breaking Changes

  • The MPL introduces the Required Encryption Context Cryptographic Materials Manager
    ("required EC CMM") as a new construct for protecting your data.
    On encrypt, the required EC CMM will use specific configured
    encryption context key-value pairs to calculate the message signature,
    but will not store those pairs in the ESDK message.
    On decrypt, decryptors must supply these same pairs that were used when encrypting the message.
    All messages that have been encrypted with versions of the ESDK <4.0.0 are forward compatible with this change.
    However, messages that are constructed with the required EC CMM are not backward compatible with ESDK <4.0.0,
    as no version of ESDK <4.0.0 supports reading messages encrypted with the required EC CMM.
    A message that is encrypted with the required EC CMM from the MPL must be decrypted with a CMM from the MPL.

Fixes

  • fix: MKPs attempt to decrypt with remaining keys if a preceding raw RSA key failed to decrypt (#707)

3.3.0 -- 2024-05-21

21 May 23:04
e55db0a
Compare
Choose a tag to compare

Deprecation

The AWS Encryption SDK for Python no longer supports Python 3.7
as of version 3.3; only Python 3.8+ is supported.

Fixes

  • fix: Handle errors when decrypting multiple EDKs with raw RSA MKPs (#672 (#672))
  • chore: Updated description of decrypt() usage in src/aws_encryption_sdk/init.py (#660 (#660))
  • fix(CI): removed appveyor.yml (#668 (#668))
  • fix(CI): updated ci_test-vector-handler.yaml and ci_tests.yaml (#665 (#665))

Maintenance

  • feat: remove Python3.7 support (#648 (#648))
  • chore: Update copyright headers (#677 (#677))
  • chore(CFN): Changes for MPL TestVectors (#653 (#653))

3.2.0 -- 2024-03-18

18 Mar 22:14
9f6d7e4
Compare
Choose a tag to compare

Features

Fixes

Maintenance

2.5.1 -- 2022-08-30

30 Aug 19:59
a5d1a90
Compare
Choose a tag to compare

Deprecation Announcement

The AWS Encryption SDK for Python Major Version 2 is End of Support.
It will no longer receive security updates or bug fixes.
Consider updating to the latest version of the AWS Encryption SDK for Python.

Maintenance

  • Emit Deprecation Warning on library initialization
  • Update cryptography range to greater than or equal to 2.5.0 less than 37

1.10.1 -- 2022-08-30

30 Aug 19:42
c220d57
Compare
Choose a tag to compare

Deprecation Announcement

The AWS Encryption SDK for Python Major Version 1 is End of Support.
It will no longer receive security updates or bug fixes.
Consider updating to the latest version of the AWS Encryption SDK for Python.

Maintenance

  • Emit Deprecation Warning on library initialization

2.5.0 -- 2022-06-21

21 Jun 20:44
77c2d88
Compare
Choose a tag to compare

Maintenance

  • Pin cryptography to last version that supports Python2

1.10.0 -- 2022-06-21

21 Jun 20:50
c2f0c75
Compare
Choose a tag to compare

Maintenance

  • Pin cryptography to last version that supports Python2

3.1.1 -- 2022-06-21

21 Jun 19:18
dcb5ee4
Compare
Choose a tag to compare

Maintenance

  • Replace deprecated cryptography verify_interface with isinstance #467

3.1.0 -- 2021-11-10

11 Nov 00:17
Compare
Choose a tag to compare

Deprecation

The AWS Encryption SDK for Python no longer supports Python 3.5
as of version 3.1; only Python 3.6+ is supported. Customers using
Python 3.5 can still use the 2.x line of the AWS Encryption SDK for Python,
which will continue to receive security updates, in accordance
with our Support Policy.

Feature

  • Warn on Deprecated Python usage
    #368
  • Add Python 3.10 to CI
  • Remove Python 3.5 from testing

3.0.0 -- 2021-07-01

01 Jul 22:42
40fd1e8
Compare
Choose a tag to compare

Deprecation

The AWS Encryption SDK for Python no longer supports Python 2 or Python 3.4
as of major version 3.x; only Python 3.5+ is supported. Customers using Python 2
or Python 3.4 can still use the 2.x line of the AWS Encryption SDK for Python,
which will continue to receive security updates for the next 12 months, in accordance
with our Support Policy.

Maintenance

  • Move away from deprecated cryptography int_from_bytes #355.