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 1b20bd5f 2.0.0-M1 release notes (#513)
1b20bd5f is described below
commit 1b20bd5fb2b8fd247ba6157b410a432f6fe51ec1
Author: PJ Fanning <[email protected]>
AuthorDate: Fri Apr 24 13:25:09 2026 +0200
2.0.0-M1 release notes (#513)
---
.github/workflows/publish-1.1-docs.yml | 1 +
.../{publish-1.1-docs.yml => publish-2.0-docs.yml} | 30 +++++++++++-----------
docs/src/main/paradox/release-notes/index.md | 1 +
.../src/main/paradox/release-notes/releases-2.0.md | 13 ++++++++++
4 files changed, 30 insertions(+), 15 deletions(-)
diff --git a/.github/workflows/publish-1.1-docs.yml
b/.github/workflows/publish-1.1-docs.yml
index 7ab70d3e..1bcc67e4 100644
--- a/.github/workflows/publish-1.1-docs.yml
+++ b/.github/workflows/publish-1.1-docs.yml
@@ -14,6 +14,7 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
+ ref: 1.1.x
- name: Setup Java 8
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 #
v5.2.0
diff --git a/.github/workflows/publish-1.1-docs.yml
b/.github/workflows/publish-2.0-docs.yml
similarity index 81%
copy from .github/workflows/publish-1.1-docs.yml
copy to .github/workflows/publish-2.0-docs.yml
index 7ab70d3e..a98741ba 100644
--- a/.github/workflows/publish-1.1-docs.yml
+++ b/.github/workflows/publish-2.0-docs.yml
@@ -1,4 +1,4 @@
-name: Publish 1.1 docs
+name: Publish 2.0 docs
on:
workflow_dispatch:
@@ -15,54 +15,54 @@ jobs:
fetch-depth: 0
fetch-tags: true
- - name: Setup Java 8
+ - name: Setup Java 17
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 #
v5.2.0
with:
distribution: temurin
- java-version: 8
+ java-version: 17
- name: Install sbt
- uses: sbt/setup-sbt@508b753e53cb6095967669e0911487d2b9bc9f41 # v1.1.22
+ uses: sbt/setup-sbt@508b753e53cb6095967669e0911487d2b9bc9f41 # v2.0.22
- name: Cache Coursier cache
uses: coursier/cache-action@90c37294538be80a558fd665531fcdc2b467b475 #
v8.1.0
- name: Build Documentation
run: |-
- sbt "set ThisBuild / version := \"1.1.0\"; docs/paradox; unidoc"
+ sbt "set ThisBuild / version := \"2.0.0-M1\"; 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.1.0/
- mkdir -p target/nightly-docs/docs/pekko-connectors-kafka/1.1/
- cp -r docs/target/paradox/site/main/
target/nightly-docs/docs/pekko-connectors-kafka/1.1.0/docs
- cp -r docs/target/paradox/site/main/
target/nightly-docs/docs/pekko-connectors-kafka/1.1/docs
+ mkdir -p target/nightly-docs/docs/pekko-connectors-kafka/2.0.0-M1/
+ mkdir -p target/nightly-docs/docs/pekko-connectors-kafka/2.0/
+ cp -r docs/target/paradox/site/main/
target/nightly-docs/docs/pekko-connectors-kafka/2.0.0-M1/docs
+ cp -r docs/target/paradox/site/main/
target/nightly-docs/docs/pekko-connectors-kafka/2.0/docs
rm -r docs/target/paradox/site/main/
- cp -r target/scala-2.13/unidoc
target/nightly-docs/docs/pekko-connectors-kafka/1.1.0/api
- cp -r target/scala-2.13/unidoc
target/nightly-docs/docs/pekko-connectors-kafka/1.1/api
+ cp -r target/scala-2.13/unidoc
target/nightly-docs/docs/pekko-connectors-kafka/2.0.0-M1/api
+ cp -r target/scala-2.13/unidoc
target/nightly-docs/docs/pekko-connectors-kafka/2.0/api
rm -r target/scala-2.13/unidoc
- - name: Upload 1.1.x nightly docs
+ - name: Upload 2.0.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.1.0
# The intermediate dot is to show `--relative` which paths to operate on
+ local_path:
target/nightly-docs/./docs/pekko-connectors-kafka/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 1.1 nightly docs
+ - name: Upload 2.0 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.1 #
The intermediate dot is to show `--relative` which paths to operate on
+ local_path: target/nightly-docs/./docs/pekko-connectors-kafka/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 }}
diff --git a/docs/src/main/paradox/release-notes/index.md
b/docs/src/main/paradox/release-notes/index.md
index c81b99e2..1d4e3bec 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 Releases](releases-2.0.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 00000000..2f236543
--- /dev/null
+++ b/docs/src/main/paradox/release-notes/releases-2.0.md
@@ -0,0 +1,13 @@
+# Release Notes (2.0.x)
+
+## 2.0.0-M1
+
+This is 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.
+
+Java 17 is the minimum supported version. Scala 2.12 support has been dropped.
+
+This milestone release is intended to be used with other Pekko 2.0 milestone
module releases.
+
+### Dependency Changes
+
+* kafka-clients 4.1.2
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]