This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-persistence-jdbc.git
The following commit(s) were added to refs/heads/main by this push:
new 2bc78d4 release notes for 2.0.0-M1 (#428)
2bc78d4 is described below
commit 2bc78d45d3869f027bd8910b6fd55e9da326c435
Author: PJ Fanning <[email protected]>
AuthorDate: Sat Jan 31 12:03:56 2026 +0100
release notes for 2.0.0-M1 (#428)
---
.github/workflows/publish-2.0-docs.yml | 69 ++++++++++++++++++++++
docs/src/main/paradox/release-notes/index.md | 1 +
.../src/main/paradox/release-notes/releases-2.0.md | 16 +++++
3 files changed, 86 insertions(+)
diff --git a/.github/workflows/publish-2.0-docs.yml
b/.github/workflows/publish-2.0-docs.yml
new file mode 100644
index 0000000..694bba3
--- /dev/null
+++ b/.github/workflows/publish-2.0-docs.yml
@@ -0,0 +1,69 @@
+name: Publish 2.0 docs
+
+permissions:
+ contents: read
+
+on:
+ workflow_dispatch:
+
+jobs:
+ publish-docs:
+ # runs on main repo only
+ if: github.repository == 'apache/pekko-persistence-jdbc'
+ name: Publish
+ runs-on: ubuntu-22.04
+ env:
+ JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M
-Dfile.encoding=UTF-8
+ steps:
+ - name: Checkout
+ uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 #
v6.0.1
+ with:
+ # we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
+ fetch-depth: 0
+ fetch-tags: true
+
+ - name: Setup Java 8
+ uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e #
v5.1.0
+ with:
+ distribution: temurin
+ java-version: 8
+
+ - name: Build Documentation
+ run: |-
+ sbt "set ThisBuild / version := \"2.0.0-M1\"; docs/paradox; unidoc"
+
+ # Create directory structure upfront since rsync does not create
intermediate directories otherwise
+ - name: Create directory structure
+ run: |-
+ mkdir -p target/nightly-docs/docs/pekko-persistence-jdbc/2.0.0-M1/
+ mkdir -p target/nightly-docs/docs/pekko-persistence-jdbc/2.0/
+ cp -r docs/target/paradox/site/main/
target/nightly-docs/docs/pekko-persistence-jdbc/2.0.0-M1/docs
+ cp -r docs/target/paradox/site/main/
target/nightly-docs/docs/pekko-persistence-jdbc/2.0/docs
+ rm -r docs/target/paradox/site/main/
+ cp -r target/scala-2.13/unidoc
target/nightly-docs/docs/pekko-persistence-jdbc/2.0.0-M1/api
+ cp -r target/scala-2.13/unidoc
target/nightly-docs/docs/pekko-persistence-jdbc/2.0/api
+ rm -r target/scala-2.13/unidoc
+
+ - name: Upload 2.0.x docs
+ uses: ./.github/actions/sync-nightlies
+ with:
+ upload: true
+ switches: --archive --compress --update --delete --progress
--relative
+ local_path:
target/nightly-docs/./docs/pekko-persistence-jdbc/2.0.0-M1 # The intermediate
dot is to show `--relative` which paths to operate on
+ remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko/
+ remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
+ remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}
+ remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }}
+ remote_key: ${{ secrets.NIGHTLIES_RSYNC_KEY }}
+
+ - name: Upload 2.0 docs
+ uses: ./.github/actions/sync-nightlies
+ with:
+ upload: true
+ switches: --archive --compress --update --delete --progress
--relative
+ local_path: target/nightly-docs/./docs/pekko-persistence-jdbc/2.0 #
The intermediate dot is to show `--relative` which paths to operate on
+ remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko/
+ remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
+ remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}
+ remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }}
+ remote_key: ${{ secrets.NIGHTLIES_RSYNC_KEY }}
diff --git a/docs/src/main/paradox/release-notes/index.md
b/docs/src/main/paradox/release-notes/index.md
index bd95457..f1b0d09 100644
--- a/docs/src/main/paradox/release-notes/index.md
+++ b/docs/src/main/paradox/release-notes/index.md
@@ -4,6 +4,7 @@
@@@ index
+* [2.0 Milestone Releases](releases-2.0.md)
* [1.2 Releases](releases-1.2.md)
* [1.1 Releases](releases-1.1.md)
* [1.0 Releases](releases-1.0.md)
diff --git a/docs/src/main/paradox/release-notes/releases-2.0.md
b/docs/src/main/paradox/release-notes/releases-2.0.md
new file mode 100644
index 0000000..32aeea4
--- /dev/null
+++ b/docs/src/main/paradox/release-notes/releases-2.0.md
@@ -0,0 +1,16 @@
+# Release Notes (2.0.x)
+
+## 2.0.0-M1
+
+Release notes for Apache Pekko Persistence JDBC 2.0.0-M1. See [GitHub
Milestone](https://github.com/apache/pekko-persistence-jdbc/milestone/7?closed=1)
for a fuller list of changes.
+
+This is a milestone release and is aimed at testing this new major version
+by early adopters. This is experimental. This release should not be used in
production.
+
+### Main changes
+
+* Pekko 2.0.0-M1 is the new minimum Pekko version
+* Java 17 is the new minimum JRE version
+* Scala 2.12 support dropped
+* A lot of deprecated code removed
+* Slick 3.6.1
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]