This is an automated email from the ASF dual-hosted git repository.
pjfanning pushed a commit to branch 1.2.x
in repository https://gitbox.apache.org/repos/asf/pekko-persistence-r2dbc.git
The following commit(s) were added to refs/heads/1.2.x by this push:
new 385bd3f release notes for 1.2.0 (#424) (#429)
385bd3f is described below
commit 385bd3f658e60a90fd9a483bf21f8e752e8e960f
Author: PJ Fanning <[email protected]>
AuthorDate: Sat Jun 27 02:59:24 2026 +0100
release notes for 1.2.0 (#424) (#429)
---
.github/workflows/publish-1.2-docs.yml | 73 ++++++++++++++++++++++
docs/src/main/paradox/release-notes/index.md | 1 +
.../src/main/paradox/release-notes/releases-1.2.md | 11 ++++
3 files changed, 85 insertions(+)
diff --git a/.github/workflows/publish-1.2-docs.yml
b/.github/workflows/publish-1.2-docs.yml
new file mode 100644
index 0000000..793a522
--- /dev/null
+++ b/.github/workflows/publish-1.2-docs.yml
@@ -0,0 +1,73 @@
+name: Publish 1.2 docs
+
+on:
+ workflow_dispatch:
+
+jobs:
+ publish-docs:
+ if: github.repository == 'apache/pekko-persistence-r2dbc'
+ name: Publish 1.2 Docs
+ runs-on: ubuntu-22.04
+ env:
+ JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M
-Dfile.encoding=UTF-8
+ steps:
+ - name: Checkout
+ uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #
v7.0.0
+ 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
+ ref: 1.2.x
+
+ - name: Setup Java 8
+ uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287 #
v5.3.0
+ with:
+ distribution: temurin
+ java-version: 8
+
+ - name: Install sbt
+ uses: sbt/setup-sbt@af116cce31c00823d3903ce687f9cda3a4f19f1b # v1.2.1
+
+ - name: Install Graphviz
+ run: |-
+ sudo apt-get install graphviz
+
+ - name: Build 1.2.x Documentation
+ run: |-
+ sbt "set ThisBuild / version := \"1.2.0\"; docs/paradox; unidoc"
+
+ # Create directory structure upfront since rsync does not create
intermediate directories otherwise
+ - name: Create 1.2.x directory structure
+ run: |-
+ mkdir -p target/nightly-docs/docs/pekko-persistence-r2dbc/1.2.0/
+ mkdir -p target/nightly-docs/docs/pekko-persistence-r2dbc/1.2/
+ cp -r docs/target/paradox/site/main/
target/nightly-docs/docs/pekko-persistence-r2dbc/1.2.0/docs
+ cp -r docs/target/paradox/site/main/
target/nightly-docs/docs/pekko-persistence-r2dbc/1.2/docs
+ rm -r docs/target/paradox/site/main/
+ cp -r docs/target/scala-2.13/unidoc
target/nightly-docs/docs/pekko-persistence-r2dbc/1.2.0/api
+ cp -r docs/target/scala-2.13/unidoc
target/nightly-docs/docs/pekko-persistence-r2dbc/1.2/api
+ rm -r docs/target/scala-2.13/unidoc
+
+ - name: Upload 1.2.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-r2dbc/1.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 }}
+
+ - name: Upload 1.2 docs
+ uses: ./.github/actions/sync-nightlies
+ with:
+ upload: true
+ switches: --archive --compress --update --delete --progress
--relative
+ local_path: target/nightly-docs/./docs/pekko-persistence-r2dbc/1.2 #
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 c81b99e..bd95457 100644
--- a/docs/src/main/paradox/release-notes/index.md
+++ b/docs/src/main/paradox/release-notes/index.md
@@ -4,6 +4,7 @@
@@@ index
+* [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-1.2.md
b/docs/src/main/paradox/release-notes/releases-1.2.md
new file mode 100644
index 0000000..408b74c
--- /dev/null
+++ b/docs/src/main/paradox/release-notes/releases-1.2.md
@@ -0,0 +1,11 @@
+# Release Notes (1.2.x)
+
+Apache Pekko Persistence R2DBC 1.2.x releases support Java 8 and above.
+
+## 1.2.0
+
+Release notes for Apache Pekko Persistence R2DBC 1.2.0. See [GitHub Milestone
for
1.2.0](https://github.com/apache/pekko-persistence-r2dbc/milestone/5?closed=1)
for a fuller list of changes.
+
+### Bug Fix
+
+* Fix incorrect implementation of Durable State deleteObject(id, revision)
([PR384](https://github.com/apache/pekko-persistence-r2dbc/pull/384))
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]