From d7c777f0faebddfd57b398963458ed92d51019f7 Mon Sep 17 00:00:00 2001 From: ZHANG Dapeng Date: Tue, 13 Aug 2019 16:13:13 -0700 Subject: [PATCH 1/4] Bump grpc-java version to v1.23.0 --- config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.toml b/config.toml index b913376..5060b25 100644 --- a/config.toml +++ b/config.toml @@ -6,7 +6,7 @@ pygmentsCodeFences = true [params] grpc_release_tag = "v1.22.0" grpc_release_tag_no_v = "1.22.0" -grpc_java_release_tag = "v1.21.0" +grpc_java_release_tag = "v1.23.0" milestones_link = "https://github.com/grpc/grpc/milestones" # Configuration required for auto-generating the Netlify _redirects file From 1c21eb71f80c2b874272f515fefb446bd5d8eb96 Mon Sep 17 00:00:00 2001 From: Ibby Benali Date: Tue, 2 Jul 2019 19:51:56 +0200 Subject: [PATCH 2/4] Updating node.md I was going through the quickstart tutorial and I received a deprecation warning for `addProtoService`. Fixed it by replacing it with `addService`. --- content/docs/quickstart/node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/quickstart/node.md b/content/docs/quickstart/node.md index b4bf1ba..108cc46 100644 --- a/content/docs/quickstart/node.md +++ b/content/docs/quickstart/node.md @@ -123,7 +123,7 @@ function sayHelloAgain(call, callback) { function main() { var server = new grpc.Server(); - server.addProtoService(hello_proto.Greeter.service, + server.addService(hello_proto.Greeter.service, {sayHello: sayHello, sayHelloAgain: sayHelloAgain}); server.bind('0.0.0.0:50051', grpc.ServerCredentials.createInsecure()); server.start(); From ab2374a594d9b863da742421362fc2db1c8b9bd2 Mon Sep 17 00:00:00 2001 From: ZHANG Dapeng Date: Thu, 15 Aug 2019 11:31:13 -0700 Subject: [PATCH 3/4] Add Objective-C to Officially Supported Platforms in about page Resolves #33 --- content/about.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/about.md b/content/about.md index 811e24c..82b77b0 100644 --- a/content/about.md +++ b/content/about.md @@ -152,6 +152,10 @@ Check out what people are saying below: Node.jsWindows/Linux/Mac Node v4+ + +Objective-CMac OS X 10.11+/iOS 7.0+Xcode 7.2+ + + PHP * Linux/Mac PHP 5.5+ and PHP 7.0+ @@ -176,6 +180,7 @@ Check out what people are saying below: | Go | Windows/Linux/Mac | Go 1.6+ | | Java | Windows/Linux/Mac | JDK 8 recommended. Gingerbread+ for Android | | Node.js | Windows/Linux/Mac | Node v4+ | +| Objective-C | Mac OS X 10.11+/iOS 7.0+ | Xcode 7.2+ | | PHP * | Linux/Mac | PHP 5.5+ and PHP 7.0+ | | Python | Windows/Linux/Mac | Python 2.7 and Python 3.4+ | | Ruby | Windows/Linux/Mac | | From e5df4463eaf837877617c4fa6b16fc6da3f6e180 Mon Sep 17 00:00:00 2001 From: Stefan M Date: Fri, 16 Aug 2019 13:00:29 +0200 Subject: [PATCH 4/4] Add empty line. Otherwise it aren't generated as bullet points --- content/docs/tutorials/basic/go.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/docs/tutorials/basic/go.md b/content/docs/tutorials/basic/go.md index 15b8507..65f553d 100644 --- a/content/docs/tutorials/basic/go.md +++ b/content/docs/tutorials/basic/go.md @@ -158,6 +158,7 @@ Running this command generates the following file in the `routeguide` directory - `route_guide.pb.go` This contains: + - All the protocol buffer code to populate, serialize, and retrieve our request and response message types - An interface type (or *stub*) for clients to call with the methods defined in