Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/publish-1.7-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 }}
Expand Down
19 changes: 19 additions & 0 deletions docs/src/main/paradox/release-notes/releases-1.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down