Skip to content

Commit

Permalink
Merge branch 'master' of github.com:grpc/grpc into tls_version
Browse files Browse the repository at this point in the history
  • Loading branch information
rockspore committed Dec 8, 2023
2 parents e2d56d6 + 86d90f5 commit f9a1215
Show file tree
Hide file tree
Showing 2,000 changed files with 119,052 additions and 137,412 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.3.2
6.4.0
6 changes: 3 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
src/core/ext/upb-generated/** linguist-generated=true
src/core/ext/upbdefs-generated/** linguist-generated=true
src/core/ext/upb-gen/** linguist-generated=true
src/core/ext/upbdefs-gen/** linguist-generated=true
Makefile linguist-generated=true
BUILD.gn linguist-generated=true
CMakeLists.txt linguist-generated=true
Expand Down Expand Up @@ -36,4 +36,4 @@ src/core/lib/debug/stats_data.cc linguist-generated=true
src/core/lib/experiments/experiments.h linguist-generated=true
src/core/lib/experiments/experiments.cc linguist-generated=true
bazel/experiments.bzl linguist-generated=true
test/cpp/microbenchmarks/huffman_geometries/** linguist-generated=true
test/cpp/microbenchmarks/huffman_geometries/** linguist-generated=true
6 changes: 0 additions & 6 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,3 @@ lang/ruby:
"lang/C#":
- src/compiler/csharp*
- src/csharp/**

"disposition/Needs Internal Changes":
- src/core/lib/event_engine/windows/**
- src/core/lib/gpr/windows/**
- src/core/lib/gprpp/windows/**
- test/core/event_engine/windows/**
3 changes: 2 additions & 1 deletion .github/workflows/pr-auto-fix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ jobs:
with:
script: |
// If you'd like not to run this code on your commits, add your github user id here:
NO_AUTOFIX_USERS = []
NO_AUTOFIX_USERS = ["copybara-service[bot]"]
const { owner, repo } = context.repo
console.log("Actor: " + context.actor);
if (NO_AUTOFIX_USERS.includes(context.actor)) {
console.log('Cancelling');
const run_id = "${{ github.run_id }}";
Expand Down
32 changes: 0 additions & 32 deletions .github/workflows/pr-auto-tag-and-check-title.yaml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/pr-auto-tag.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: PR Auto Tag
on:
pull_request_target:
types: [opened, reopened, synchronize, edited]
permissions:
contents: read # to determine modified files (actions/labeler)

jobs:
triage:
permissions:
contents: read # to determine modified files (actions/labeler)
pull-requests: write # to add labels to PRs (actions/labeler)

runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v3
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: ""
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cython_debug/
dist/
htmlcov/
py3*/
python_build/
pyb/
python_pylint_venv/
src/python/grpcio_*/=*
src/python/grpcio_*/build/
Expand Down
26 changes: 18 additions & 8 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ licenses(["reciprocal"])
package(
default_visibility = ["//visibility:public"],
features = [
"layering_check",
"-parse_headers",
"layering_check",
],
)

Expand Down Expand Up @@ -211,11 +211,11 @@ config_setting(
python_config_settings()

# This should be updated along with build_handwritten.yaml
g_stands_for = "gjallarhorn" # @unused
g_stands_for = "grand" # @unused

core_version = "36.0.0" # @unused
core_version = "37.0.0" # @unused

version = "1.60.0-dev" # @unused
version = "1.61.0-dev" # @unused

GPR_PUBLIC_HDRS = [
"include/grpc/support/alloc.h",
Expand Down Expand Up @@ -1009,6 +1009,7 @@ grpc_cc_library(
"absl/strings",
"absl/types:optional",
"absl/types:span",
"upb_base_lib",
"upb_collections_lib",
"upb_lib",
],
Expand Down Expand Up @@ -1213,6 +1214,7 @@ grpc_cc_library(
"include/grpcpp/security/alts_util.h",
],
external_deps = [
"upb_base_lib",
"upb_collections_lib",
"upb_lib",
],
Expand Down Expand Up @@ -1602,6 +1604,7 @@ grpc_cc_library(
"//src/core:slice_refcount",
"//src/core:socket_mutator",
"//src/core:stats_data",
"//src/core:status_flag",
"//src/core:status_helper",
"//src/core:strerror",
"//src/core:thread_quota",
Expand Down Expand Up @@ -1930,6 +1933,7 @@ grpc_cc_library(
"absl/synchronization",
"absl/memory",
"absl/types:optional",
"upb_base_lib",
"upb_lib",
"protobuf_headers",
"absl/container:inlined_vector",
Expand Down Expand Up @@ -2004,6 +2008,7 @@ grpc_cc_library(
"absl/synchronization",
"absl/types:optional",
"absl/memory",
"upb_base_lib",
"upb_lib",
"absl/strings:str_format",
"protobuf_headers",
Expand Down Expand Up @@ -2173,6 +2178,7 @@ grpc_cc_library(
"absl/strings",
"absl/time",
"absl/types:optional",
"upb_base_lib",
"upb_lib",
],
language = "c++",
Expand Down Expand Up @@ -2936,6 +2942,7 @@ grpc_cc_library(
"//src/core:lib/resolver/endpoint_addresses.h",
],
external_deps = [
"absl/functional:function_ref",
"absl/status",
"absl/status:statusor",
"absl/strings",
Expand Down Expand Up @@ -3063,6 +3070,7 @@ grpc_cc_library(
"absl/strings:cord",
"absl/types:optional",
"absl/types:variant",
"upb_base_lib",
"upb_collections_lib",
"upb_lib",
],
Expand Down Expand Up @@ -3673,7 +3681,9 @@ grpc_cc_library(
"absl/strings",
"absl/strings:str_format",
"absl/types:optional",
"upb_base_lib",
"upb_lib",
"upb_mem_lib",
"upb_textformat_lib",
"upb_json_lib",
"upb_reflection",
Expand Down Expand Up @@ -3748,9 +3758,9 @@ grpc_cc_library(
hdrs = ["//src/core:ext/filters/client_channel/resolver/fake/fake_resolver.h"],
external_deps = [
"absl/base:core_headers",
"absl/status",
"absl/status:statusor",
"absl/strings",
"absl/time",
"absl/types:optional",
],
language = "c++",
visibility = [
Expand All @@ -3760,7 +3770,6 @@ grpc_cc_library(
deps = [
"config",
"debug_location",
"endpoint_addresses",
"gpr",
"grpc_public_hdrs",
"grpc_resolver",
Expand All @@ -3769,7 +3778,6 @@ grpc_cc_library(
"uri_parser",
"work_serializer",
"//src/core:channel_args",
"//src/core:grpc_service_config",
"//src/core:notification",
"//src/core:ref_counted",
"//src/core:useful",
Expand Down Expand Up @@ -3863,8 +3871,10 @@ grpc_cc_library(
deps = [
"gpr",
"grpc_base",
"ref_counted_ptr",
"//src/core:error",
"//src/core:hpack_constants",
"//src/core:ref_counted",
"//src/core:slice",
"//src/core:status_helper",
],
Expand Down
Loading

0 comments on commit f9a1215

Please sign in to comment.