From c425e5aef7b672168d49975d8563098d8c2a3af1 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 13 Oct 2024 17:10:57 +0100 Subject: [PATCH] v1.1.0 release notes (#329) * v1.1.0 release notes * Update publish-1.1-docs.yml --- .github/workflows/publish-1.1-docs.yml | 12 ++++++------ docs/src/main/paradox/release-notes/releases-1.1.md | 7 ++++--- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish-1.1-docs.yml b/.github/workflows/publish-1.1-docs.yml index 95765ed5..7e6c5b0d 100644 --- a/.github/workflows/publish-1.1-docs.yml +++ b/.github/workflows/publish-1.1-docs.yml @@ -25,28 +25,28 @@ jobs: - name: Build Documentation run: |- - sbt "set ThisBuild / version := \"1.1.0-M1\"; docs/paradox; unidoc" + sbt "set ThisBuild / version := \"1.1.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-management/1.1.0-M1/ + mkdir -p target/nightly-docs/docs/pekko-management/1.1.0/ mkdir -p target/nightly-docs/docs/pekko-management/1.1/ - cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-management/1.1.0-M1/docs + cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-management/1.1.0/docs cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-management/1.1/docs rm -r docs/target/paradox/site/main/ - cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-management/1.1.0-M1/api + cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-management/1.1.0/api cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-management/1.1/api rm -r target/scala-2.13/unidoc - - name: Upload 1.1.0-M1 nightly docs + - name: Upload 1.1.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-management/1.1.0-M1 # The intermediate dot is to show `--relative` which paths to operate on + local_path: target/nightly-docs/./docs/pekko-management/1.1.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/releases-1.1.md b/docs/src/main/paradox/release-notes/releases-1.1.md index 74963f4a..1ca790ad 100644 --- a/docs/src/main/paradox/release-notes/releases-1.1.md +++ b/docs/src/main/paradox/release-notes/releases-1.1.md @@ -1,14 +1,15 @@ # Release Notes (1.1.x) -## 1.1.0-M1 +## 1.1.0 -Release notes for Apache Pekko Management 1.1.0-M1. See [GitHub Milestone](https://github.com/apache/pekko-management/milestone/1?closed=1) for a fuller list of changes. -As with all milestone releases, this release is not recommended for production use - it is designed to allow users to try out the changes in a test environment. +Release notes for Apache Pekko Management 1.1.0. See [GitHub Milestone for 1.1.0-M1](https://github.com/apache/pekko-management/milestone/1?closed=1) and [GitHub Milestone for 1.1.0](https://github.com/apache/pekko-management/milestone/2?closed=1) for a fuller list of changes. ### Additions * Support Kubernetes Native Leases ([PR217](https://github.com/apache/pekko-persistence-jdbc/pull/217)) * Add pekko-management-bom (Bill of Materials) ([PR244](https://github.com/apache/pekko-persistence-jdbc/pull/244)) +* Add startup checks ([PR293](https://github.com/apache/pekko-persistence-jdbc/pull/293)) (not in v1.1.0-M1) +* Support Kubernetes Service Discovery Custom Settings ([PR313](https://github.com/apache/pekko-persistence-jdbc/pull/313)) (not in v1.1.0-M1) ### Dependency Upgrades