This is an automated email from the ASF dual-hosted git repository.

pjfanning 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 0423244c release notes for 1.3.0 (#514)
0423244c is described below

commit 0423244cdb0c2792013314883f434c26ab77fe6b
Author: PJ Fanning <[email protected]>
AuthorDate: Mon Jun 22 15:14:50 2026 +0100

    release notes for 1.3.0 (#514)
    
    * release notes for 1.3.0
    
    * Update releases-1.3.md
---
 .github/workflows/publish-1.3-docs.yml             | 70 ++++++++++++++++++++++
 docs/src/main/paradox/release-notes/index.md       |  1 +
 .../src/main/paradox/release-notes/releases-1.3.md | 10 ++++
 3 files changed, 81 insertions(+)

diff --git a/.github/workflows/publish-1.3-docs.yml 
b/.github/workflows/publish-1.3-docs.yml
new file mode 100644
index 00000000..78001128
--- /dev/null
+++ b/.github/workflows/publish-1.3-docs.yml
@@ -0,0 +1,70 @@
+name: Publish 1.3 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 
v6.0.2
+        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.3.x
+
+      - name: Setup Java 8
+        uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # 
v5.2.0
+        with:
+          distribution: temurin
+          java-version: 8
+
+      - name: Build Documentation
+        run: |-
+          sbt "set ThisBuild / version := \"1.3.0\"; 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/1.3.0/
+          mkdir -p target/nightly-docs/docs/pekko-persistence-jdbc/1.3/
+          cp -r docs/target/paradox/site/main/ 
target/nightly-docs/docs/pekko-persistence-jdbc/1.3.0/docs
+          cp -r docs/target/paradox/site/main/ 
target/nightly-docs/docs/pekko-persistence-jdbc/1.3/docs
+          rm -r docs/target/paradox/site/main/
+          cp -r target/scala-2.13/unidoc 
target/nightly-docs/docs/pekko-persistence-jdbc/1.3.0/api
+          cp -r target/scala-2.13/unidoc 
target/nightly-docs/docs/pekko-persistence-jdbc/1.3/api
+          rm -r target/scala-2.13/unidoc
+
+      - name: Upload 1.3.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/1.3.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.3 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/1.3 # 
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 f1b0d094..bf212bce 100644
--- a/docs/src/main/paradox/release-notes/index.md
+++ b/docs/src/main/paradox/release-notes/index.md
@@ -5,6 +5,7 @@
 @@@ index
 
 * [2.0 Milestone Releases](releases-2.0.md)
+* [1.3 Releases](releases-1.3.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-1.3.md 
b/docs/src/main/paradox/release-notes/releases-1.3.md
new file mode 100644
index 00000000..8f3688c2
--- /dev/null
+++ b/docs/src/main/paradox/release-notes/releases-1.3.md
@@ -0,0 +1,10 @@
+# Release Notes (1.3.x)
+
+## 1.3.0
+
+Release notes for Apache Pekko Persistence JDBC 1.3.0. See [GitHub 
Milestone](https://github.com/apache/pekko-persistence-jdbc/milestone/9?closed=1)
 for a fuller list of changes.
+
+### Bug Fix
+
+* Fix incorrect implementation of Durable State deleteObject(id, revision) 
([PR505](https://github.com/apache/pekko-persistence-jdbc/pull/505))
+* Emit all messages across sequence number gaps in messagesWithBatch) 
([PR517](https://github.com/apache/pekko-persistence-jdbc/pull/517))


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to