aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler
Commit message (Collapse)AuthorAge
* Fix nullability incompatibilityGravatar Muxi Yan2018-12-18
|
* Merge branch 'master' into config-isolationGravatar Muxi Yan2018-12-10
|\
| * Streaming API for callback serversGravatar Vijay Pai2018-11-30
| |
| * Stop exposing streaming object classGravatar Vijay Pai2018-11-30
| |
| * Client callback streamingGravatar Vijay Pai2018-11-30
| |
| * mark as experimentalGravatar Jan Tattermusch2018-11-14
| |
| * generate alternative BindService methodGravatar Jan Tattermusch2018-11-08
| |
| * Remove redunant get on unique_ptrGravatar Vijay Pai2018-11-01
| |
| * Address reviewer comments.Gravatar Vijay Pai2018-10-31
| |
| * Address reviewer commentsGravatar Vijay Pai2018-10-30
| |
| * Experimental C++ server callback unary APIGravatar Vijay Pai2018-10-29
| |
* | Name changes in compilerGravatar Muxi Yan2018-10-19
| |
* | Proto-related changesGravatar Muxi Yan2018-10-08
|/
* Add a virtual destructor to the new class with virtual methodsGravatar Vijay Pai2018-09-20
|
* Fix a Status, and resolve reviewer commentsGravatar Vijay Pai2018-09-20
|
* Add codegen support for client callback unary callsGravatar Vijay Pai2018-09-18
|
* Updates to the ruby generator for protobuf 3.6.0 changesGravatar Nick Gordon2018-09-14
| | | | | test for verifying the ruby_package option added WeWork to the AUTHORS file
* s/CodegenGeneric/Raw/gGravatar ncteisen2018-06-28
|
* Support codegen generic on server sideGravatar ncteisen2018-06-20
|
* C# codegen: use fully qualified name in __Marshaller_* fieldsGravatar Jan Tattermusch2018-06-08
|
* only generate namespace block when appropriateGravatar Jan Tattermusch2018-06-05
|
* fix C# codegen for empty serviceGravatar Jan Tattermusch2018-05-31
|
* Revert "Revert "Revert "Provide protocol for initializer of generated ↵Gravatar Juanli Shen2018-05-07
| | | | messages"""
* clang-formatGravatar Muxi Yan2018-05-03
|
* Fix generaterGravatar Muxi Yan2018-05-03
|
* Revert "Revert "Provide protocol for initializer of generated messages""Gravatar Muxi Yan2018-05-03
|
* Revert "Provide protocol for initializer of generated messages"Gravatar Muxi Yan2018-05-02
|
* Merge branch 'master' of https://github.com/grpc/grpcGravatar Ben Sykes2018-05-02
|\
* | cleanup formatting with clang_format_code.shGravatar Ben Sykes2018-05-02
| |
* | Add grpc_out option to set minimum_node_versionGravatar Ben Sykes2018-04-30
| | | | | | | | | | Example protoc call: protoc --plugin=protoc-gen-grpc=grpc_node_plugin --js_out=import_style=commonjs,binary:./autogen/ --grpc_out=minimum_node_version=8:./autogen/ hello.proto
* | Switch to Buffer.from to avoid using deprecated constructorGravatar Ben Sykes2018-04-28
| |
| * Provide protocol for genericsGravatar Muxi Yan2018-04-25
|/
* Merge pull request #14837 from nallohki/masterGravatar Muxi Yan2018-04-04
|\ | | | | Makes @class forward decls unconditional in generated pbrpc.h files.
| * Fix indentGravatar Muxi Yan2018-04-04
| |
| * clang formatGravatar Muxi Yan2018-04-03
| |
| * Add missing '+'Gravatar Muxi Yan2018-04-03
| |
* | Merge pull request #13634 from hassox/ruby-module-nameGravatar apolcyn2018-03-29
|\ \ | | | | | | Updates the ruby generator RubyTypeOf to correctly account for underscores in packages
| * | Updates the ruby generator RubyAsType to correctly account for underscores ↵Gravatar Daniel Neighman2018-03-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in packages Prior to this change, when the ruby generator tried to reference an entity that was not part of the same package (or a direct parent package) and the package contains underscores, the result would simply uppercase the first character. It should however uppercase each letter that proceeds an underscore and remove underscores. i.e. ``` package my_package.service; import "my_package/data.proto"; service MyService { rpc Test (data.Request) returns data.Response {} } ``` Was ```ruby # ... rpc :Test, My_package::Data::REquest, My_package::Data::Response # ... ``` Should be: ```ruby # ... rpc :Test, MyPackage::Data::REquest, My_package::Data::Response # ... ```
| | * Changes \#if forward_declare <forward_decl> \#else <class_imports> \#end in ↵Gravatar Tyson Roberts2018-03-20
| |/ |/| | | | | .h files to <forward_decl> \#if <class_imports>
* | update php plugin with protobuf 3.5.0Gravatar ZhouyihaiDing2018-03-05
| |
* | Merge pull request #14490 from nallohki/masterGravatar Muxi Yan2018-02-27
|\ \ | | | | | | Updates Objective-C Generation to allow for omission of the generated @interface and @implementation
| * | Run clang-formatGravatar Muxi Yan2018-02-27
| | |
| * | Fix a typo in PreprocIfNotElseGravatar Muxi Yan2018-02-27
| | |
| * | Moves import utilities to objective_c_generator_helpersGravatar Tyson Roberts2018-02-27
| | |
* | | explicit naming of types in generated codeGravatar Jan Tattermusch2018-02-27
| | |
| * | Moved staticsGravatar Tyson Roberts2018-02-27
| | |
| * | Updates #if generation to allow for explicit define() checkingGravatar Tyson Roberts2018-02-23
| | |
| * | Updates Objective-C Generation to allow for ommission of the generated ↵Gravatar Tyson Roberts2018-02-22
|/ / | | | | | | @interface and @implementation
* | Move headers from grpc++ to grpcppGravatar Muxi Yan2018-02-15
| |
* | Add hooks so that code generator can inject headers to grpc.pb.h fileGravatar yang-g2018-02-07
| |