-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# Migration | ||
|
||
* There are no Apache Pekko Persistence JDBC releases yet | ||
* If you are looking to migrate from [Akka Persistence JDBC](https://doc.akka.io/docs/akka-persistence-jdbc/current/migration.html), you should upgrade to v5.1.x before attempting to migrate to Pekko's equivalent. | ||
* We will provide a more detailed migration guide for switching from Akka Persistence JDBC to Pekko Persistence JDBC but the Core [Pekko Migration page](https://pekko.apache.org/docs/pekko/current//project/migration-guides.html) can help, in the interim. | ||
* The [Pekko Migration Guide](https://pekko.apache.org/docs/pekko/current/project/migration-guides.html) is a good summary of the changes that you need to make when switching from Akka to Pekko. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Release Notes | ||
|
||
## 1.0.0 | ||
Apache Pekko Persistence JDBC 1.0.0 is based on Akka Persistence JDBC 5.1.0. Pekko came about as a result of Lightbend's decision to make future | ||
Akka releases under a [Business Software License](https://www.lightbend.com/blog/why-we-are-changing-the-license-for-akka), | ||
a license that is not compatible with Open Source usage. | ||
|
||
Apache Pekko has changed the package names, among other changes. The new packages begin with `org.apache.pekko.persistence.jdbc` instead of `akka.persistence.jdbc`. | ||
|
||
Config names have changed to use `pekko` instead of `akka` in their names. | ||
|
||
Users switching from Akka to Pekko should read our [Migration Guide](https://pekko.apache.org/docs/pekko/current/project/migration-guides.html). | ||
|
||
Generally, we have tried to make it as easy as possible to switch existing Akka based projects over to using Pekko. | ||
|
||
We have gone through the code base and have tried to properly acknowledge all third party source code in the | ||
Apache Pekko code base. If anyone believes that there are any instances of third party source code that is not | ||
properly acknowledged, please get in touch. | ||
|
||
### Bug Fixes | ||
We haven't had to fix any significant bugs that were in Akka Persistence JDBC 5.1.0. | ||
|
||
### Dependency Upgrades | ||
We have tried to limit the changes to third party dependencies that were used in Akka Persistence JDBC 5.1.0. These are some exceptions: | ||
|
||
* we updated some of the JDBC jars that we use in testing | ||
* postgresql and h2 are 2 examples where there have been recent security fixes |