Skip to content

Commit 4cf8cfd

Browse files
author
kkm
committed
Merge remote-tracking branch 'golden/master' into package-grpc-tools
2 parents 5103951 + d0cb61e commit 4cf8cfd

166 files changed

Lines changed: 1566 additions & 834 deletions

File tree

Some content is hidden

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

.github/CODEOWNERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Uses OWNERS files in different modules throughout the
33
# repository as the source of truth for module ownership.
44
/**/OWNERS @markdroth @nicolasnoble @a11r
5-
/bazel/** @nicolasnoble @dgquintas @a11r @vjpai
6-
/cmake/** @jtattermusch @nicolasnoble @mehrdada
7-
/src/core/ext/filters/client_channel/** @markdroth @dgquintas @AspirinSJL
8-
/tools/dockerfile/** @jtattermusch @mehrdada @nicolasnoble
5+
/bazel/** @nicolasnoble @jtattermusch @a11r @vjpai
6+
/cmake/** @jtattermusch @nicolasnoble @apolcyn
7+
/src/core/ext/filters/client_channel/** @markdroth @apolcyn @AspirinSJL
8+
/tools/dockerfile/** @jtattermusch @apolcyn @nicolasnoble
99
/tools/run_tests/performance/** @ncteisen @apolcyn @jtattermusch

BUILD

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ config_setting(
6464
)
6565

6666
# This should be updated along with build.yaml
67-
g_stands_for = "gao"
67+
g_stands_for = "gizmo"
6868

6969
core_version = "6.0.0-dev"
7070

71-
version = "1.16.0-dev"
71+
version = "1.17.0-dev"
7272

7373
GPR_PUBLIC_HDRS = [
7474
"include/grpc/support/alloc.h",
@@ -847,8 +847,8 @@ grpc_cc_library(
847847
"src/core/lib/http/format_request.h",
848848
"src/core/lib/http/httpcli.h",
849849
"src/core/lib/http/parser.h",
850-
"src/core/lib/iomgr/buffer_list.h",
851850
"src/core/lib/iomgr/block_annotate.h",
851+
"src/core/lib/iomgr/buffer_list.h",
852852
"src/core/lib/iomgr/call_combiner.h",
853853
"src/core/lib/iomgr/closure.h",
854854
"src/core/lib/iomgr/combiner.h",
@@ -1550,9 +1550,9 @@ grpc_cc_library(
15501550
deps = [
15511551
"alts_util",
15521552
"grpc_base",
1553+
"grpc_shadow_boringssl",
15531554
"grpc_transport_chttp2_alpn",
15541555
"tsi",
1555-
"grpc_shadow_boringssl",
15561556
],
15571557
)
15581558

@@ -1812,8 +1812,8 @@ grpc_cc_library(
18121812
deps = [
18131813
"gpr",
18141814
"grpc_base",
1815-
"tsi_interface",
18161815
"grpc_shadow_boringssl",
1816+
"tsi_interface",
18171817
],
18181818
)
18191819

@@ -1908,9 +1908,9 @@ grpc_cc_library(
19081908
"alts_util",
19091909
"gpr",
19101910
"grpc_base",
1911+
"grpc_shadow_boringssl",
19111912
"grpc_transport_chttp2_client_insecure",
19121913
"tsi_interface",
1913-
"grpc_shadow_boringssl",
19141914
],
19151915
)
19161916

@@ -2137,10 +2137,10 @@ grpc_cc_library(
21372137
grpc_cc_library(
21382138
name = "grpc_opencensus_plugin",
21392139
srcs = [
2140+
"src/core/ext/filters/census/grpc_context.cc",
21402141
"src/cpp/ext/filters/census/channel_filter.cc",
21412142
"src/cpp/ext/filters/census/client_filter.cc",
21422143
"src/cpp/ext/filters/census/context.cc",
2143-
"src/core/ext/filters/census/grpc_context.cc",
21442144
"src/cpp/ext/filters/census/grpc_plugin.cc",
21452145
"src/cpp/ext/filters/census/measures.cc",
21462146
"src/cpp/ext/filters/census/rpc_encoding.cc",

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
cmake_minimum_required(VERSION 2.8)
2525

2626
set(PACKAGE_NAME "grpc")
27-
set(PACKAGE_VERSION "1.16.0-dev")
27+
set(PACKAGE_VERSION "1.17.0-dev")
2828
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
2929
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
3030
set(PACKAGE_BUGREPORT "https://github.com/grpc/grpc/issues/")
@@ -5249,6 +5249,7 @@ add_library(qps
52495249
${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/testing/worker_service.grpc.pb.h
52505250
test/cpp/qps/benchmark_config.cc
52515251
test/cpp/qps/client_async.cc
5252+
test/cpp/qps/client_callback.cc
52525253
test/cpp/qps/client_sync.cc
52535254
test/cpp/qps/driver.cc
52545255
test/cpp/qps/parse_json.cc

Makefile

Lines changed: 31 additions & 28 deletions
Large diffs are not rendered by default.

WORKSPACE

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ pip_import(
3434
load("@grpc_python_dependencies//:requirements.bzl", "pip_install")
3535
pip_install()
3636

37+
# NOTE(https://github.com/pubref/rules_protobuf/pull/196): Switch to upstream repo after this gets merged.
3738
git_repository(
3839
name="org_pubref_rules_protobuf",
39-
remote="https://github.com/pubref/rules_protobuf",
40-
tag="v0.8.2",
40+
remote="https://github.com/ghostwriternr/rules_protobuf",
41+
tag="v0.8.2.1-alpha",
4142
)
4243

4344
load("@org_pubref_rules_protobuf//python:rules.bzl", "py_proto_repositories")

bazel/OWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set noparent
22
@nicolasnoble
3-
@dgquintas
3+
@jtattermusch
44
@a11r
55
@vjpai
66

build.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ settings:
1212
'#08': Use "-preN" suffixes to identify pre-release versions
1313
'#09': Per-language overrides are possible with (eg) ruby_version tag here
1414
'#10': See the expand_version.py for all the quirks here
15-
core_version: 6.0.0-dev
16-
g_stands_for: gao
17-
version: 1.16.0-dev
15+
core_version: 7.0.0-dev
16+
g_stands_for: gizmo
17+
version: 1.17.0-dev
1818
filegroups:
1919
- name: alts_proto
2020
headers:
@@ -1965,6 +1965,7 @@ libs:
19651965
- src/proto/grpc/testing/worker_service.proto
19661966
- test/cpp/qps/benchmark_config.cc
19671967
- test/cpp/qps/client_async.cc
1968+
- test/cpp/qps/client_callback.cc
19681969
- test/cpp/qps/client_sync.cc
19691970
- test/cpp/qps/driver.cc
19701971
- test/cpp/qps/parse_json.cc

build_config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414

1515
module GrpcBuildConfig
16-
CORE_WINDOWS_DLL = '/tmp/libs/opt/grpc-6.dll'
16+
CORE_WINDOWS_DLL = '/tmp/libs/opt/grpc-7.dll'
1717
end

cmake/OWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
set noparent
22
@jtattermusch
33
@nicolasnoble
4-
@mehrdada
4+
@apolcyn

doc/g_stands_for.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@
1515
- 1.13 'g' stands for ['gloriosa'](https://github.com/grpc/grpc/tree/v1.13.x)
1616
- 1.14 'g' stands for ['gladiolus'](https://github.com/grpc/grpc/tree/v1.14.x)
1717
- 1.15 'g' stands for ['glider'](https://github.com/grpc/grpc/tree/v1.15.x)
18-
- 1.16 'g' stands for ['gao'](https://github.com/grpc/grpc/tree/master)
18+
- 1.16 'g' stands for ['gao'](https://github.com/grpc/grpc/tree/v1.16.x)
19+
- 1.17 'g' stands for ['gizmo'](https://github.com/grpc/grpc/tree/master)

0 commit comments

Comments
 (0)