Skip to content

Commit f312e15

Browse files
authored
fix: AWS SDK Core is not a library (#238)
1 parent c87a1b0 commit f312e15

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

3-
## 3.0.0-preview-1 2023-06-08
3+
## 3.0.0-preview-2 2023-06-09
4+
5+
### Fix
6+
- The AWS SDK Core MUST NOT be depended on directly.
7+
8+
## 3.0.0-preview-1 2023-06-09
49

510
### Features
611
- Initial release of the AWS Database Encryption SDK.

DynamoDbEncryption/runtimes/java/build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group = "software.amazon.cryptography"
15-
version = "3.0.0-preview-1"
15+
version = "3.0.0-preview-2"
1616
description = "Aws Database Encryption Sdk for DynamoDb Java"
1717

1818
java {
@@ -75,7 +75,6 @@ dependencies {
7575
implementation(platform("software.amazon.awssdk:bom:2.19.1"))
7676
implementation("software.amazon.awssdk:dynamodb")
7777
implementation("software.amazon.awssdk:dynamodb-enhanced")
78-
implementation("software.amazon.awssdk:core:2.19.1")
7978
implementation("software.amazon.awssdk:kms")
8079

8180
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")

Examples/runtimes/java/DynamoDbEncryption/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ repositories {
5656
}
5757

5858
dependencies {
59-
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0-preview-1")
59+
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0-preview-2")
6060
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.0.0-preview-1")
6161

6262
implementation(platform("software.amazon.awssdk:bom:2.19.1"))

Examples/runtimes/java/Migration/DDBECToAWSDBE/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ repositories {
5656
}
5757

5858
dependencies {
59-
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0-preview-1")
59+
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0-preview-2")
6060
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.0.0-preview-1")
6161

6262
implementation(platform("software.amazon.awssdk:bom:2.19.1"))

Examples/runtimes/java/Migration/PlaintextToAWSDBE/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ repositories {
5656
}
5757

5858
dependencies {
59-
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0-preview-1")
59+
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0-preview-2")
6060
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.0.0-preview-1")
6161

6262
implementation(platform("software.amazon.awssdk:bom:2.19.1"))

SUPPORT_POLICY.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This table describes the current support status of each major version of the AWS
2121
- Current status
2222
- Next status
2323
- Next status date
24-
* - 3.0.0-preview-1
24+
* - 3.0.0-preview-x
2525
- Developer Preview
2626
-
2727
-

TestVectors/runtimes/java/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ dependencies {
7373
implementation("org.dafny:DafnyRuntime:4.0.0")
7474
implementation("software.amazon.smithy.dafny:conversion:0.1")
7575
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.0.0-preview-1")
76-
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0-preview-1")
76+
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0-preview-2")
7777
implementation("software.amazon.cryptography:TestAwsCryptographicMaterialProviders:1.0-SNAPSHOT")
7878

7979
implementation(platform("software.amazon.awssdk:bom:2.19.1"))

0 commit comments

Comments
 (0)