Skip to content

Launching the DynamoDB Enhanced Client #1773

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "feature",
"category": "Amazon DynamoDB Enhanced Client",
"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."
}
4 changes: 0 additions & 4 deletions services-custom/dynamodb-enhanced/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

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

Warning: This package is provided for preview and comment purposes only.
It is not asserted to be stable or correct, and is subject to frequent
breaking changes.

## Getting Started
All the examples below use a fictional Customer class. This class is
completely made up and not part of this library. Any search or key
Expand Down
2 changes: 1 addition & 1 deletion services-custom/dynamodb-enhanced/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<version>2.11.15-SNAPSHOT</version>
</parent>
<artifactId>dynamodb-enhanced</artifactId>
<version>${awsjavasdk.version}-PREVIEW</version>
<version>${awsjavasdk.version}</version>
<name>AWS Java SDK :: DynamoDB :: Enhanced Client</name>
<url>https://aws.amazon.com/sdkforjava</url>

Expand Down
3 changes: 1 addition & 2 deletions test/sdk-benchmarks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>dynamodb-enhanced</artifactId>
<!-- TODO: Remove '-PREVIEW' when the client is GA -->
<version>${awsjavasdk.version}-PREVIEW</version>
<version>${awsjavasdk.version}</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand Down
2 changes: 1 addition & 1 deletion test/tests-coverage-reporting/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
<dependency>
<artifactId>dynamodb-enhanced</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>${awsjavasdk.version}-PREVIEW</version>
<version>${awsjavasdk.version}</version>
</dependency>

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