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-management.git


The following commit(s) were added to refs/heads/main by this push:
     new be313a71 pekko 2.0.0-M1 release notes (#755)
be313a71 is described below

commit be313a71038d90a63eeab3791013d12459131508
Author: PJ Fanning <[email protected]>
AuthorDate: Thu Apr 23 11:26:09 2026 +0200

    pekko 2.0.0-M1 release notes (#755)
    
    * pekko 2.0.0-M1 release notes
    
    * Create publish-2.0-docs.yml
---
 .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 | 25 ++++++++
 3 files changed, 95 insertions(+)

diff --git a/.github/workflows/publish-2.0-docs.yml 
b/.github/workflows/publish-2.0-docs.yml
new file mode 100644
index 00000000..36891f08
--- /dev/null
+++ b/.github/workflows/publish-2.0-docs.yml
@@ -0,0 +1,69 @@
+name: Publish 2.0 docs
+
+on:
+  workflow_dispatch:
+
+jobs:
+  publish-docs:
+    name: Publish 2.0 documentation to nightlies.apache.org
+    runs-on: ubuntu-latest
+    if: github.repository == 'apache/pekko-management'
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v6
+        with:
+          fetch-depth: 0
+
+      - name: Set up JDK 17
+        uses: actions/setup-java@v5
+        with:
+          distribution: temurin
+          java-version: 17
+
+      - name: Install sbt
+        uses: sbt/setup-sbt@508b753e53cb6095967669e0911487d2b9bc9f41 # v1.1.22
+
+      - name: Cache Coursier cache
+        uses: coursier/cache-action@90c37294538be80a558fd665531fcdc2b467b475 # 
v8.1.0
+
+      - name: Build Documentation
+        run: |-
+          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-management/2.0.0-M1/
+          mkdir -p target/nightly-docs/docs/pekko-management/2.0/
+          cp -r docs/target/paradox/site/main/ 
target/nightly-docs/docs/pekko-management/2.0.0-M1/docs
+          cp -r docs/target/paradox/site/main/ 
target/nightly-docs/docs/pekko-management/2.0/docs
+          rm -r docs/target/paradox/site/main/
+          cp -r target/scala-2.13/unidoc 
target/nightly-docs/docs/pekko-management/2.0.0-M1/api
+          cp -r target/scala-2.13/unidoc 
target/nightly-docs/docs/pekko-management/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-management/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-management/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 bd95457b..0ecb7146 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.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 00000000..fd234351
--- /dev/null
+++ b/docs/src/main/paradox/release-notes/releases-2.0.md
@@ -0,0 +1,25 @@
+# Release Notes (2.0.x)
+
+## 2.0.0-M1
+
+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.
+
+Java 17 is the minimum supported version for Java. Scala 2.12 support has been 
removed.
+
+This release is meant to be used with other Pekko 2.0 module releases.
+
+See the [GitHub Milestone for 
2.0.0-M1](https://github.com/apache/pekko-management/milestone/6?closed=1) for 
a fuller list of changes.
+
+### Additions
+
+* New module: rolling-update-kubernetes 
([PR732](https://github.com/apache/pekko-management/pull/732))
+
+### Changes
+
+* discovery-consul module switched to Kiwiproject Consul Client 
([PR548](https://github.com/apache/pekko-management/pull/548))
+
+### Dependency Upgrades
+
+* Amazon SDK 2.42.35
+* Log4j 2.25.4
+* Logback 1.5.18


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

Reply via email to