diff --git a/CHANGELOG.md b/CHANGELOG.md index db605ab..8cd3b63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,8 +12,8 @@ v 1.1.2 (v 1.2.0) This was supposed to be released as `v1.2.0` but was released as `v1.1.2` to maven. Sorry about that! -* Use DynamoDB Query during journal replay - https://github.com/akka/akka-persistence-dynamodb/issues/106 -* Correct issue [#98](https://github.com/akka/akka-persistence-dynamodb/issues/98) +* Use DynamoDB Query during journal replay - https://github.com/akka/akka-persistence-dynamodb-1.x/issues/106 +* Correct issue [#98](https://github.com/akka/akka-persistence-dynamodb-1.x/issues/98) Please see [fixes in `reference.conf`](blob/master/src/main/resources/reference.conf) for a workaround for systems impacted by this issues. * Depends on Akka 2.5. * Adds Support for the Async Serializers - which enables the use of the plugin with Lightbend extensions [GDPR Addons](https://developer.lightbend.com/docs/akka-commercial-addons/current/gdpr/index.html) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 99e8808..154e187 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,8 +3,7 @@ ## Infrastructure * [Typesafe Contributor License Agreement](http://www.typesafe.com/contribute/cla) -* [Issue Tracker](https://github.com/akka/akka-persistence-dynamodb/issues) -* [Travis CI](https://travis-ci.org/akka/akka-persistence-dynamodb) +* [Issue Tracker](https://github.com/akka/akka-persistence-dynamodb-1.x/issues) # Typesafe Project & Developer Guidelines diff --git a/README.md b/README.md index 6bde46a..f5f3c8d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ DynamoDBJournal for Akka Persistence ==================================== +**Version 2.x of the DynamoDB plugin is developed and maintained in https://github.com/akka/akka-persistence-dynamodb.** + A replicated [Akka Persistence](http://doc.akka.io/docs/akka/2.4.0/scala/persistence.html) journal backed by [Amazon DynamoDB](http://aws.amazon.com/dynamodb/). @@ -51,7 +53,7 @@ my-dynamodb-journal { # and add some overrides } ~~~ -For details on the endpoint URL please refer to the [DynamoDB documentation](http://docs.aws.amazon.com/general/latest/gr/rande.html#ddb_region). There are many more settings that can be used for fine-tuning and adapting this journal plugin to your use-case, please refer to the [reference.conf](https://github.com/akka/akka-persistence-dynamodb/blob/master/src/main/resources/reference.conf) file. +For details on the endpoint URL please refer to the [DynamoDB documentation](http://docs.aws.amazon.com/general/latest/gr/rande.html#ddb_region). There are many more settings that can be used for fine-tuning and adapting this journal plugin to your use-case, please refer to the [reference.conf](https://github.com/akka/akka-persistence-dynamodb-1.x/blob/master/src/main/resources/reference.conf) file. Before you can use these settings you will have to create a table, e.g. using the AWS console, with the following schema: @@ -226,4 +228,5 @@ Credits Support ------- -This project is *community maintained*. The Lightbend subscription does not cover support for this project. +The 1.x version of this project is *not maintained*. The Lightbend subscription does not cover support for this project. +Version 2.x of the DynamoDB plugin is developed and maintained in https://github.com/akka/akka-persistence-dynamodb. diff --git a/project/Publish.scala b/project/Publish.scala index 9df2352..fea2f35 100644 --- a/project/Publish.scala +++ b/project/Publish.scala @@ -24,7 +24,7 @@ object Publish extends AutoPlugin { organizationName := "Typesafe Inc.", organizationHomepage := Some(url("http://www.typesafe.com")), licenses := Seq(("Apache License, Version 2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))), - homepage := Some(url("https://github.com/akka/akka-persistence-dynamodb")), + homepage := Some(url("https://github.com/akka/akka-persistence-dynamodb-1.x")), publishMavenStyle := true, pomIncludeRepository := { x => false }, defaultPublishTo := crossTarget.value / "repository") @@ -35,7 +35,7 @@ object Publish extends AutoPlugin { contributors Contributors akka-dev@googlegroups.com - https://github.com/akka/akka-persistence-dynamodb/graphs/contributors + https://github.com/akka/akka-persistence-dynamodb-1.x/graphs/contributors }