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-connectors-kafka.git


The following commit(s) were added to refs/heads/main by this push:
     new 8193b3bb release notes for 1.2.0 (#638)
8193b3bb is described below

commit 8193b3bb7ff52bf7d5559dac4ae519c9dbab3067
Author: PJ Fanning <[email protected]>
AuthorDate: Fri Aug 21 23:28:25 2026 +0100

    release notes for 1.2.0 (#638)
---
 .github/workflows/publish-1.2-docs.yml             | 68 ++++++++++++++++++++++
 docs/src/main/paradox/release-notes/index.md       |  1 +
 .../src/main/paradox/release-notes/releases-1.2.md | 13 +++++
 3 files changed, 82 insertions(+)

diff --git a/.github/workflows/publish-1.2-docs.yml 
b/.github/workflows/publish-1.2-docs.yml
new file mode 100644
index 00000000..7cdeb1aa
--- /dev/null
+++ b/.github/workflows/publish-1.2-docs.yml
@@ -0,0 +1,68 @@
+name: Publish 1.2 docs
+
+on:
+  workflow_dispatch:
+
+jobs:
+  publish-docs:
+    name: Publish documentation to nightlies.apache.org
+    runs-on: ubuntu-22.04
+    if: github.repository == 'apache/pekko-connectors-kafka'
+    steps:
+      - name: Checkout
+        uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # 
v7.0.1
+        with:
+          fetch-depth: 0
+          fetch-tags: true
+          ref: 1.2.x
+
+      - name: Setup Java 8
+        uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # 
v5.7.0
+        with:
+          distribution: temurin
+          java-version: 8
+
+      - name: Install sbt
+        uses: sbt/setup-sbt@8feba82adc7f01ddcf8165b86f778bdb5b82cebc # v1.5.7
+
+      - name: Build Documentation
+        run: |-
+          sbt "set ThisBuild / version := \"1.2.0\"; docs/paradox; unidoc"
+        env:
+          JAVA_OPTS: "-verbose:gc -Xmx4g"
+
+      # Create directory structure upfront since rsync does not create 
intermediate directories otherwise
+      - name: Create directory structure
+        run: |-
+          mkdir -p target/nightly-docs/docs/pekko-connectors-kafka/1.2.0/
+          mkdir -p target/nightly-docs/docs/pekko-connectors-kafka/1.2/
+          cp -r docs/target/paradox/site/main/ 
target/nightly-docs/docs/pekko-connectors-kafka/1.2.0/docs
+          cp -r docs/target/paradox/site/main/ 
target/nightly-docs/docs/pekko-connectors-kafka/1.2/docs
+          rm -r docs/target/paradox/site/main/
+          cp -r target/scala-2.13/unidoc 
target/nightly-docs/docs/pekko-connectors-kafka/1.2.0/api
+          cp -r target/scala-2.13/unidoc 
target/nightly-docs/docs/pekko-connectors-kafka/1.2/api
+          rm -r target/scala-2.13/unidoc
+
+      - name: Upload 1.2.x nightly docs
+        uses: ./.github/actions/sync-nightlies
+        with:
+          upload: true
+          switches: --archive --compress --update --delete --progress 
--relative
+          local_path: target/nightly-docs/./docs/pekko-connectors-kafka/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 nightly docs
+        uses: ./.github/actions/sync-nightlies
+        with:
+          upload: true
+          switches: --archive --compress --update --delete --progress 
--relative
+          local_path: target/nightly-docs/./docs/pekko-connectors-kafka/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 1d4e3bec..0ecb7146 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 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-1.2.md 
b/docs/src/main/paradox/release-notes/releases-1.2.md
new file mode 100644
index 00000000..ea4b0369
--- /dev/null
+++ b/docs/src/main/paradox/release-notes/releases-1.2.md
@@ -0,0 +1,13 @@
+# Release Notes (1.2.x)
+
+## 1.2.0
+
+Release notes for Apache Pekko Connectors Kafka 1.2.0.
+
+### Bug Fix
+
+* Clear lastRevoked after use to avoid wiping buffers under cooperative 
rebalancing [PR632](https://github.com/apache/pekko-connectors-kafka/pull/632)
+
+### Dependency Change
+
+* kafka-clients 3.9.2


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

Reply via email to