Skip to content

Commit

Permalink
release notes for 1.1.0 (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Oct 7, 2024
1 parent d189e4e commit cf55414
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 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 @@ -24,26 +24,26 @@ jobs:
- name: Build Documentation
run: |-
cp .jvmopts-ci .jvmopts
sbt "set ThisBuild / version := \"1.1.0-M1\"; docs/paradox; unidoc"
sbt "set ThisBuild / version := \"1.1.0\"; 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-M1/
mkdir -p target/nightly-docs/docs/pekko-grpc/1.1.0/
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-M1/docs
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/docs
rm -r docs/target/paradox/site/main/
cp -r target/scala-2.12/unidoc target/nightly-docs/docs/pekko-grpc/1.1.0-M1/api
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/api
rm -r target/scala-2.12/unidoc
- name: Upload 1.1.0-M1 docs
- name: Upload 1.1.0 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-M1 # The intermediate dot is to show `--relative` which paths to operate on
local_path: target/nightly-docs/./docs/pekko-grpc/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 }}
Expand Down
19 changes: 12 additions & 7 deletions docs/src/main/paradox/release-notes/releases-1.1.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# Release Notes (1.1.x)

## 1.1.0-M1
## 1.1.0

Release notes for Apache Pekko gRPC 1.1.0-M1. See [GitHub Milestone](https://github.com/apache/pekko-grpc/milestone/3?closed=1) for 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 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.

### Bug Fixes

* fix: codegen: java: nested protobuf message types ([PR331](https://github.com/apache/pekko-grpc/pull/331)) (not in 1.1.0-M1)

### Additions

* Support ScalaPB scala3_sources option. ([PR222](https://github.com/apache/pekko-grpc/pull/222))
* Publish `pekko-grpc-scalapb-protoc-plugin` for Scala 2.13 and Scala 3 ([PR327](https://github.com/apache/pekko-grpc/pull/327)) (not in 1.1.0-M1)

### Changes

Expand All @@ -18,7 +22,8 @@ As with all milestone releases, this release is not recommended for production u

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

* grpc-java 1.64.0
* protobuf-java 3.25.3
* scalapb 0.11.15
* slf4j 2
* grpc-java 1.68.0
* protobuf-java 3.25.5
* scalapb 0.11.17
* Twirl 2.0.7
* slf4j 2.0.16

0 comments on commit cf55414

Please sign in to comment.