From aa080e475af604b75fed92b2299e5b5084e72737 Mon Sep 17 00:00:00 2001 From: "app-token-plugins[bot]" Date: Fri, 28 Aug 2026 18:21:23 +0000 Subject: [PATCH 1/2] detected new plugin versions --- plugins/grpc/cpp/v1.83.1/.dockerignore | 2 ++ plugins/grpc/cpp/v1.83.1/Dockerfile | 29 +++++++++++++++ plugins/grpc/cpp/v1.83.1/buf.plugin.yaml | 13 +++++++ plugins/grpc/csharp/v1.83.1/.dockerignore | 3 ++ plugins/grpc/csharp/v1.83.1/Dockerfile | 35 +++++++++++++++++++ plugins/grpc/csharp/v1.83.1/buf.plugin.yaml | 20 +++++++++++ plugins/grpc/csharp/v1.83.1/build.csproj | 9 +++++ plugins/grpc/objc/v1.83.1/.dockerignore | 2 ++ plugins/grpc/objc/v1.83.1/Dockerfile | 29 +++++++++++++++ plugins/grpc/objc/v1.83.1/buf.plugin.yaml | 11 ++++++ plugins/grpc/php/v1.83.1/.dockerignore | 2 ++ plugins/grpc/php/v1.83.1/Dockerfile | 29 +++++++++++++++ plugins/grpc/php/v1.83.1/buf.plugin.yaml | 11 ++++++ plugins/grpc/python/v1.83.1/.dockerignore | 2 ++ plugins/grpc/python/v1.83.1/Dockerfile | 29 +++++++++++++++ plugins/grpc/python/v1.83.1/buf.plugin.yaml | 19 ++++++++++ plugins/grpc/ruby/v1.83.1/.dockerignore | 2 ++ plugins/grpc/ruby/v1.83.1/Dockerfile | 29 +++++++++++++++ plugins/grpc/ruby/v1.83.1/buf.plugin.yaml | 11 ++++++ plugins/grpc/web/v2.1.1/.dockerignore | 2 ++ plugins/grpc/web/v2.1.1/Dockerfile | 29 +++++++++++++++ plugins/grpc/web/v2.1.1/buf.plugin.yaml | 24 +++++++++++++ .../grpc/cpp/v1.83.1/eliza/plugin.sum | 1 + .../grpc/cpp/v1.83.1/petapis/plugin.sum | 1 + .../grpc/csharp/v1.83.1/eliza/plugin.sum | 1 + .../grpc/csharp/v1.83.1/petapis/plugin.sum | 1 + .../grpc/objc/v1.83.1/eliza/plugin.sum | 1 + .../grpc/objc/v1.83.1/petapis/plugin.sum | 1 + .../grpc/php/v1.83.1/eliza/plugin.sum | 1 + .../grpc/php/v1.83.1/petapis/plugin.sum | 1 + .../grpc/python/v1.83.1/eliza/plugin.sum | 1 + .../grpc/python/v1.83.1/petapis/plugin.sum | 1 + .../grpc/ruby/v1.83.1/eliza/plugin.sum | 1 + .../grpc/ruby/v1.83.1/petapis/plugin.sum | 1 + .../grpc/web/v2.1.1/eliza/plugin.sum | 1 + .../grpc/web/v2.1.1/petapis/plugin.sum | 1 + 36 files changed, 356 insertions(+) create mode 100644 plugins/grpc/cpp/v1.83.1/.dockerignore create mode 100644 plugins/grpc/cpp/v1.83.1/Dockerfile create mode 100644 plugins/grpc/cpp/v1.83.1/buf.plugin.yaml create mode 100644 plugins/grpc/csharp/v1.83.1/.dockerignore create mode 100644 plugins/grpc/csharp/v1.83.1/Dockerfile create mode 100644 plugins/grpc/csharp/v1.83.1/buf.plugin.yaml create mode 100644 plugins/grpc/csharp/v1.83.1/build.csproj create mode 100644 plugins/grpc/objc/v1.83.1/.dockerignore create mode 100644 plugins/grpc/objc/v1.83.1/Dockerfile create mode 100644 plugins/grpc/objc/v1.83.1/buf.plugin.yaml create mode 100644 plugins/grpc/php/v1.83.1/.dockerignore create mode 100644 plugins/grpc/php/v1.83.1/Dockerfile create mode 100644 plugins/grpc/php/v1.83.1/buf.plugin.yaml create mode 100644 plugins/grpc/python/v1.83.1/.dockerignore create mode 100644 plugins/grpc/python/v1.83.1/Dockerfile create mode 100644 plugins/grpc/python/v1.83.1/buf.plugin.yaml create mode 100644 plugins/grpc/ruby/v1.83.1/.dockerignore create mode 100644 plugins/grpc/ruby/v1.83.1/Dockerfile create mode 100644 plugins/grpc/ruby/v1.83.1/buf.plugin.yaml create mode 100644 plugins/grpc/web/v2.1.1/.dockerignore create mode 100644 plugins/grpc/web/v2.1.1/Dockerfile create mode 100644 plugins/grpc/web/v2.1.1/buf.plugin.yaml create mode 100644 tests/testdata/buf.build/grpc/cpp/v1.83.1/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/cpp/v1.83.1/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/csharp/v1.83.1/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/csharp/v1.83.1/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/objc/v1.83.1/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/objc/v1.83.1/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/php/v1.83.1/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/php/v1.83.1/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/python/v1.83.1/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/python/v1.83.1/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/ruby/v1.83.1/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/ruby/v1.83.1/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/web/v2.1.1/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/web/v2.1.1/petapis/plugin.sum diff --git a/plugins/grpc/cpp/v1.83.1/.dockerignore b/plugins/grpc/cpp/v1.83.1/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/cpp/v1.83.1/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/cpp/v1.83.1/Dockerfile b/plugins/grpc/cpp/v1.83.1/Dockerfile new file mode 100644 index 000000000..0f8d9edf8 --- /dev/null +++ b/plugins/grpc/cpp/v1.83.1/Dockerfile @@ -0,0 +1,29 @@ +# syntax=docker/dockerfile:1.26 +FROM debian:trixie-20260824@sha256:f324c7ff54321e8d9c588493a20244965938ce0aa50bbd1022d38010e9ffc4b1 AS build + +ARG TARGETARCH +ARG BAZEL_OPTS="--host_jvm_args=-Djava.net.preferIPv4Stack=true" + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN curl -fsSL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.26.0/bazelisk-linux-${TARGETARCH} \ + && chmod +x /usr/local/bin/bazelisk \ + && mkdir /build \ + && chown nobody:nogroup /build \ + && usermod --home /build nobody + +USER nobody +WORKDIR /build + +RUN git clone --depth 1 --branch v1.83.1 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_plugin_support +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_cpp_plugin + +FROM gcr.io/distroless/cc-debian13:latest@sha256:9b615fff20e1a4fad29c2b30562580b212c7dd5e2225236735cca0070ed11c78 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_cpp_plugin_binary . +USER nobody +ENTRYPOINT ["/grpc_cpp_plugin_binary"] diff --git a/plugins/grpc/cpp/v1.83.1/buf.plugin.yaml b/plugins/grpc/cpp/v1.83.1/buf.plugin.yaml new file mode 100644 index 000000000..6fbef50a7 --- /dev/null +++ b/plugins/grpc/cpp/v1.83.1/buf.plugin.yaml @@ -0,0 +1,13 @@ +version: v1 +name: buf.build/grpc/cpp +plugin_version: v1.83.1 +source_url: https://github.com/grpc/grpc +description: Generates C++ client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/cpp:v36.0 +output_languages: + - cpp +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.83.1/LICENSE +registry: + cmake: {} diff --git a/plugins/grpc/csharp/v1.83.1/.dockerignore b/plugins/grpc/csharp/v1.83.1/.dockerignore new file mode 100644 index 000000000..b2a42ae1e --- /dev/null +++ b/plugins/grpc/csharp/v1.83.1/.dockerignore @@ -0,0 +1,3 @@ +* +!Dockerfile +!build.csproj diff --git a/plugins/grpc/csharp/v1.83.1/Dockerfile b/plugins/grpc/csharp/v1.83.1/Dockerfile new file mode 100644 index 000000000..c140e06b2 --- /dev/null +++ b/plugins/grpc/csharp/v1.83.1/Dockerfile @@ -0,0 +1,35 @@ +# syntax=docker/dockerfile:1.26 +FROM debian:trixie-20260824@sha256:f324c7ff54321e8d9c588493a20244965938ce0aa50bbd1022d38010e9ffc4b1 AS build + +ARG TARGETARCH +ARG BAZEL_OPTS="--host_jvm_args=-Djava.net.preferIPv4Stack=true" + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN curl -fsSL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.26.0/bazelisk-linux-${TARGETARCH} \ + && chmod +x /usr/local/bin/bazelisk \ + && mkdir /build \ + && chown nobody:nogroup /build \ + && usermod --home /build nobody + +USER nobody +WORKDIR /build + +RUN git clone --depth 1 --branch v1.83.1 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_plugin_support +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_csharp_plugin + +FROM mcr.microsoft.com/dotnet/sdk:8.0.424-bookworm-slim@sha256:bb32ba3ba3ea36e38572d9d8db76fa15f7cbf722f3f886e06bca6d528bd4fba8 AS dotnetrestore +WORKDIR /build +COPY --link ./build.csproj /build/build.csproj +RUN mkdir /nuget && dotnet restore --packages /nuget + +FROM gcr.io/distroless/cc-debian13:latest@sha256:9b615fff20e1a4fad29c2b30562580b212c7dd5e2225236735cca0070ed11c78 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=dotnetrestore /nuget /nuget +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_csharp_plugin_binary . +USER nobody +ENTRYPOINT ["/grpc_csharp_plugin_binary"] diff --git a/plugins/grpc/csharp/v1.83.1/buf.plugin.yaml b/plugins/grpc/csharp/v1.83.1/buf.plugin.yaml new file mode 100644 index 000000000..360e92743 --- /dev/null +++ b/plugins/grpc/csharp/v1.83.1/buf.plugin.yaml @@ -0,0 +1,20 @@ +version: v1 +name: buf.build/grpc/csharp +plugin_version: v1.83.1 +source_url: https://github.com/grpc/grpc +description: Generates C# client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/csharp:v36.0 +output_languages: + - csharp +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.83.1/LICENSE +registry: + opts: + - base_namespace= + nuget: + target_frameworks: + - netstandard2.0 + deps: + - name: Grpc.Net.Common + version: 2.80.0 diff --git a/plugins/grpc/csharp/v1.83.1/build.csproj b/plugins/grpc/csharp/v1.83.1/build.csproj new file mode 100644 index 000000000..f4834df4f --- /dev/null +++ b/plugins/grpc/csharp/v1.83.1/build.csproj @@ -0,0 +1,9 @@ + + + netstandard2.0 + + + + + + diff --git a/plugins/grpc/objc/v1.83.1/.dockerignore b/plugins/grpc/objc/v1.83.1/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/objc/v1.83.1/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/objc/v1.83.1/Dockerfile b/plugins/grpc/objc/v1.83.1/Dockerfile new file mode 100644 index 000000000..c3f6717b4 --- /dev/null +++ b/plugins/grpc/objc/v1.83.1/Dockerfile @@ -0,0 +1,29 @@ +# syntax=docker/dockerfile:1.26 +FROM debian:trixie-20260824@sha256:f324c7ff54321e8d9c588493a20244965938ce0aa50bbd1022d38010e9ffc4b1 AS build + +ARG TARGETARCH +ARG BAZEL_OPTS="--host_jvm_args=-Djava.net.preferIPv4Stack=true" + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN curl -fsSL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.26.0/bazelisk-linux-${TARGETARCH} \ + && chmod +x /usr/local/bin/bazelisk \ + && mkdir /build \ + && chown nobody:nogroup /build \ + && usermod --home /build nobody + +USER nobody +WORKDIR /build + +RUN git clone --depth 1 --branch v1.83.1 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_plugin_support +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_objective_c_plugin + +FROM gcr.io/distroless/cc-debian13:latest@sha256:9b615fff20e1a4fad29c2b30562580b212c7dd5e2225236735cca0070ed11c78 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_objective_c_plugin_binary . +USER nobody +ENTRYPOINT ["/grpc_objective_c_plugin_binary"] diff --git a/plugins/grpc/objc/v1.83.1/buf.plugin.yaml b/plugins/grpc/objc/v1.83.1/buf.plugin.yaml new file mode 100644 index 000000000..a4bb01c40 --- /dev/null +++ b/plugins/grpc/objc/v1.83.1/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/objc +plugin_version: v1.83.1 +source_url: https://github.com/grpc/grpc +description: Generates Objective-C client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/objc:v36.0 +output_languages: + - objective_c +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.83.1/LICENSE diff --git a/plugins/grpc/php/v1.83.1/.dockerignore b/plugins/grpc/php/v1.83.1/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/php/v1.83.1/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/php/v1.83.1/Dockerfile b/plugins/grpc/php/v1.83.1/Dockerfile new file mode 100644 index 000000000..613c570a9 --- /dev/null +++ b/plugins/grpc/php/v1.83.1/Dockerfile @@ -0,0 +1,29 @@ +# syntax=docker/dockerfile:1.26 +FROM debian:trixie-20260824@sha256:f324c7ff54321e8d9c588493a20244965938ce0aa50bbd1022d38010e9ffc4b1 AS build + +ARG TARGETARCH +ARG BAZEL_OPTS="--host_jvm_args=-Djava.net.preferIPv4Stack=true" + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN curl -fsSL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.26.0/bazelisk-linux-${TARGETARCH} \ + && chmod +x /usr/local/bin/bazelisk \ + && mkdir /build \ + && chown nobody:nogroup /build \ + && usermod --home /build nobody + +USER nobody +WORKDIR /build + +RUN git clone --depth 1 --branch v1.83.1 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_plugin_support +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_php_plugin + +FROM gcr.io/distroless/cc-debian13:latest@sha256:9b615fff20e1a4fad29c2b30562580b212c7dd5e2225236735cca0070ed11c78 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_php_plugin_binary . +USER nobody +ENTRYPOINT ["/grpc_php_plugin_binary"] diff --git a/plugins/grpc/php/v1.83.1/buf.plugin.yaml b/plugins/grpc/php/v1.83.1/buf.plugin.yaml new file mode 100644 index 000000000..b87019be1 --- /dev/null +++ b/plugins/grpc/php/v1.83.1/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/php +plugin_version: v1.83.1 +source_url: https://github.com/grpc/grpc +description: Generates PHP client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/php:v36.0 +output_languages: + - php +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.83.1/LICENSE diff --git a/plugins/grpc/python/v1.83.1/.dockerignore b/plugins/grpc/python/v1.83.1/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/python/v1.83.1/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/python/v1.83.1/Dockerfile b/plugins/grpc/python/v1.83.1/Dockerfile new file mode 100644 index 000000000..69ff04701 --- /dev/null +++ b/plugins/grpc/python/v1.83.1/Dockerfile @@ -0,0 +1,29 @@ +# syntax=docker/dockerfile:1.26 +FROM debian:trixie-20260824@sha256:f324c7ff54321e8d9c588493a20244965938ce0aa50bbd1022d38010e9ffc4b1 AS build + +ARG TARGETARCH +ARG BAZEL_OPTS="--host_jvm_args=-Djava.net.preferIPv4Stack=true" + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN curl -fsSL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.26.0/bazelisk-linux-${TARGETARCH} \ + && chmod +x /usr/local/bin/bazelisk \ + && mkdir /build \ + && chown nobody:nogroup /build \ + && usermod --home /build nobody + +USER nobody +WORKDIR /build + +RUN git clone --depth 1 --branch v1.83.1 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_plugin_support +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_python_plugin + +FROM gcr.io/distroless/cc-debian13:latest@sha256:9b615fff20e1a4fad29c2b30562580b212c7dd5e2225236735cca0070ed11c78 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_python_plugin_binary . +USER nobody +ENTRYPOINT ["/grpc_python_plugin_binary"] diff --git a/plugins/grpc/python/v1.83.1/buf.plugin.yaml b/plugins/grpc/python/v1.83.1/buf.plugin.yaml new file mode 100644 index 000000000..8ec503b26 --- /dev/null +++ b/plugins/grpc/python/v1.83.1/buf.plugin.yaml @@ -0,0 +1,19 @@ +version: v1 +name: buf.build/grpc/python +plugin_version: v1.83.1 +source_url: https://github.com/grpc/grpc +description: Generates Python client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/python:v36.0 +output_languages: + - python +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.83.1/LICENSE +registry: + python: + package_type: "runtime" + # https://github.com/grpc/grpc/blob/v1.83.1/src/python/grpcio/python_version.py#L19 + requires_python: ">=3.10" + deps: + # https://pypi.org/project/grpcio/ + - "grpcio>=1.83.1" diff --git a/plugins/grpc/ruby/v1.83.1/.dockerignore b/plugins/grpc/ruby/v1.83.1/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/ruby/v1.83.1/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/ruby/v1.83.1/Dockerfile b/plugins/grpc/ruby/v1.83.1/Dockerfile new file mode 100644 index 000000000..db3880a34 --- /dev/null +++ b/plugins/grpc/ruby/v1.83.1/Dockerfile @@ -0,0 +1,29 @@ +# syntax=docker/dockerfile:1.26 +FROM debian:trixie-20260824@sha256:f324c7ff54321e8d9c588493a20244965938ce0aa50bbd1022d38010e9ffc4b1 AS build + +ARG TARGETARCH +ARG BAZEL_OPTS="--host_jvm_args=-Djava.net.preferIPv4Stack=true" + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN curl -fsSL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.26.0/bazelisk-linux-${TARGETARCH} \ + && chmod +x /usr/local/bin/bazelisk \ + && mkdir /build \ + && chown nobody:nogroup /build \ + && usermod --home /build nobody + +USER nobody +WORKDIR /build + +RUN git clone --depth 1 --branch v1.83.1 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_plugin_support +RUN bazelisk ${BAZEL_OPTS} build //src/compiler:grpc_ruby_plugin + +FROM gcr.io/distroless/cc-debian13:latest@sha256:9b615fff20e1a4fad29c2b30562580b212c7dd5e2225236735cca0070ed11c78 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_ruby_plugin_binary . +USER nobody +ENTRYPOINT ["/grpc_ruby_plugin_binary"] diff --git a/plugins/grpc/ruby/v1.83.1/buf.plugin.yaml b/plugins/grpc/ruby/v1.83.1/buf.plugin.yaml new file mode 100644 index 000000000..ed1a3fa63 --- /dev/null +++ b/plugins/grpc/ruby/v1.83.1/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/ruby +plugin_version: v1.83.1 +source_url: https://github.com/grpc/grpc +description: Generates Ruby client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/ruby:v36.0 +output_languages: + - ruby +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.83.1/LICENSE diff --git a/plugins/grpc/web/v2.1.1/.dockerignore b/plugins/grpc/web/v2.1.1/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/web/v2.1.1/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/web/v2.1.1/Dockerfile b/plugins/grpc/web/v2.1.1/Dockerfile new file mode 100644 index 000000000..7ef04cae0 --- /dev/null +++ b/plugins/grpc/web/v2.1.1/Dockerfile @@ -0,0 +1,29 @@ +# syntax=docker/dockerfile:1.26 +FROM debian:trixie-20260824@sha256:f324c7ff54321e8d9c588493a20244965938ce0aa50bbd1022d38010e9ffc4b1 AS build + +ARG TARGETARCH +ARG BAZEL_OPTS="--host_jvm_args=-Djava.net.preferIPv4Stack=true" + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN curl -fsSL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.27.0/bazelisk-linux-${TARGETARCH} \ + && chmod +x /usr/local/bin/bazelisk \ + && mkdir /build \ + && chown nobody:nogroup /build \ + && usermod --home /build nobody + +USER nobody +WORKDIR /build +RUN curl -fsSL -o grpc-web-src.tar.gz https://github.com/grpc/grpc-web/releases/download/2.1.1/grpc-web-source-2.1.1.tar.gz \ + && tar -zxf grpc-web-src.tar.gz \ + && rm grpc-web-src.tar.gz +WORKDIR /build/grpc-web-2.1.1 +RUN bazelisk ${BAZEL_OPTS} build '//javascript/net/grpc/web/generator:protoc-gen-grpc-web' + +FROM gcr.io/distroless/cc-debian13:latest@sha256:9b615fff20e1a4fad29c2b30562580b212c7dd5e2225236735cca0070ed11c78 AS base + +FROM scratch +COPY --from=base --link / / +COPY --from=build --link --chmod=0755 /build/grpc-web-2.1.1/bazel-bin/javascript/net/grpc/web/generator/protoc-gen-grpc-web . +USER nobody +ENTRYPOINT [ "/protoc-gen-grpc-web" ] diff --git a/plugins/grpc/web/v2.1.1/buf.plugin.yaml b/plugins/grpc/web/v2.1.1/buf.plugin.yaml new file mode 100644 index 000000000..ddb7a0b07 --- /dev/null +++ b/plugins/grpc/web/v2.1.1/buf.plugin.yaml @@ -0,0 +1,24 @@ +version: v1 +name: buf.build/grpc/web +plugin_version: v2.1.1 +source_url: https://github.com/grpc/grpc-web +integration_guide_url: https://grpc.io/docs/platforms/web/quickstart +description: gRPC for Web Clients. +deps: + - plugin: buf.build/protocolbuffers/js:v4.0.2 +output_languages: + - javascript + - typescript +registry: + npm: + import_style: commonjs + deps: + - package: 'grpc-web' + version: '^2.1.1' + - package: 'google-protobuf' + version: '^3.21.4' + opts: + - import_style=commonjs+dts + - mode=grpcweb +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc-web/blob/2.1.1/LICENSE diff --git a/tests/testdata/buf.build/grpc/cpp/v1.83.1/eliza/plugin.sum b/tests/testdata/buf.build/grpc/cpp/v1.83.1/eliza/plugin.sum new file mode 100644 index 000000000..a891b0b7f --- /dev/null +++ b/tests/testdata/buf.build/grpc/cpp/v1.83.1/eliza/plugin.sum @@ -0,0 +1 @@ +h1:4DHXLd7U9ibsQGGTVZrDNoq8LNP2odYSMRpgfEdCYxQ= diff --git a/tests/testdata/buf.build/grpc/cpp/v1.83.1/petapis/plugin.sum b/tests/testdata/buf.build/grpc/cpp/v1.83.1/petapis/plugin.sum new file mode 100644 index 000000000..0d2c276c2 --- /dev/null +++ b/tests/testdata/buf.build/grpc/cpp/v1.83.1/petapis/plugin.sum @@ -0,0 +1 @@ +h1:+8EhcSBj0K4Vjh4anAdtLOYcnn+AMg8gVv6r19BiSYQ= diff --git a/tests/testdata/buf.build/grpc/csharp/v1.83.1/eliza/plugin.sum b/tests/testdata/buf.build/grpc/csharp/v1.83.1/eliza/plugin.sum new file mode 100644 index 000000000..956a52d4b --- /dev/null +++ b/tests/testdata/buf.build/grpc/csharp/v1.83.1/eliza/plugin.sum @@ -0,0 +1 @@ +h1:4waUym8vI0ZEOq/TtnJRKRUPmHk4QL8zPXRwJhywvI0= diff --git a/tests/testdata/buf.build/grpc/csharp/v1.83.1/petapis/plugin.sum b/tests/testdata/buf.build/grpc/csharp/v1.83.1/petapis/plugin.sum new file mode 100644 index 000000000..481fcb91a --- /dev/null +++ b/tests/testdata/buf.build/grpc/csharp/v1.83.1/petapis/plugin.sum @@ -0,0 +1 @@ +h1:kxBF97RNEQQiB/oEduqOgDZAxiXauyz+6hguxnCyP7I= diff --git a/tests/testdata/buf.build/grpc/objc/v1.83.1/eliza/plugin.sum b/tests/testdata/buf.build/grpc/objc/v1.83.1/eliza/plugin.sum new file mode 100644 index 000000000..139d1d583 --- /dev/null +++ b/tests/testdata/buf.build/grpc/objc/v1.83.1/eliza/plugin.sum @@ -0,0 +1 @@ +h1:eFz3fzdiiNXUbVUh3NlEEH1OooWAfwyGebedFwLG/2g= diff --git a/tests/testdata/buf.build/grpc/objc/v1.83.1/petapis/plugin.sum b/tests/testdata/buf.build/grpc/objc/v1.83.1/petapis/plugin.sum new file mode 100644 index 000000000..3927b153b --- /dev/null +++ b/tests/testdata/buf.build/grpc/objc/v1.83.1/petapis/plugin.sum @@ -0,0 +1 @@ +h1:NI/7nomzj85ZzG8t1BvcUy5g4ZMX5eiH3X4EuBwcXB8= diff --git a/tests/testdata/buf.build/grpc/php/v1.83.1/eliza/plugin.sum b/tests/testdata/buf.build/grpc/php/v1.83.1/eliza/plugin.sum new file mode 100644 index 000000000..9562ec529 --- /dev/null +++ b/tests/testdata/buf.build/grpc/php/v1.83.1/eliza/plugin.sum @@ -0,0 +1 @@ +h1:t8ddjmMEdYs2qK5EdGh+yJd0+0QtWXI8m1rPJdQP2ME= diff --git a/tests/testdata/buf.build/grpc/php/v1.83.1/petapis/plugin.sum b/tests/testdata/buf.build/grpc/php/v1.83.1/petapis/plugin.sum new file mode 100644 index 000000000..e9917b60f --- /dev/null +++ b/tests/testdata/buf.build/grpc/php/v1.83.1/petapis/plugin.sum @@ -0,0 +1 @@ +h1:naIZIvbTbik+yo7qkWOGg+6wGXddPG2kvdH2+V2CJU4= diff --git a/tests/testdata/buf.build/grpc/python/v1.83.1/eliza/plugin.sum b/tests/testdata/buf.build/grpc/python/v1.83.1/eliza/plugin.sum new file mode 100644 index 000000000..b342be875 --- /dev/null +++ b/tests/testdata/buf.build/grpc/python/v1.83.1/eliza/plugin.sum @@ -0,0 +1 @@ +h1:tJNtyiZTbcKqiV33j9uwLYiDtRnpqto8m072S5agIuA= diff --git a/tests/testdata/buf.build/grpc/python/v1.83.1/petapis/plugin.sum b/tests/testdata/buf.build/grpc/python/v1.83.1/petapis/plugin.sum new file mode 100644 index 000000000..631a8047e --- /dev/null +++ b/tests/testdata/buf.build/grpc/python/v1.83.1/petapis/plugin.sum @@ -0,0 +1 @@ +h1:yqq6+kfKxQdmg2Lwc3iWD4dO+L8OJg8/Hr+nIePmSwI= diff --git a/tests/testdata/buf.build/grpc/ruby/v1.83.1/eliza/plugin.sum b/tests/testdata/buf.build/grpc/ruby/v1.83.1/eliza/plugin.sum new file mode 100644 index 000000000..d04ee7f9b --- /dev/null +++ b/tests/testdata/buf.build/grpc/ruby/v1.83.1/eliza/plugin.sum @@ -0,0 +1 @@ +h1:y47G0y23L+GoClu0Kfl4ZgiV++TIrlmPeBxw0sKANjA= diff --git a/tests/testdata/buf.build/grpc/ruby/v1.83.1/petapis/plugin.sum b/tests/testdata/buf.build/grpc/ruby/v1.83.1/petapis/plugin.sum new file mode 100644 index 000000000..7e7dee7f8 --- /dev/null +++ b/tests/testdata/buf.build/grpc/ruby/v1.83.1/petapis/plugin.sum @@ -0,0 +1 @@ +h1:jT5MBhIRa08sICxgjVvNAQgauC2GnD8G9OZ64P+N5gY= diff --git a/tests/testdata/buf.build/grpc/web/v2.1.1/eliza/plugin.sum b/tests/testdata/buf.build/grpc/web/v2.1.1/eliza/plugin.sum new file mode 100644 index 000000000..aa256b6a8 --- /dev/null +++ b/tests/testdata/buf.build/grpc/web/v2.1.1/eliza/plugin.sum @@ -0,0 +1 @@ +h1:lfZQwqQ/dCkm6enuhLMdKlQu+R0KZNt0nqk0FTv+zwc= diff --git a/tests/testdata/buf.build/grpc/web/v2.1.1/petapis/plugin.sum b/tests/testdata/buf.build/grpc/web/v2.1.1/petapis/plugin.sum new file mode 100644 index 000000000..6addbdbb4 --- /dev/null +++ b/tests/testdata/buf.build/grpc/web/v2.1.1/petapis/plugin.sum @@ -0,0 +1 @@ +h1:P3vj2vKo7Np2wbw2f6HIxjbpOFK3uyh8uEYOeylq7tA= From d4e75b50c745a4f825ab9376cdb305878a8eb6e7 Mon Sep 17 00:00:00 2001 From: "Philip K. Warren" Date: Fri, 28 Aug 2026 15:05:48 -0500 Subject: [PATCH 2/2] Apply batched suggestions from code review Co-authored-by: Philip K. Warren --- plugins/grpc/web/v2.1.1/buf.plugin.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/grpc/web/v2.1.1/buf.plugin.yaml b/plugins/grpc/web/v2.1.1/buf.plugin.yaml index ddb7a0b07..8c418890c 100644 --- a/plugins/grpc/web/v2.1.1/buf.plugin.yaml +++ b/plugins/grpc/web/v2.1.1/buf.plugin.yaml @@ -5,7 +5,7 @@ source_url: https://github.com/grpc/grpc-web integration_guide_url: https://grpc.io/docs/platforms/web/quickstart description: gRPC for Web Clients. deps: - - plugin: buf.build/protocolbuffers/js:v4.0.2 + - plugin: buf.build/protocolbuffers/js:v3.21.4 output_languages: - javascript - typescript