From e1f5db31b05530754a87842ecd5d08f2711c103c Mon Sep 17 00:00:00 2001 From: pkwarren <398111+pkwarren@users.noreply.github.com> Date: Tue, 20 Aug 2024 18:27:06 +0000 Subject: [PATCH] detected new plugin versions --- plugins/grpc/cpp/v1.65.5/.dockerignore | 2 ++ plugins/grpc/cpp/v1.65.5/Dockerfile | 26 +++++++++++++++ plugins/grpc/cpp/v1.65.5/buf.plugin.yaml | 13 ++++++++ plugins/grpc/csharp/v1.65.5/.dockerignore | 3 ++ plugins/grpc/csharp/v1.65.5/Dockerfile | 32 +++++++++++++++++++ plugins/grpc/csharp/v1.65.5/buf.plugin.yaml | 20 ++++++++++++ plugins/grpc/csharp/v1.65.5/build.csproj | 9 ++++++ plugins/grpc/objc/v1.65.5/.dockerignore | 2 ++ plugins/grpc/objc/v1.65.5/Dockerfile | 26 +++++++++++++++ plugins/grpc/objc/v1.65.5/buf.plugin.yaml | 11 +++++++ plugins/grpc/php/v1.65.5/.dockerignore | 2 ++ plugins/grpc/php/v1.65.5/Dockerfile | 26 +++++++++++++++ plugins/grpc/php/v1.65.5/buf.plugin.yaml | 11 +++++++ plugins/grpc/python/v1.65.5/.dockerignore | 2 ++ plugins/grpc/python/v1.65.5/Dockerfile | 26 +++++++++++++++ plugins/grpc/python/v1.65.5/buf.plugin.yaml | 19 +++++++++++ plugins/grpc/ruby/v1.65.5/.dockerignore | 2 ++ plugins/grpc/ruby/v1.65.5/Dockerfile | 26 +++++++++++++++ plugins/grpc/ruby/v1.65.5/buf.plugin.yaml | 11 +++++++ .../grpc/cpp/v1.65.5/eliza/plugin.sum | 1 + .../grpc/cpp/v1.65.5/petapis/plugin.sum | 1 + .../grpc/csharp/v1.65.5/eliza/plugin.sum | 1 + .../grpc/csharp/v1.65.5/petapis/plugin.sum | 1 + .../grpc/objc/v1.65.5/eliza/plugin.sum | 1 + .../grpc/objc/v1.65.5/petapis/plugin.sum | 1 + .../grpc/php/v1.65.5/eliza/plugin.sum | 1 + .../grpc/php/v1.65.5/petapis/plugin.sum | 1 + .../grpc/python/v1.65.5/eliza/plugin.sum | 1 + .../grpc/python/v1.65.5/petapis/plugin.sum | 1 + .../grpc/ruby/v1.65.5/eliza/plugin.sum | 1 + .../grpc/ruby/v1.65.5/petapis/plugin.sum | 1 + 31 files changed, 281 insertions(+) create mode 100644 plugins/grpc/cpp/v1.65.5/.dockerignore create mode 100644 plugins/grpc/cpp/v1.65.5/Dockerfile create mode 100644 plugins/grpc/cpp/v1.65.5/buf.plugin.yaml create mode 100644 plugins/grpc/csharp/v1.65.5/.dockerignore create mode 100644 plugins/grpc/csharp/v1.65.5/Dockerfile create mode 100644 plugins/grpc/csharp/v1.65.5/buf.plugin.yaml create mode 100644 plugins/grpc/csharp/v1.65.5/build.csproj create mode 100644 plugins/grpc/objc/v1.65.5/.dockerignore create mode 100644 plugins/grpc/objc/v1.65.5/Dockerfile create mode 100644 plugins/grpc/objc/v1.65.5/buf.plugin.yaml create mode 100644 plugins/grpc/php/v1.65.5/.dockerignore create mode 100644 plugins/grpc/php/v1.65.5/Dockerfile create mode 100644 plugins/grpc/php/v1.65.5/buf.plugin.yaml create mode 100644 plugins/grpc/python/v1.65.5/.dockerignore create mode 100644 plugins/grpc/python/v1.65.5/Dockerfile create mode 100644 plugins/grpc/python/v1.65.5/buf.plugin.yaml create mode 100644 plugins/grpc/ruby/v1.65.5/.dockerignore create mode 100644 plugins/grpc/ruby/v1.65.5/Dockerfile create mode 100644 plugins/grpc/ruby/v1.65.5/buf.plugin.yaml create mode 100644 tests/testdata/buf.build/grpc/cpp/v1.65.5/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/cpp/v1.65.5/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/csharp/v1.65.5/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/csharp/v1.65.5/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/objc/v1.65.5/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/objc/v1.65.5/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/php/v1.65.5/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/php/v1.65.5/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/python/v1.65.5/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/python/v1.65.5/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/ruby/v1.65.5/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/ruby/v1.65.5/petapis/plugin.sum diff --git a/plugins/grpc/cpp/v1.65.5/.dockerignore b/plugins/grpc/cpp/v1.65.5/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/cpp/v1.65.5/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/cpp/v1.65.5/Dockerfile b/plugins/grpc/cpp/v1.65.5/Dockerfile new file mode 100644 index 000000000..0d199151b --- /dev/null +++ b/plugins/grpc/cpp/v1.65.5/Dockerfile @@ -0,0 +1,26 @@ +# syntax=docker/dockerfile:1.9 +FROM debian:bookworm-20240812 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/7.3.1/bazel-7.3.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.65.5 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_cpp_plugin.stripped + +FROM gcr.io/distroless/cc-debian12:latest@sha256:3b75fdd33932d16e53a461277becf57c4f815c6cee5f6bc8f52457c095e004c8 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_cpp_plugin . +USER nobody +ENTRYPOINT ["/grpc_cpp_plugin"] diff --git a/plugins/grpc/cpp/v1.65.5/buf.plugin.yaml b/plugins/grpc/cpp/v1.65.5/buf.plugin.yaml new file mode 100644 index 000000000..08b3e10ee --- /dev/null +++ b/plugins/grpc/cpp/v1.65.5/buf.plugin.yaml @@ -0,0 +1,13 @@ +version: v1 +name: buf.build/grpc/cpp +plugin_version: v1.65.5 +source_url: https://github.com/grpc/grpc +description: Generates C++ client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/cpp:v26.1 +output_languages: + - cpp +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.65.5/LICENSE +registry: + cmake: {} diff --git a/plugins/grpc/csharp/v1.65.5/.dockerignore b/plugins/grpc/csharp/v1.65.5/.dockerignore new file mode 100644 index 000000000..b2a42ae1e --- /dev/null +++ b/plugins/grpc/csharp/v1.65.5/.dockerignore @@ -0,0 +1,3 @@ +* +!Dockerfile +!build.csproj diff --git a/plugins/grpc/csharp/v1.65.5/Dockerfile b/plugins/grpc/csharp/v1.65.5/Dockerfile new file mode 100644 index 000000000..a70f1616e --- /dev/null +++ b/plugins/grpc/csharp/v1.65.5/Dockerfile @@ -0,0 +1,32 @@ +# syntax=docker/dockerfile:1.9 +FROM debian:bookworm-20240812 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/7.3.1/bazel-7.3.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.65.5 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_csharp_plugin.stripped + +FROM mcr.microsoft.com/dotnet/sdk:8.0.401-bookworm-slim@sha256:8c6beed050a602970c3d275756ed3c19065e42ce6ca0809f5a6fcbf5d36fd305 AS dotnetrestore +WORKDIR /build +COPY --link ./build.csproj /build/build.csproj +RUN mkdir /nuget && dotnet restore --packages /nuget + +FROM gcr.io/distroless/cc-debian12:latest@sha256:3b75fdd33932d16e53a461277becf57c4f815c6cee5f6bc8f52457c095e004c8 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 . +USER nobody +ENTRYPOINT ["/grpc_csharp_plugin"] diff --git a/plugins/grpc/csharp/v1.65.5/buf.plugin.yaml b/plugins/grpc/csharp/v1.65.5/buf.plugin.yaml new file mode 100644 index 000000000..c75b2b893 --- /dev/null +++ b/plugins/grpc/csharp/v1.65.5/buf.plugin.yaml @@ -0,0 +1,20 @@ +version: v1 +name: buf.build/grpc/csharp +plugin_version: v1.65.5 +source_url: https://github.com/grpc/grpc +description: Generates C# client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/csharp:v26.1 +output_languages: + - csharp +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.65.5/LICENSE +registry: + opts: + - base_namespace= + nuget: + target_frameworks: + - netstandard2.0 + deps: + - name: Grpc.Net.Common + version: 2.63.0 diff --git a/plugins/grpc/csharp/v1.65.5/build.csproj b/plugins/grpc/csharp/v1.65.5/build.csproj new file mode 100644 index 000000000..28a7f7989 --- /dev/null +++ b/plugins/grpc/csharp/v1.65.5/build.csproj @@ -0,0 +1,9 @@ + + + netstandard2.0 + + + + + + diff --git a/plugins/grpc/objc/v1.65.5/.dockerignore b/plugins/grpc/objc/v1.65.5/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/objc/v1.65.5/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/objc/v1.65.5/Dockerfile b/plugins/grpc/objc/v1.65.5/Dockerfile new file mode 100644 index 000000000..bb7943f80 --- /dev/null +++ b/plugins/grpc/objc/v1.65.5/Dockerfile @@ -0,0 +1,26 @@ +# syntax=docker/dockerfile:1.9 +FROM debian:bookworm-20240812 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/7.3.1/bazel-7.3.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.65.5 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_objective_c_plugin.stripped + +FROM gcr.io/distroless/cc-debian12:latest@sha256:3b75fdd33932d16e53a461277becf57c4f815c6cee5f6bc8f52457c095e004c8 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_objective_c_plugin . +USER nobody +ENTRYPOINT ["/grpc_objective_c_plugin"] diff --git a/plugins/grpc/objc/v1.65.5/buf.plugin.yaml b/plugins/grpc/objc/v1.65.5/buf.plugin.yaml new file mode 100644 index 000000000..e9180d517 --- /dev/null +++ b/plugins/grpc/objc/v1.65.5/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/objc +plugin_version: v1.65.5 +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:v26.1 +output_languages: + - objective_c +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.65.5/LICENSE diff --git a/plugins/grpc/php/v1.65.5/.dockerignore b/plugins/grpc/php/v1.65.5/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/php/v1.65.5/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/php/v1.65.5/Dockerfile b/plugins/grpc/php/v1.65.5/Dockerfile new file mode 100644 index 000000000..8f664aea1 --- /dev/null +++ b/plugins/grpc/php/v1.65.5/Dockerfile @@ -0,0 +1,26 @@ +# syntax=docker/dockerfile:1.9 +FROM debian:bookworm-20240812 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/7.3.1/bazel-7.3.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.65.5 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_php_plugin.stripped + +FROM gcr.io/distroless/cc-debian12:latest@sha256:3b75fdd33932d16e53a461277becf57c4f815c6cee5f6bc8f52457c095e004c8 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_php_plugin . +USER nobody +ENTRYPOINT ["/grpc_php_plugin"] diff --git a/plugins/grpc/php/v1.65.5/buf.plugin.yaml b/plugins/grpc/php/v1.65.5/buf.plugin.yaml new file mode 100644 index 000000000..adfb012ff --- /dev/null +++ b/plugins/grpc/php/v1.65.5/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/php +plugin_version: v1.65.5 +source_url: https://github.com/grpc/grpc +description: Generates PHP client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/php:v26.1 +output_languages: + - php +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.65.5/LICENSE diff --git a/plugins/grpc/python/v1.65.5/.dockerignore b/plugins/grpc/python/v1.65.5/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/python/v1.65.5/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/python/v1.65.5/Dockerfile b/plugins/grpc/python/v1.65.5/Dockerfile new file mode 100644 index 000000000..136fa6e8b --- /dev/null +++ b/plugins/grpc/python/v1.65.5/Dockerfile @@ -0,0 +1,26 @@ +# syntax=docker/dockerfile:1.9 +FROM debian:bookworm-20240812 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/7.3.1/bazel-7.3.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.65.5 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_python_plugin.stripped + +FROM gcr.io/distroless/cc-debian12:latest@sha256:3b75fdd33932d16e53a461277becf57c4f815c6cee5f6bc8f52457c095e004c8 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_python_plugin . +USER nobody +ENTRYPOINT ["/grpc_python_plugin"] diff --git a/plugins/grpc/python/v1.65.5/buf.plugin.yaml b/plugins/grpc/python/v1.65.5/buf.plugin.yaml new file mode 100644 index 000000000..3c59f99e8 --- /dev/null +++ b/plugins/grpc/python/v1.65.5/buf.plugin.yaml @@ -0,0 +1,19 @@ +version: v1 +name: buf.build/grpc/python +plugin_version: v1.65.5 +source_url: https://github.com/grpc/grpc +description: Generates Python client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/python:v26.1 +output_languages: + - python +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.65.5/LICENSE +registry: + python: + package_type: "runtime" + # https://github.com/grpc/grpc/tree/v1.65.5/src/python/grpcio#supported-python-versions + requires_python: ">=3.8" + deps: + # https://pypi.org/project/grpcio/ + - "grpcio" diff --git a/plugins/grpc/ruby/v1.65.5/.dockerignore b/plugins/grpc/ruby/v1.65.5/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/ruby/v1.65.5/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/ruby/v1.65.5/Dockerfile b/plugins/grpc/ruby/v1.65.5/Dockerfile new file mode 100644 index 000000000..8d7cba034 --- /dev/null +++ b/plugins/grpc/ruby/v1.65.5/Dockerfile @@ -0,0 +1,26 @@ +# syntax=docker/dockerfile:1.9 +FROM debian:bookworm-20240812 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/7.3.1/bazel-7.3.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.65.5 https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_ruby_plugin.stripped + +FROM gcr.io/distroless/cc-debian12:latest@sha256:3b75fdd33932d16e53a461277becf57c4f815c6cee5f6bc8f52457c095e004c8 AS base + +FROM scratch +COPY --link --from=base / / +COPY --link --from=build --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_ruby_plugin . +USER nobody +ENTRYPOINT ["/grpc_ruby_plugin"] diff --git a/plugins/grpc/ruby/v1.65.5/buf.plugin.yaml b/plugins/grpc/ruby/v1.65.5/buf.plugin.yaml new file mode 100644 index 000000000..6a0880e3d --- /dev/null +++ b/plugins/grpc/ruby/v1.65.5/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/ruby +plugin_version: v1.65.5 +source_url: https://github.com/grpc/grpc +description: Generates Ruby client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/ruby:v26.1 +output_languages: + - ruby +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.65.5/LICENSE diff --git a/tests/testdata/buf.build/grpc/cpp/v1.65.5/eliza/plugin.sum b/tests/testdata/buf.build/grpc/cpp/v1.65.5/eliza/plugin.sum new file mode 100644 index 000000000..11d7bae9c --- /dev/null +++ b/tests/testdata/buf.build/grpc/cpp/v1.65.5/eliza/plugin.sum @@ -0,0 +1 @@ +h1:+TEOhXAY3kEbot+Yi4zMrlVqpygzcZGd8rNsYRm1K/c= diff --git a/tests/testdata/buf.build/grpc/cpp/v1.65.5/petapis/plugin.sum b/tests/testdata/buf.build/grpc/cpp/v1.65.5/petapis/plugin.sum new file mode 100644 index 000000000..d1fd57a3e --- /dev/null +++ b/tests/testdata/buf.build/grpc/cpp/v1.65.5/petapis/plugin.sum @@ -0,0 +1 @@ +h1:QNggIsJlvPRCdsT8EEOrIhD3r6tTDrD6KOna3Fue4JE= diff --git a/tests/testdata/buf.build/grpc/csharp/v1.65.5/eliza/plugin.sum b/tests/testdata/buf.build/grpc/csharp/v1.65.5/eliza/plugin.sum new file mode 100644 index 000000000..956a52d4b --- /dev/null +++ b/tests/testdata/buf.build/grpc/csharp/v1.65.5/eliza/plugin.sum @@ -0,0 +1 @@ +h1:4waUym8vI0ZEOq/TtnJRKRUPmHk4QL8zPXRwJhywvI0= diff --git a/tests/testdata/buf.build/grpc/csharp/v1.65.5/petapis/plugin.sum b/tests/testdata/buf.build/grpc/csharp/v1.65.5/petapis/plugin.sum new file mode 100644 index 000000000..481fcb91a --- /dev/null +++ b/tests/testdata/buf.build/grpc/csharp/v1.65.5/petapis/plugin.sum @@ -0,0 +1 @@ +h1:kxBF97RNEQQiB/oEduqOgDZAxiXauyz+6hguxnCyP7I= diff --git a/tests/testdata/buf.build/grpc/objc/v1.65.5/eliza/plugin.sum b/tests/testdata/buf.build/grpc/objc/v1.65.5/eliza/plugin.sum new file mode 100644 index 000000000..4a8ce4e1b --- /dev/null +++ b/tests/testdata/buf.build/grpc/objc/v1.65.5/eliza/plugin.sum @@ -0,0 +1 @@ +h1:xH0+e+UVLoU5KFcWSB5RfrGIxbyztCgFOquLQjg2/ps= diff --git a/tests/testdata/buf.build/grpc/objc/v1.65.5/petapis/plugin.sum b/tests/testdata/buf.build/grpc/objc/v1.65.5/petapis/plugin.sum new file mode 100644 index 000000000..7a01cb23f --- /dev/null +++ b/tests/testdata/buf.build/grpc/objc/v1.65.5/petapis/plugin.sum @@ -0,0 +1 @@ +h1:P+OQBrxyTpehogGY3ZUlcIQ2pRq1iA9xpxjKXSN7u2E= diff --git a/tests/testdata/buf.build/grpc/php/v1.65.5/eliza/plugin.sum b/tests/testdata/buf.build/grpc/php/v1.65.5/eliza/plugin.sum new file mode 100644 index 000000000..350cc30e3 --- /dev/null +++ b/tests/testdata/buf.build/grpc/php/v1.65.5/eliza/plugin.sum @@ -0,0 +1 @@ +h1:gCX+94Y87fKbGc7nBkZ5sqxwMypA12/rrOdVb9YaOkY= diff --git a/tests/testdata/buf.build/grpc/php/v1.65.5/petapis/plugin.sum b/tests/testdata/buf.build/grpc/php/v1.65.5/petapis/plugin.sum new file mode 100644 index 000000000..2f2d65d31 --- /dev/null +++ b/tests/testdata/buf.build/grpc/php/v1.65.5/petapis/plugin.sum @@ -0,0 +1 @@ +h1:0h6mmZ/IPFQQD8Mq95Adum4ekVPiiZy05xjy3uqhI48= diff --git a/tests/testdata/buf.build/grpc/python/v1.65.5/eliza/plugin.sum b/tests/testdata/buf.build/grpc/python/v1.65.5/eliza/plugin.sum new file mode 100644 index 000000000..0208ffc62 --- /dev/null +++ b/tests/testdata/buf.build/grpc/python/v1.65.5/eliza/plugin.sum @@ -0,0 +1 @@ +h1:tzSa6/8xdKOIrF60gIktE2W8FbyoVb782wtuyK8wYcY= diff --git a/tests/testdata/buf.build/grpc/python/v1.65.5/petapis/plugin.sum b/tests/testdata/buf.build/grpc/python/v1.65.5/petapis/plugin.sum new file mode 100644 index 000000000..ca968829a --- /dev/null +++ b/tests/testdata/buf.build/grpc/python/v1.65.5/petapis/plugin.sum @@ -0,0 +1 @@ +h1:/bm8y8KHZ5OaVGv2GDuXQc1ADOO5BrN+KJXEJO4iMy0= diff --git a/tests/testdata/buf.build/grpc/ruby/v1.65.5/eliza/plugin.sum b/tests/testdata/buf.build/grpc/ruby/v1.65.5/eliza/plugin.sum new file mode 100644 index 000000000..d04ee7f9b --- /dev/null +++ b/tests/testdata/buf.build/grpc/ruby/v1.65.5/eliza/plugin.sum @@ -0,0 +1 @@ +h1:y47G0y23L+GoClu0Kfl4ZgiV++TIrlmPeBxw0sKANjA= diff --git a/tests/testdata/buf.build/grpc/ruby/v1.65.5/petapis/plugin.sum b/tests/testdata/buf.build/grpc/ruby/v1.65.5/petapis/plugin.sum new file mode 100644 index 000000000..7e7dee7f8 --- /dev/null +++ b/tests/testdata/buf.build/grpc/ruby/v1.65.5/petapis/plugin.sum @@ -0,0 +1 @@ +h1:jT5MBhIRa08sICxgjVvNAQgauC2GnD8G9OZ64P+N5gY=