Skip to content

Commit a479aa8

Browse files
AWS Encryption SDK 3.0.1 Release -- 2024-06-12
## [3.0.1](v3.0.0...v3.0.1) (2024-06-12) ### Fixes * Add Locale.ROOT to String uppercase conversions ([#1880](#1880)) ([9a9950e](9a9950e)), closes [#1879](#1879) * Update DecryptionMaterials code to support legacy custom CMMs ([#2037](#2037)) ([8807d79](8807d79)) ### Maintenance * deprecate getMasterKeyIds() in CryptoResult ([#1976](#1976)) ([1890ebb](1890ebb)) * **deps:** bump bcprov-jdk18on from 1.77 to 1.78.1 ([#2032](#2032)) ([713ca11](713ca11)) * **deps:** udpate org.bouncycastle to bcprov-jdk18on ([#1891](#1891)) ([32a92a9](32a92a9)) * **deps:** update dependencies ([#1973](#1973)) ([800bd01](800bd01)) * **Examples:** Customize KMS Client ([#2001](#2001)) ([e94ee85](e94ee85)) * fix release script ([#1912](#1912)) ([57e8a0b](57e8a0b)) * **README:** update README.md ([#1940](#1940)) ([7a0899e](7a0899e)) * update node version in version step ([#1959](#1959)) ([905385d](905385d)) * Update SUPPORT_POLICY.rst ([#1924](#1924)) ([57e40b5](57e40b5))
1 parent 8807d79 commit a479aa8

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [3.0.1](https://github.com/aws/aws-encryption-sdk-java/compare/v3.0.0...v3.0.1) (2024-06-12)
4+
5+
### Fixes
6+
7+
* Add Locale.ROOT to String uppercase conversions ([#1880](https://github.com/aws/aws-encryption-sdk-java/issues/1880)) ([9a9950e](https://github.com/aws/aws-encryption-sdk-java/commit/9a9950e880a137ed75b6c9329cbb77cbcdae7ef8)), closes [#1879](https://github.com/aws/aws-encryption-sdk-java/issues/1879)
8+
* Update DecryptionMaterials code to support legacy custom CMMs ([#2037](https://github.com/aws/aws-encryption-sdk-java/issues/2037)) ([8807d79](https://github.com/aws/aws-encryption-sdk-java/commit/8807d79614394ce5a05a4f356e868470aa0b0f78))
9+
10+
### Maintenance
11+
12+
* deprecate getMasterKeyIds() in CryptoResult ([#1976](https://github.com/aws/aws-encryption-sdk-java/issues/1976)) ([1890ebb](https://github.com/aws/aws-encryption-sdk-java/commit/1890ebbd1baf40906f819a6b93ded8f936e20b50))
13+
* **deps:** bump bcprov-jdk18on from 1.77 to 1.78.1 ([#2032](https://github.com/aws/aws-encryption-sdk-java/issues/2032)) ([713ca11](https://github.com/aws/aws-encryption-sdk-java/commit/713ca11a3f3eaf6d8b8926bf29340d30cda35b4b))
14+
* **deps:** udpate org.bouncycastle to bcprov-jdk18on ([#1891](https://github.com/aws/aws-encryption-sdk-java/issues/1891)) ([32a92a9](https://github.com/aws/aws-encryption-sdk-java/commit/32a92a9333858cad1c40cebbc5cafc4637a81504))
15+
* **deps:** update dependencies ([#1973](https://github.com/aws/aws-encryption-sdk-java/issues/1973)) ([800bd01](https://github.com/aws/aws-encryption-sdk-java/commit/800bd0137c53f58bae2588945dab143a4c760224))
16+
* **Examples:** Customize KMS Client ([#2001](https://github.com/aws/aws-encryption-sdk-java/issues/2001)) ([e94ee85](https://github.com/aws/aws-encryption-sdk-java/commit/e94ee8538501f270138feab0a6138bed7ce640ea))
17+
* fix release script ([#1912](https://github.com/aws/aws-encryption-sdk-java/issues/1912)) ([57e8a0b](https://github.com/aws/aws-encryption-sdk-java/commit/57e8a0b603c542e708aab5d04e13c2c314ec6aa5))
18+
* **README:** update README.md ([#1940](https://github.com/aws/aws-encryption-sdk-java/issues/1940)) ([7a0899e](https://github.com/aws/aws-encryption-sdk-java/commit/7a0899e969b7b03ed73851fad44664d59d6b0bb5))
19+
* update node version in version step ([#1959](https://github.com/aws/aws-encryption-sdk-java/issues/1959)) ([905385d](https://github.com/aws/aws-encryption-sdk-java/commit/905385d790011e2402543c6eddef400350b1229d))
20+
* Update SUPPORT_POLICY.rst ([#1924](https://github.com/aws/aws-encryption-sdk-java/issues/1924)) ([57e40b5](https://github.com/aws/aws-encryption-sdk-java/commit/57e40b5788c80811bc3de972a48cb5b36940729d))
21+
322
## [3.0.0](https://github.com/aws/aws-encryption-sdk-java/compare/v2.4.1...v3.0.0) (2023-12-06)
423

524

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To use the AWS Encryption SDK for Java you must have:
3939
<dependency>
4040
<groupId>software.amazon.awssdk</groupId>
4141
<artifactId>bom</artifactId>
42-
<version>2.20.91</version>
42+
<version>3.0.1</version>
4343
<type>pom</type>
4444
<scope>import</scope>
4545
</dependency>
@@ -49,12 +49,12 @@ To use the AWS Encryption SDK for Java you must have:
4949
<dependency>
5050
<groupId>com.amazonaws</groupId>
5151
<artifactId>aws-encryption-sdk-java</artifactId>
52-
<version>3.0.0</version>
52+
<version>3.0.1</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>software.amazon.cryptography</groupId>
5656
<artifactId>aws-cryptographic-material-providers</artifactId>
57-
<version>1.0.2</version>
57+
<version>3.0.1</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>software.amazon.awssdk</groupId>
@@ -68,7 +68,7 @@ To use the AWS Encryption SDK for Java you must have:
6868
<dependency>
6969
<groupId>com.amazonaws</groupId>
7070
<artifactId>aws-java-sdk</artifactId>
71-
<version>1.12.394</version>
71+
<version>3.0.1</version>
7272
<optional>true</optional>
7373
</dependency>
7474
</dependencies>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-encryption-sdk-java</artifactId>
7-
<version>3.0.0</version>
7+
<version>3.0.1</version>
88
<packaging>jar</packaging>
99

1010
<name>aws-encryption-sdk-java</name>

0 commit comments

Comments
 (0)