Merged
Conversation
stefanvanburen
approved these changes
Apr 29, 2026
pkwarren
commented
Apr 29, 2026
Member
Author
pkwarren
left a comment
There was a problem hiding this comment.
Diff from previous release:
diff -ru plugins/connectrpc/python/v0.9.0/Dockerfile plugins/connectrpc/python/v0.10.0/Dockerfile
--- plugins/connectrpc/python/v0.9.0/Dockerfile 2026-04-20 11:34:40
+++ plugins/connectrpc/python/v0.10.0/Dockerfile 2026-04-29 10:44:34
@@ -1,16 +1,16 @@
-# syntax=docker/dockerfile:1.22
-FROM python:3.11.15-bookworm AS build
+# syntax=docker/dockerfile:1.23
+FROM python:3.13.13-trixie@sha256:d52f7ef162003e17330f0dd9c3e0b4ac6775b39ea988be0c23de6d1461191569 AS build
WORKDIR /app
RUN python -mvenv /app
RUN . ./bin/activate \
- && pip install --no-cache-dir protoc-gen-connect-python==0.9.0 \
+ && pip install --no-cache-dir protoc-gen-connectrpc==0.10.0 \
&& pip uninstall --yes pip setuptools \
&& rm -f bin/activate.fish bin/activate.csh bin/Activate.ps1
-FROM gcr.io/distroless/python3-debian12:latest@sha256:e19b29c8473bed88f8b6e31e49d1133d1bdb2bf9c0af7e82d0e7434f7c036a63 AS base
+FROM gcr.io/distroless/python3-debian13:latest@sha256:ed3a4beb46f8f8baac068743ba1b1f95ea3f793422129cf6dd23967f779b6018 AS base
FROM scratch
COPY --link --from=base / /
COPY --link --from=build --chmod=0755 /app /app
USER nobody
-ENTRYPOINT [ "/app/bin/protoc-gen-connect-python" ]
+ENTRYPOINT [ "/app/bin/protoc-gen-connectrpc" ]
diff -ru plugins/connectrpc/python/v0.9.0/buf.plugin.yaml plugins/connectrpc/python/v0.10.0/buf.plugin.yaml
--- plugins/connectrpc/python/v0.9.0/buf.plugin.yaml 2026-04-20 11:34:40
+++ plugins/connectrpc/python/v0.10.0/buf.plugin.yaml 2026-04-29 10:44:34
@@ -1,19 +1,19 @@
version: v1
name: buf.build/connectrpc/python
-plugin_version: v0.9.0
+plugin_version: v0.10.0
source_url: https://github.com/connectrpc/connect-python
description: Generates client and server stubs for Connect Python. Compatible with the Connect RPC protocol.
spdx_license_id: Apache-2.0
-license_url: https://github.com/connectrpc/connect-python/blob/v0.9.0/LICENSE
+license_url: https://github.com/connectrpc/connect-python/blob/v0.10.0/LICENSE
deps:
- - plugin: buf.build/protocolbuffers/python:v34.0
+ - plugin: buf.build/protocolbuffers/python:v34.1
output_languages:
- python
registry:
python:
package_type: "runtime"
- # https://github.com/connectrpc/connect-python/blob/v0.9.0/protoc-gen-connect-python/pyproject.toml#L11
+ # https://github.com/connectrpc/connect-python/blob/v0.10.0/pyproject.toml#L6
requires_python: ">=3.10"
deps:
# https://pypi.org/project/connectrpc/
- - "connectrpc >= 0.9.0"
+ - "connectrpc >= 0.10.0"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.