Skip to content

Commit

Permalink
release notes for 1.1.0-M1 (#197)
Browse files Browse the repository at this point in the history
* release notes for 1.1.0-M1

* Update releases-1.0.md

* Update releases-1.1.md
  • Loading branch information
pjfanning committed Jun 11, 2024
1 parent 0cf1d6d commit c362170
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/main/paradox/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Apache Pekko Persistence JDBC plugin allows for using JDBC-compliant databas

* [Overview](overview.md)
* [Configuration](configuration.md)
* [Release Notes](release-notes.md)
* [Release Notes](release-notes/index.md)
* [Migration](migration.md)
* [Query](query.md)
* [Custom DAO](custom-dao.md)
Expand Down
10 changes: 10 additions & 0 deletions docs/src/main/paradox/release-notes/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Release Notes

@@toc { depth=1 }

@@@ index

* [1.1 Releases](releases-1.1.md)
* [1.0 Releases](releases-1.0.md)

@@@
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Release Notes
# Release Notes (1.0.x)

## 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
Expand Down
33 changes: 33 additions & 0 deletions docs/src/main/paradox/release-notes/releases-1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Release Notes (1.1.x)

## 1.1.0-M1

Release notes for Apache Pekko Persistence JDBC 1.1.0-M1. See [GitHub Milestone](https://github.com/apache/pekko-persistence-jdbc/milestone/1?closed=1) for fuller list of changes.
As with all milestone releases, this release is not recommended for production use - it is designed to allow users to try out the changes in a test environment.

### Bug Fixes

* DurableState, don't ignore revision in `deleteObject(persistenceId, revision)` ([PR156](https://github.com/apache/pekko-persistence-jdbc/pull/156))
* use new Source.queue to avoid memory leak ([PR175](https://github.com/apache/pekko-persistence-jdbc/pull/175))
* Issue with `tick` parameters in wrong order ([PR183](https://github.com/apache/pekko-persistence-jdbc/pull/183))

### Additions

* Scala 3 support
* Add Durable State support for Oracle and SQL Server (but not yet MySQL) ([PR158](https://github.com/apache/pekko-persistence-jdbc/pull/158))

### Changes

* improve journal deletion performance ([PR169](https://github.com/apache/pekko-persistence-jdbc/pull/169))
* avoid large offset query via limit windowing ([PR180](https://github.com/apache/pekko-persistence-jdbc/pull/180))

### Dependency Upgrades

* slick 3.5.1

We upgraded the JDBC jars for the various databases that we test with.
* postgresql 42.7
* mysql 8.4
* sql server 12.6
* oracle 23.4
* h2 2.2

0 comments on commit c362170

Please sign in to comment.