Skip to content

Commit

Permalink
release notes for 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Nov 6, 2024
1 parent 017e70a commit 1d7b109
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish-1.1-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@ jobs:
- name: Build Documentation
run: |-
cp .jvmopts-ci .jvmopts
sbt "set ThisBuild / version := \"1.1.0\"; docs/paradox; unidoc"
sbt "set ThisBuild / version := \"1.1.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-grpc/1.1.0/
mkdir -p target/nightly-docs/docs/pekko-grpc/1.1.1/
mkdir -p target/nightly-docs/docs/pekko-grpc/1.1/
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-grpc/1.1.0/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-grpc/1.1.1/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-grpc/1.1/docs
rm -r docs/target/paradox/site/main/
cp -r target/scala-2.12/unidoc target/nightly-docs/docs/pekko-grpc/1.1.0/api
cp -r target/scala-2.12/unidoc target/nightly-docs/docs/pekko-grpc/1.1.1/api
cp -r target/scala-2.12/unidoc target/nightly-docs/docs/pekko-grpc/1.1/api
rm -r target/scala-2.12/unidoc
- name: Upload 1.1.0 docs
- name: Upload 1.1.1 docs
uses: ./.github/actions/sync-nightlies
with:
upload: true
switches: --archive --compress --update --delete --progress --relative
local_path: target/nightly-docs/./docs/pekko-grpc/1.1.0 # The intermediate dot is to show `--relative` which paths to operate on
local_path: target/nightly-docs/./docs/pekko-grpc/1.1.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
14 changes: 13 additions & 1 deletion docs/src/main/paradox/release-notes/releases-1.1.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release Notes (1.1.x)

## 1.1.1

Release notes for Apache Pekko gRPC 1.1.1. See [GitHub Milestone for 1.1.1](https://github.com/apache/pekko-grpc/milestone/6?closed=1) for a fuller list of changes.

### Changes

* Merge gRPC headers and trailers in case of failure ([PR391](https://github.com/apache/pekko-grpc/pull/391))

### Dependency Changes

* grpc-java 1.67.1 (this is a downgrade - see [PR399](https://github.com/apache/pekko-grpc/pull/399))

## 1.1.0

Release notes for Apache Pekko gRPC 1.1.0. See [GitHub Milestone for 1.1.0-M1](https://github.com/apache/pekko-grpc/milestone/3?closed=1) and [GitHub Milestone for 1.1.0](https://github.com/apache/pekko-grpc/milestone/4?closed=1) for a fuller list of changes.
Expand All @@ -22,7 +34,7 @@ Release notes for Apache Pekko gRPC 1.1.0. See [GitHub Milestone for 1.1.0-M1](h

Most of the dependency changes are small patch level upgrades. Some exceptions include:

* grpc-java 1.68.0
* grpc-java 1.68.0 (this grpc-java release has since been stated marked as a mistake)
* protobuf-java 3.25.5
* scalapb 0.11.17
* Twirl 2.0.7
Expand Down

0 comments on commit 1d7b109

Please sign in to comment.