aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
...
| | | | * add some test proto2 supported, add js proto2 supported, fixed some errorGravatar Yilun Chong2017-06-30
| | | | |
| | | | * change php objc nodejs csharp rubyGravatar Yilun Chong2017-06-29
| | | | |
| * | | | Add initialized as a reserved keyword as that's the actual property nameGravatar Sergio Campama2017-06-29
| | | | |
| | | | * add message set test caseGravatar Yilun Chong2017-06-28
| | | | |
| * | | | adds PHPDoc @return and @param for getters and setters respectively (#3131)Gravatar Brent Shaffer2017-06-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds PHPDoc @return and @param for getters and setters respectively * addresses changes in PR review * adds documentation tests * Update php_generator: - Prepend \ to names where required - Remove <pre> tags - Update protobuf field comments * Updates class files with the protobuf changes * Addresses review comments * removes Protobuf Type line from PHP generated classes * fixes phpdoc test * adds array types to phpdoc
| | | | * add support for proto2Gravatar Yilun Chong2017-06-26
| | | | |
| * | | | Merge pull request #3264 from TeBoring/php-bugGravatar Paul Yang2017-06-24
| |\ \ \ \ | | | | | | | | | | | | Enusre public header and generated code have no implicit converion.
| | * | | | Fix more implicit type conversions in public headers and generated code.Gravatar Bo Yang2017-06-24
| | | | | |
| * | | | | Merge pull request #2968 from ngg/cpp-proper-fwdGravatar Feng Xiao2017-06-23
| |\ \ \ \ \ | | | | | | | | | | | | | | C++: Do not forward-declare dependencies in generated .h files
| | | * | | | Enusre public header and generated code have no implicit converion.Gravatar Bo Yang2017-06-23
| | |/ / / / | |/| | | |
| | | | | * add test_proto2_message.proto and change conformnace/makefile.amGravatar Yilun Chong2017-06-23
| | |_|_|/ | |/| | |
| | | | * Update C++ generated code.Gravatar Bo Yang2017-06-21
| | | | |
| | | | * Update version number to 3.3.2Gravatar Bo Yang2017-06-21
| | | | |
| | | | * Add ARRAY for reserved name (#3150)Gravatar Paul Yang2017-06-20
| | | | |
| * | | | Merge pull request #3240 from thomasvl/float_funGravatar Thomas Van Lenten2017-06-19
| |\ \ \ \ | | | | | | | | | | | | Raise the number of digits used for floats.
| | * | | | Raise the number of digits used for floats.Gravatar Thomas Van Lenten2017-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | About 1.5% of all IEEE754 single-precision numbers require nine decimal digits to represent accurately.
| * | | | | Qualify string in java_options.hGravatar Calder Coalson2017-06-16
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Building the protobuf compiler with Bazel fails to resolve the unqualifed "string"s in java_options.h: ``` ERROR: .../external/com_google_protobuf/BUILD:248:1: C++ compilation of rule '@com_google_protobuf//:protoc_lib' failed: Process exited with status 1 [sandboxed]. In file included from external/com_google_protobuf/src/google/protobuf/compiler/java/java_context.h:41:0, from external/com_google_protobuf/src/google/protobuf/compiler/java/java_enum_field_lite.cc:38: external/com_google_protobuf/src/google/protobuf/compiler/java/java_options.h:59:3: error: 'string' does not name a type string annotation_list_file; ^ external/com_google_protobuf/src/google/protobuf/compiler/java/java_options.h:62:3: error: 'string' does not name a type string output_list_file; ^ Use --strategy=CppCompile=standalone to disable sandboxing for the failing actions. INFO: Elapsed time: 41.487s, Critical Path: 6.20s //interpreter:eval_test NO STATUS Executed 0 out of 1 test: 1 was skipped. ```
| * | | | Export symbols used in inline functionsGravatar Silvio Traversaro2017-06-12
| | | | | | | | | | | | | | | | | | | | fixed_address_empty_string symbol is used in an inline function. We have to export it to avoid undefined reference link errors.
| | * | | C++: Do not forward-declare dependencies in generated .h filesGravatar Gergely Nagy2017-06-12
| |/ / /
| * | | Merge pull request #3176 from acozzette/fix-3114Gravatar Adam Cozzette2017-06-07
| |\ \ \ | | | | | | | | | | Ensure that for Java, imports of .proto files with empty packages works
| * | | | Add new file option php_namespace. (#3162)Gravatar Paul Yang2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add new file option php_namespace. Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace. * Uncomment commented tests * Revert gdb test change * Update csharp descriptor. * Add test for empty php_namespace.
| | * | | Ensure that for Java, imports of .proto files with empty packages worksGravatar Adam Cozzette2017-06-02
| |/ / / | | | | | | | | | | | | | | | | | | | | This fixes a compiler bug that caused a Java syntax error when one .proto file would import another one with an empty package and java_package. This fixes issue #3114.
| * | | not to use std::random_device for map.Seed(). (#3133)Gravatar Wayne Zhang2017-05-30
| | | | | | | | | | | | | | | | | | | | | | | | * not to use std::random_device for map.Seed(). * remove include random
| * | | Add ARRAY for reserved name (#3150)Gravatar Paul Yang2017-05-29
| | | |
| * | | Adds fluent setters for PHP (#3130)Gravatar Brent Shaffer2017-05-29
| | | |
| | * | Issue 3112: Object class with fully qualified nameGravatar lundefugl2017-05-24
| |/ /
| * | Removing undefined behavior and compiler warnings (#1315)Gravatar brian-peloton2017-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Comment out unused arguments. These last few are all that's needed to compile with -Wunused-arguments. * Fix missing struct field initializer. With this fix, everything compiles with -Wmissing-field-initializers. * Add support for disabling unaligned memory accesses on x86 too. ubsan doesn't like these because they are technically undefined behavior, so -DGOOGLE_PROTOBUF_DONT_USE_UNALIGNED will disable them easily. * Avoid undefined integer overflow. ubsan catches all of these.
| * | show help if protoc is called without any arguments, pre-empts -h and --help ↵Gravatar Dennis Cappendijk2017-05-22
| | | | | | | | | | | | to show a useful message instead of just 'Missing input file.'
| | * regenerate plugin and profile message codeGravatar Steven Peters2017-05-11
| | |
| | * Use bool deterministic to suppress warningGravatar Steven Peters2017-05-11
| | | | | | | | | | | | Fixes #3059 by re-applying 08b1c718 from #3087.
| | * Update C++ generated code.Gravatar Feng Xiao2017-05-08
| | |
| | * Update version number to 3.3.1Gravatar Feng Xiao2017-05-08
| | |
| | * Merge pull request #3073 from xfxyjwf/3.3.xGravatar Feng Xiao2017-05-08
| | |\ | | | | | | | | Cherry-pick a bug fix: workaround gcc < 4.5.0 bug
| | | * Workaround gcc < 4.5.0 bugGravatar Mario J. Rugiero2017-05-08
| | | | | | | | | | | | | | | | | | | | | | | | See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=189 Signed-off-by: Mario J. Rugiero <mrugiero@gmail.com>
| | * | Fix compilationGravatar randomguy32017-05-06
| | | | | | | | | | | | <: is a digraph, so a space is necessary for compilation on certain compilers.
| | * | Fix offset type to match the tables it is used inGravatar Alex Merry2017-05-05
| | |/
| * / Workaround gcc < 4.5.0 bugGravatar Mario J. Rugiero2017-05-05
|/ / | | | | | | | | | | See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=189 Signed-off-by: Mario J. Rugiero <mrugiero@gmail.com>
| * Add missing LIBRPOTOC_EXPORT.Gravatar Feng Xiao2017-05-04
| |
| * Skip C# test in C++ only distribution.Gravatar Feng Xiao2017-05-04
| |
| * Add missing files to build files.Gravatar Feng Xiao2017-05-04
| |
| * Fix issue 3046: compilation on alpine 3.5Gravatar Chris Nix2017-05-04
| |
* | Merge remote-tracking branch 'remotes/google/3.3.x' into merge-3.3-to-masterGravatar Adam Cozzette2017-04-27
|\|
* | Fully qualify min as std::min in wire_format_lite.ccGravatar Adam Cozzette2017-04-27
| |
| * Add prefix to enum value with reserved name. (#3020)Gravatar Paul Yang2017-04-26
| |
* | Merge pull request #3018 from acozzette/using-namespace-stdGravatar Adam Cozzette2017-04-26
|\ \ | | | | | | Remove "using namespace std" from stubs/common.h
| * | Remove "using namespace std" from stubs/common.hGravatar Adam Cozzette2017-04-26
| | | | | | | | | | | | | | | | | | | | | | | | This prevents the contents of the std namespace from being effectively pulled into the top-level namespace in all translation units that include common.h. I left in individual using statements for a few common things like std::set and std::map, because it did not seem worth going through the churn of updating the whole codebase to fix those right now.
* | | Remove unused constants.Gravatar Jakob Buchgraber2017-04-25
|/ / | | | | | | | | When compiling with -Werror, -Wunused-const-variable the build fails due to those two constants not being used.
| * Allow proto files to import descriptor.proto (#2995)Gravatar Paul Yang2017-04-20
| | | | | | | | | | | | | | | | | | descriptor.proto uses proto2 syntax, which is not ready for external usage. However, some proto3 files import descriptor.proto and cannot be used. In this PR, all references (We cheated by only removing extensions, which is enough for now. User should avoid using messages defined in descriptor.proto as field type.) to content in descriptor.proto are removed from generated files. Those that import descriptor.proto can be used like other proto files.
| * Prepend "PB" to generated classes whose name are reserved words. (#2990)Gravatar Paul Yang2017-04-20
| |
| * Enum defined without package have incorrect class name. (#2988)Gravatar Paul Yang2017-04-19
| | | | | | | | Fix the bug by sharing the code for generating class name for both message and enum.