Skip to content

Commit 5320a2a

Browse files
committed
Launching the DynamoDB Enhanced Client
1 parent dd2cde9 commit 5320a2a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon DynamoDB Enhanced Client",
4+
"description": "The Amazon DynamoDB Enhanced Client is now generally available and provides a natural and intuitive interface for developers to integrate their applications with Amazon DynamoDB by means of an adaptive API that will map inputs and results to and from Java objects modeled by the application, rather than requiring the developers to implement that transformation themselves."
5+
}

services-custom/dynamodb-enhanced/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
Mid-level DynamoDB mapper/abstraction for Java using the v2 AWS SDK.
44

5-
Warning: This package is provided for preview and comment purposes only.
6-
It is not asserted to be stable or correct, and is subject to frequent
7-
breaking changes.
8-
95
## Getting Started
106
All the examples below use a fictional Customer class. This class is
117
completely made up and not part of this library. Any search or key

services-custom/dynamodb-enhanced/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<version>2.11.15-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>dynamodb-enhanced</artifactId>
27-
<version>${awsjavasdk.version}-PREVIEW</version>
27+
<version>${awsjavasdk.version}</version>
2828
<name>AWS Java SDK :: DynamoDB :: Enhanced Client</name>
2929
<url>https://aws.amazon.com/sdkforjava</url>
3030

test/sdk-benchmarks/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,7 @@
137137
<dependency>
138138
<groupId>software.amazon.awssdk</groupId>
139139
<artifactId>dynamodb-enhanced</artifactId>
140-
<!-- TODO: Remove '-PREVIEW' when the client is GA -->
141-
<version>${awsjavasdk.version}-PREVIEW</version>
140+
<version>${awsjavasdk.version}</version>
142141
</dependency>
143142
<dependency>
144143
<groupId>com.amazonaws</groupId>

test/tests-coverage-reporting/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
<dependency>
151151
<artifactId>dynamodb-enhanced</artifactId>
152152
<groupId>software.amazon.awssdk</groupId>
153-
<version>${awsjavasdk.version}-PREVIEW</version>
153+
<version>${awsjavasdk.version}</version>
154154
</dependency>
155155

156156
<!-- Need to explicitly add service modules to aggregate the tests coverage

0 commit comments

Comments
 (0)