Skip to content

Commit c8d2345

Browse files
authored
Merge branch 'master' into go_release_v1.77.0
2 parents eeab893 + df68c75 commit c8d2345

File tree

2,739 files changed

+50579
-22930
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,739 files changed

+50579
-22930
lines changed

.gemini/config.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
have_fun: false
2+
memory_config:
3+
disabled: false
4+
code_review:
5+
disable: false
6+
comment_severity_threshold: MEDIUM
7+
max_review_comments: -1
8+
pull_request_opened:
9+
help: false
10+
summary: false
11+
code_review: false
12+
include_drafts: false
13+
ignore_patterns: []

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ src/python/grpcio/grpc_core_dependencies.py linguist-generated=true
1919
src/ruby/ext/grpc/rb_grpc_imports.generated.h linguist-generated=true
2020
src/ruby/ext/grpc/rb_grpc_imports.generated.c linguist-generated=true
2121
include/grpc/module.modulemap linguist-generated=true
22-
tools/distrib/python/xds_protos/** linguist-generated=true
22+
py_xds_protos/** linguist-generated=true
2323
tools/doxygen/Doxyfile.c++ linguist-generated=true
2424
tools/doxygen/Doxyfile.c++.internal linguist-generated=true
2525
tools/doxygen/Doxyfile.core linguist-generated=true

.github/ISSUE_TEMPLATE/bug_report_objc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Report a gRPC ObjC bug
33
about: Create a report to help us improve
44
labels: kind/bug, priority/P2, lang/ObjC
5-
assignees: dennycd
5+
assignees: pawbhard
66

77
---
88

.github/ISSUE_TEMPLATE/bug_report_php.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Report a gRPC PHP bug
33
about: Create a report to help us improve
44
labels: kind/bug, priority/P2, lang/php
5-
assignees: stanley-cheung
5+
assignees: pawbhard
66

77
---
88

.github/ISSUE_TEMPLATE/feature_request_objc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Request a gRPC ObjC feature
33
about: Suggest an idea for this project
44
labels: kind/enhancement, priority/P2, lang/ObjC
5-
assignees: dennycd
5+
assignees: pawbhard
66

77
---
88

.github/ISSUE_TEMPLATE/feature_request_php.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Request a gRPC PHP feature
33
about: Suggest an idea for this project
44
labels: kind/enhancement, priority/P2, lang/php
5-
assignees: stanley-cheung
5+
assignees: pawbhard
66

77
---
88

.github/ISSUE_TEMPLATE/question.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ labels: kind/question, priority/P3, untriaged
88
PLEASE DO NOT POST A QUESTION HERE.
99
This form is for bug reports and feature requests ONLY!
1010

11-
For general questions and troubleshooting, please ask/look for answers at StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc
12-
1311
For questions that specifically need to be answered by gRPC team members, please ask/look for answers at grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io
1412

1513
This issue will be closed down once seen by the repo managers.

.github/workflows/pr-auto-fix.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
format: YYYYWWd
2424
- name: Cache bazel
25-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
25+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
2626
env:
2727
cache-name: bazel-cache
2828
with:
@@ -38,7 +38,7 @@ jobs:
3838
# Cancel current runs if they're still running
3939
# (saves processing on fast pushes)
4040
- name: Cancel Previous Runs
41-
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
41+
uses: styfle/cancel-workflow-action@3155a141048f8f89c06b4cdae32e7853e97536bc # 0.13.0
4242
with:
4343
access_token: ${{ github.token }}
4444
# Allow opt-out for some users
@@ -74,7 +74,7 @@ jobs:
7474
pip install pyyaml mako virtualenv absl-py
7575
pip list
7676
- name: Check out repository code
77-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
77+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
7878
with:
7979
submodules: True
8080
- name: Get the upstream code
@@ -89,7 +89,7 @@ jobs:
8989
run: ANDROID_NDK_HOME= ${{ github.workspace }}/tools/distrib/sanitize.sh
9090
# Report back with a PR if things are broken
9191
- name: Create Pull Request
92-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
92+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
9393
with:
9494
delete-branch: true
9595
branch-suffix: short-commit-hash

.github/workflows/pr-check-bzlmod-deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout Repository
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
- name: Set up Python 3.13
2020
uses: actions/setup-python@v6
2121
with:

.github/workflows/publish-to-bcr.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@ on:
2020

2121
jobs:
2222
publish:
23-
uses: bazel-contrib/publish-to-bcr/.github/workflows/publish.yaml@v1.0.0
23+
uses: bazel-contrib/publish-to-bcr/.github/workflows/publish.yaml@v1.1.0
2424
with:
2525
attest: false
26+
# Mark the created PR as ready for review, since it can't be marked ready by gRPC maintainers and subsequently
27+
# can't be auto-merged by BCR reviewer bot.
28+
#
29+
# See https://github.com/bazel-contrib/publish-to-bcr/blob/748dc7186bc60d0e24a81ee30aba8aa543794767/.github/workflows/publish.yaml#L76
30+
draft: false
2631
tag_name: ${{ inputs.tag_name }}
2732
# GitHub repository which is a fork of the upstream where the Pull Request will be opened.
2833
registry_fork: grpc/bazel-central-registry

0 commit comments

Comments
 (0)