chore(deps): update grpc to v1.81.1#16157
Conversation
|
/gcbrun |
There was a problem hiding this comment.
Code Review
This pull request updates the gRPC dependency version to 1.81.1 across Bazel configurations, Dockerfiles, and documentation. The reviewer suggests utilizing Docker ARG variables to centralize and manage the duplicated version strings in the Dockerfiles, which would improve maintainability.
| # ```bash | ||
| WORKDIR /var/tmp/build/grpc | ||
| RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \ | ||
| RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.81.1.tar.gz | \ |
There was a problem hiding this comment.
Following the repository's general rules, we should use an ARG to define version strings in Dockerfiles that are duplicated across multiple files. This improves maintainability by centralizing the version definition.
ARG GRPC_VERSION=1.81.1
RUN curl -fsSL https://github.com/grpc/grpc/archive/v${GRPC_VERSION}.tar.gz | \
References
- In Dockerfiles, use ARG to define version strings that are duplicated across multiple files to improve maintainability.
| # ```bash | ||
| WORKDIR /var/tmp/build/grpc | ||
| RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \ | ||
| RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.81.1.tar.gz | \ |
There was a problem hiding this comment.
Following the repository's general rules, we should use an ARG to define version strings in Dockerfiles that are duplicated across multiple files. This improves maintainability by centralizing the version definition.
ARG GRPC_VERSION=1.81.1
RUN curl -fsSL https://github.com/grpc/grpc/archive/v${GRPC_VERSION}.tar.gz | \
References
- In Dockerfiles, use ARG to define version strings that are duplicated across multiple files to improve maintainability.
| WORKDIR /var/tmp/build/grpc | ||
| RUN dnf makecache && dnf install -y c-ares-devel re2-devel | ||
| RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.81.0.tar.gz | \ | ||
| RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.81.1.tar.gz | \ |
There was a problem hiding this comment.
Following the repository's general rules, we should use an ARG to define version strings in Dockerfiles that are duplicated across multiple files. This improves maintainability by centralizing the version definition.
ARG GRPC_VERSION=1.81.1
RUN curl -fsSL https://github.com/grpc/grpc/archive/v${GRPC_VERSION}.tar.gz | \
References
- In Dockerfiles, use ARG to define version strings that are duplicated across multiple files to improve maintainability.
|
|
||
| WORKDIR /var/tmp/build/grpc | ||
| RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.81.0.tar.gz | \ | ||
| RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.81.1.tar.gz | \ |
There was a problem hiding this comment.
Following the repository's general rules, we should use an ARG to define version strings in Dockerfiles that are duplicated across multiple files. This improves maintainability by centralizing the version definition.
ARG GRPC_VERSION=1.81.1
RUN curl -fsSL https://github.com/grpc/grpc/archive/v${GRPC_VERSION}.tar.gz | \
References
- In Dockerfiles, use ARG to define version strings that are duplicated across multiple files to improve maintainability.
This PR contains the following updates:
1.81.0→1.81.1v1.74.1→v1.81.1v1.71.2→v1.81.1v1.81.0→v1.81.1Release Notes
grpc/grpc (grpc)
v1.81.1Compare Source
This is release 1.81.0 (graphic) of gRPC Core.
For gRPC documentation, see grpc.io. For previous releases, see Releases.
This release contains refinements, improvements, and bug fixes, with highlights listed below.
Core
Objective-C
Python
Ruby
Configuration
📅 Schedule: (UTC)
* * * * 1-5)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.