diff --git a/.github/workflows/publish-1.7-docs.yml b/.github/workflows/publish-1.7-docs.yml index 5207fd69ee..b3abf81838 100644 --- a/.github/workflows/publish-1.7-docs.yml +++ b/.github/workflows/publish-1.7-docs.yml @@ -61,20 +61,20 @@ jobs: env: DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} run: |- - sbt -Dpekko.genjavadoc.enabled=true "set ThisBuild / version := \"1.7.0\"; docs/paradox; unidoc" + sbt -Dpekko.genjavadoc.enabled=true "set ThisBuild / version := \"1.7.1\"; 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/1.7.0/ + mkdir -p target/nightly-docs/docs/pekko/1.7.1/ mkdir -p target/nightly-docs/docs/pekko/1.7/ - cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.7.0/docs + cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.7.1/docs cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.7/docs rm -r docs/target/paradox/site/main/ - cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.7.0/api + cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.7.1/api cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.7/api rm -r target/scala-2.13/unidoc - cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.7.0/japi + cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.7.1/japi cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.7/japi rm -r target/javaunidoc @@ -83,7 +83,7 @@ jobs: with: upload: true switches: --archive --compress --update --delete --progress --relative - local_path: target/nightly-docs/./docs/pekko/1.7.0 # The intermediate dot is to show `--relative` which paths to operate on + local_path: target/nightly-docs/./docs/pekko/1.7.1 # 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.7.md b/docs/src/main/paradox/release-notes/releases-1.7.md index e2babcf5c1..e878d61a3d 100644 --- a/docs/src/main/paradox/release-notes/releases-1.7.md +++ b/docs/src/main/paradox/release-notes/releases-1.7.md @@ -2,6 +2,25 @@ Apache Pekko 1.7.x releases support Java 8 and above. +# 1.7.1 + +Pekko 1.7.1 has some bug fixes. See the [GitHub Milestone for 1.7.1](https://github.com/apache/pekko/milestone/33?closed=1) for a fuller list of changes. + +### Bug Fix + +* Make AbstractPersistentActorWithTimers and AbstractFSMWithStash subclassable from Java on Scala 3 ([PR3477](https://github.com/apache/pekko/pull/3477)) +* Use a Seq rather than a Set to hold the TCP magic ByteStrings ([PR3498](https://github.com/apache/pekko/pull/3498)) +* Bound compression-pointer hops in DNS name parsing ([PR3499](https://github.com/apache/pekko/pull/3499)) +* Bound nesting depth when deserializing enclosed payloads ([PR3501](https://github.com/apache/pekko/pull/3501)) +* Resolve, check and parse manifests more carefully in the Jackson serializers ([PR3517](https://github.com/apache/pekko/pull/3517)) +* Don't resolve HOCON includes in config that arrived in a message ([PR3518](https://github.com/apache/pekko/pull/3518)) +* Match actor selection wildcards without backtracking ([PR3519](https://github.com/apache/pekko/pull/3519)) +* Bounds check the lookup table indexes in gossip ([PR3520](https://github.com/apache/pekko/pull/3520)) +* Bound the number of entries in a compression table advertisement ([PR3521](https://github.com/apache/pekko/pull/3521)) +* Bound Jackson payload decompression size, unlimited by default ([PR3523](https://github.com/apache/pekko/pull/3523)) +* Bound inbound Artery TCP frame length at framing ([PR3525](https://github.com/apache/pekko/pull/3525)) +* Bound the size a compressed payload may expand to ([PR3527](https://github.com/apache/pekko/pull/3527)) + # 1.7.0 Pekko 1.7.0 has some bug fixes. See the [GitHub Milestone for 1.7.0](https://github.com/apache/pekko/milestone/30?closed=1) for a fuller list of changes.