-
Notifications
You must be signed in to change notification settings - Fork 23
Update grpc #2502
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update grpc #2502
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| * | ||
| !Dockerfile |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # syntax=docker/dockerfile:1.24 | ||
| FROM debian:trixie-20260518@sha256:4ae67669760b807c19f23902a3fd7c121a6a70cf2ae709035674b23e712e4d62 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.81.0 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:8b5d1db6d2253036a53cb8362d3e3fa82a7caf84c247772c46a023166c64e977 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"] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| version: v1 | ||
| name: buf.build/grpc/cpp | ||
| plugin_version: v1.81.0 | ||
| source_url: https://github.com/grpc/grpc | ||
| description: Generates C++ client and server stubs for the gRPC framework. | ||
| deps: | ||
| - plugin: buf.build/protocolbuffers/cpp:v35.0 | ||
| output_languages: | ||
| - cpp | ||
| spdx_license_id: Apache-2.0 | ||
| license_url: https://github.com/grpc/grpc/blob/v1.81.0/LICENSE | ||
| registry: | ||
| cmake: {} |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| * | ||
| !Dockerfile | ||
| !build.csproj |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| # syntax=docker/dockerfile:1.24 | ||
| FROM debian:trixie-20260518@sha256:4ae67669760b807c19f23902a3fd7c121a6a70cf2ae709035674b23e712e4d62 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.81.0 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.421-bookworm-slim@sha256:fc69dc5e0c9789adaac5c8efce71ead4d016a51318667c4f26ce93574b1b9403 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:8b5d1db6d2253036a53cb8362d3e3fa82a7caf84c247772c46a023166c64e977 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"] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| version: v1 | ||
| name: buf.build/grpc/csharp | ||
| plugin_version: v1.81.0 | ||
| source_url: https://github.com/grpc/grpc | ||
| description: Generates C# client and server stubs for the gRPC framework. | ||
| deps: | ||
| - plugin: buf.build/protocolbuffers/csharp:v35.0 | ||
| output_languages: | ||
| - csharp | ||
| spdx_license_id: Apache-2.0 | ||
| license_url: https://github.com/grpc/grpc/blob/v1.81.0/LICENSE | ||
| registry: | ||
| opts: | ||
| - base_namespace= | ||
| nuget: | ||
| target_frameworks: | ||
| - netstandard2.0 | ||
| deps: | ||
| - name: Grpc.Net.Common | ||
| version: 2.76.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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <TargetFramework>netstandard2.0</TargetFramework> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="Google.Protobuf" Version="3.35.0" /> | ||
| <PackageReference Include="Grpc.Net.Common" Version="2.76.0" /> | ||
|
pkwarren marked this conversation as resolved.
Outdated
|
||
| </ItemGroup> | ||
| </Project> | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| * | ||
| !Dockerfile |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # syntax=docker/dockerfile:1.24 | ||
| FROM debian:trixie-20260518@sha256:4ae67669760b807c19f23902a3fd7c121a6a70cf2ae709035674b23e712e4d62 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.81.0 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:8b5d1db6d2253036a53cb8362d3e3fa82a7caf84c247772c46a023166c64e977 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"] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| version: v1 | ||
| name: buf.build/grpc/objc | ||
| plugin_version: v1.81.0 | ||
| 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:v35.0 | ||
| output_languages: | ||
| - objective_c | ||
| spdx_license_id: Apache-2.0 | ||
| license_url: https://github.com/grpc/grpc/blob/v1.81.0/LICENSE |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| * | ||
| !Dockerfile |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # syntax=docker/dockerfile:1.24 | ||
| FROM debian:trixie-20260518@sha256:4ae67669760b807c19f23902a3fd7c121a6a70cf2ae709035674b23e712e4d62 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.81.0 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:8b5d1db6d2253036a53cb8362d3e3fa82a7caf84c247772c46a023166c64e977 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"] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| version: v1 | ||
| name: buf.build/grpc/php | ||
| plugin_version: v1.81.0 | ||
| source_url: https://github.com/grpc/grpc | ||
| description: Generates PHP client and server stubs for the gRPC framework. | ||
| deps: | ||
| - plugin: buf.build/protocolbuffers/php:v35.0 | ||
| output_languages: | ||
| - php | ||
| spdx_license_id: Apache-2.0 | ||
| license_url: https://github.com/grpc/grpc/blob/v1.81.0/LICENSE |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| * | ||
| !Dockerfile |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # syntax=docker/dockerfile:1.24 | ||
| FROM debian:trixie-20260518@sha256:4ae67669760b807c19f23902a3fd7c121a6a70cf2ae709035674b23e712e4d62 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.81.0 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:8b5d1db6d2253036a53cb8362d3e3fa82a7caf84c247772c46a023166c64e977 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"] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| version: v1 | ||
| name: buf.build/grpc/python | ||
| plugin_version: v1.81.0 | ||
| source_url: https://github.com/grpc/grpc | ||
| description: Generates Python client and server stubs for the gRPC framework. | ||
| deps: | ||
| - plugin: buf.build/protocolbuffers/python:v35.0 | ||
| output_languages: | ||
| - python | ||
| spdx_license_id: Apache-2.0 | ||
| license_url: https://github.com/grpc/grpc/blob/v1.81.0/LICENSE | ||
| registry: | ||
| python: | ||
| package_type: "runtime" | ||
| # https://github.com/grpc/grpc/blob/v1.81.0/src/python/grpcio/python_version.py#L19 | ||
| requires_python: ">=3.9" | ||
|
pkwarren marked this conversation as resolved.
Outdated
|
||
| deps: | ||
| # https://pypi.org/project/grpcio/ | ||
| - "grpcio>=1.81.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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| * | ||
| !Dockerfile |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # syntax=docker/dockerfile:1.24 | ||
| FROM debian:trixie-20260518@sha256:4ae67669760b807c19f23902a3fd7c121a6a70cf2ae709035674b23e712e4d62 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.81.0 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:8b5d1db6d2253036a53cb8362d3e3fa82a7caf84c247772c46a023166c64e977 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"] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| version: v1 | ||
| name: buf.build/grpc/ruby | ||
| plugin_version: v1.81.0 | ||
| source_url: https://github.com/grpc/grpc | ||
| description: Generates Ruby client and server stubs for the gRPC framework. | ||
| deps: | ||
| - plugin: buf.build/protocolbuffers/ruby:v35.0 | ||
| output_languages: | ||
| - ruby | ||
| spdx_license_id: Apache-2.0 | ||
| license_url: https://github.com/grpc/grpc/blob/v1.81.0/LICENSE |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:4DHXLd7U9ibsQGGTVZrDNoq8LNP2odYSMRpgfEdCYxQ= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:+8EhcSBj0K4Vjh4anAdtLOYcnn+AMg8gVv6r19BiSYQ= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:4waUym8vI0ZEOq/TtnJRKRUPmHk4QL8zPXRwJhywvI0= |
1 change: 1 addition & 0 deletions
1
tests/testdata/buf.build/grpc/csharp/v1.81.0/petapis/plugin.sum
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:kxBF97RNEQQiB/oEduqOgDZAxiXauyz+6hguxnCyP7I= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:xH0+e+UVLoU5KFcWSB5RfrGIxbyztCgFOquLQjg2/ps= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:P+OQBrxyTpehogGY3ZUlcIQ2pRq1iA9xpxjKXSN7u2E= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:t8ddjmMEdYs2qK5EdGh+yJd0+0QtWXI8m1rPJdQP2ME= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:naIZIvbTbik+yo7qkWOGg+6wGXddPG2kvdH2+V2CJU4= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:tJNtyiZTbcKqiV33j9uwLYiDtRnpqto8m072S5agIuA= |
1 change: 1 addition & 0 deletions
1
tests/testdata/buf.build/grpc/python/v1.81.0/petapis/plugin.sum
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:yqq6+kfKxQdmg2Lwc3iWD4dO+L8OJg8/Hr+nIePmSwI= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:y47G0y23L+GoClu0Kfl4ZgiV++TIrlmPeBxw0sKANjA= |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| h1:jT5MBhIRa08sICxgjVvNAQgauC2GnD8G9OZ64P+N5gY= |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.