v0.1.11
What's Changed
This is the first release of Connect in the connectrpc
GitHub organization. The package name has changed to com.connectrpc
.
To update from the previous release, change the groupId from build.buf
to com.connectrpc
and the version to 0.1.11
. The artifact names haven't changed.
To migrate to the new package name, a shell script is usually sufficient:
On Linux, or anywhere with GNU sed
:
find . -type f \( -name "*.kt" -o -name "*.java" \) -exec sed -i 's|build.buf.connect|com.connectrpc|g' {} \;
On Mac, or anywhere with BSD sed
:
find . -type f \( -name "*.kt" -o -name "*.java" \) -exec sed -i '' 's|build.buf.connect|com.connectrpc|g' {} \;
When you change your source code, you'll also need to switch to the version of protoc-gen-connect-kotlin
in this repository. If you're using the Buf CLI with the buf.build/bufbuild/connect-kotlin
remote plugin, switch to the buf.build/connectrpc/kotlin
plugin.
We apologize for any inconvenience that this rename causes. We're doing this to prepare Connect for donation to a foundation, which will put it on a better footing for long-term maintenance by multiple stakeholders.
If you encounter any problems or have questions, please reach out to us by filing an issue or joining #connectrpc
in the Gophers Slack.
New Contributors
- @smallsamantha made their first contribution in #97
Full Changelog: v0.1.10...v0.1.11