aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
| | | | | * cmake: Add parameter PROTOC_OUT_DIR to protobuf_generateGravatar Christian von Arnim2018-05-14
| | | | | |
| | | | | * cmake: Use GENERATE_EXTENSIONS parameter in protobuf_generateGravatar Christian von Arnim2018-05-14
| |_|_|_|/ |/| | | |
* | | | | Add file option php_metadata_namespace and ruby_package (#4609)Gravatar Paul Yang2018-05-11
| | | | |
* | | | | Merge pull request #4538 from Mizux/patch-2Gravatar Feng Xiao2018-05-10
|\ \ \ \ \ | |_|_|_|/ |/| | | | Add .proto files to extract_includes.bat
| | * | | Remove unsafe no-copy String allocation since it's not useful in recent Java ↵Gravatar Anuraag Agrawal2018-05-11
| |/ / / |/| | | | | | | | | | | versions.
* | | | Throw error if user want to access message properties (#4603)Gravatar Paul Yang2018-05-10
| | | | | | | | | | | | | | | | | | | | | | | | * Throw error if user want to access message properties * Fix typo
* | | | Avoid direct check of class name (#4601)Gravatar Paul Yang2018-05-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Avoid direct check of class name So that subclasses are also ok * Use type hint in function signature.
* | | | use brew install instead of easy_install in OSX (#4537)Gravatar Jie Luo2018-05-09
| | | | | | | | | | | | use brew instead of easy_install in OSX (easy_install keep failing for a month)
* | | | Merge pull request #4590 from PetterS/undefined_fixGravatar Feng Xiao2018-05-06
|\ \ \ \ | | | | | | | | | | Fix error in Clang UndefinedBehaviorSanitizer
| * | | | Fix error in Clang UndefinedBehaviorSanitizerGravatar Petter Strandmark2018-05-04
|/ / / / | | | | | | | | | | | | | | | | | | | | Pointer Arguments to memcpy can not be null in UndefinedBehaviorSanitizer. In this case, both the memory and the size was zero. This change allows protoc to run under UndefinedBehaviorSanitizer.
* | | | Add VS2017 optional component dependency details to the C# readme (#4128)Gravatar David Chennells2018-05-03
| | | | | | | | | | | | Add mention to the "Build" section of the ReadMe of the requirement of installing an optional component to VS2017.
* | | | Fix python ext build on kokoro (#4527)Gravatar Yilun Chong2018-05-03
| | | |
| | * | Appveyor MinGW buildGravatar Ivan Shynkarenka2018-05-03
| |/ / |/| |
* | | Merge pull request #4586 from chronoxor/masterGravatar Feng Xiao2018-05-02
|\ \ \ | | | | | | | | Fix MinGW build
| * | | MinGW build failedGravatar Ivan Shynkarenka2018-05-02
|/ / /
* | | Merge pull request #4583 from chronoxor/masterGravatar Feng Xiao2018-05-01
|\ \ \ | | | | | | | | Fix CMake build on Cygwin.
| * | | Cygwin build failedGravatar Ivan Shynkarenka2018-05-02
|/ / /
* | | Fix RepeatedField#delete_if (#4292)Gravatar Stuart Campbell2018-04-30
| | | | | | | | | Make RepeatedField#delete_if consistent with Array#delete_if.
* | | Add space between class name and concat message (#4577)Gravatar Petar Dambovaliev2018-04-30
| | | | | | | | | | | | The class name was linked to the next word in the sentence. "User\UserRequestis not found in descriptor pool."
* | | Merge pull request #4581 from Yeolar/3rd_rpc_rasterGravatar Feng Xiao2018-04-30
|\ \ \ | | | | | | | | Add a third-party RPC implementation: raster
* | | | [objectivec] Fix memory leak of exceptions raised by RaiseException() (#4556)Gravatar Hiroshi Ichikawa2018-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix memory leak of exceptions raised by RaiseException() Currently exceptions raised by RaiseException() is never deallocated because: * ARC is disabled for this library: https://github.com/google/protobuf/blob/master/BUILD#L913 * It is constructed with `+alloc` but is never `-release`d. This change fixes the issue by using `-[NSException exceptionWithName:...]` instead, which returns an autoreleased instance, so it is deallocated properly. * Fix format.
| * | | Add third-party RPC implementation: raster - a network framework supports ↵Gravatar Yeolar2018-04-30
|/ / / | | | | | | | | | pbrpc by 'service' keyword.
| | * Include version.rc.in in distribution packageGravatar Jozef Izso2018-04-28
| | |
| | * Include file information in all DLL and EXE outputsGravatar Jozef Izso2018-04-28
| | |
| | * Add file information to Windows binariesGravatar Jozef Izso2018-04-27
| |/ |/|
* | Merge pull request #4568 from hectim/masterGravatar Feng Xiao2018-04-27
|\ \ | | | | | | fixed typo
* \ \ Merge pull request #4550 from Mizux/masterGravatar Feng Xiao2018-04-27
|\ \ \ | | | | | | | | CMake: Update CXX Standard management
* | | | Fix to allow AOT compilers to play nicely with reflectionGravatar Jon Skeet2018-04-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With this fix, Unity using IL2CPP should work with one of two approaches: - Call `FileDescriptor.ForceReflectionInitialization<T>` for every enum present in generated code (including oneof case enums) - Ensure that IL2CPP uses the same code for int and any int-based enums The former approach is likely to be simpler, unless IL2CPP changes its default behavior. We *could* potentially generate the code automatically, but that makes me slightly uncomfortable in terms of generating code that's only relevant in one specific scenario. It would be reasonably easy to write a tool (separate from protoc) to generate the code required for any specific set of assemblies, so that Unity users can include it in their application. We can always decide to change to generate it automatically later.
| | * | typoGravatar Brady Killeen2018-04-26
| |/ / |/| |
* | | Merge pull request #4553 from pherl/rubyGravatar Jisi Liu2018-04-25
|\ \ \ | | | | | | | | Set ext.no_native = true for non mac platform
| * | | Set ext.no_native = true for non mac platformGravatar Jisi Liu2018-04-25
|/ / / | | | | | | | | | | | | From: https://github.com/rake-compiler/rake-compiler/issues/146#issuecomment-368539245
| | * fix duplicate mkdir in update_file_lists.shGravatar Corentin Le Molgat2018-04-25
| | | | | | | | | | | | | | | - merge loop for .h and .proto includes - fix shellcheck errors
| * | CMake: Update CXX Standard managementGravatar Corentin Le Molgat2018-04-24
|/ /
| * Add .proto files to extract_includes.batGravatar Mizux2018-04-24
| | | | | | | | | | For google/or-tools, on windows, we need to use `import "google/protobuf/wrappers.proto";` since we want "optional" int64 and in version3 POD get default value... -> so we use "google.protobuf.Int64Value" since 0 is a valid value and different from "not set" for our use case.
* | Move to Xcode 9.3 which also means a High Sierra image.Gravatar Thomas Van Lenten2018-04-21
| |
* | Remove the iOS Test App.Gravatar Thomas Van Lenten2018-04-20
| | | | | | | | | | | | The tests can run as what Apple calls a Logic Test (under xctest), which means it doesn't have to load an full UI App under the simulator, which speeds things up a fair amount.
* | Merge pull request #4520 from BSBandme/fix_kokoro_benchmark_buildGravatar Yilun Chong2018-04-20
|\ \ | |/ |/| Fix benchmark build
* | Write messages to backing field in generated C# cloning code (#4440)Gravatar Sydney Acksman2018-04-19
| | | | | | | | | | | | * Edited MessageFieldGenerator to clone to backing field instead of property * Generated C# proto code
* | Merge pull request #4504 from xfxyjwf/liteGravatar Feng Xiao2018-04-18
|\ \ | | | | | | Cleanup + documentation for Java Lite runtime.
| * | Update Makefile.am for Java lite files.Gravatar Feng Xiao2018-04-18
| | |
| | * Fix benchmark buildGravatar Yilun Chong2018-04-16
| | |
* | | Merge pull request #4517 from rcane/feature/vc2017_build_fixGravatar Adam Cozzette2018-04-16
|\ \ \ | | | | | | | | Fixed a Visual Studio 2017 build error. (#4488)
* \ \ \ Merge pull request #4510 from BSBandme/fix_kokoro_benchmark_buildGravatar Yilun Chong2018-04-16
|\ \ \ \ | | |_|/ | |/| | fix java benchmark, fix dashboard build
| | * | Fixed a Visual Studio 2017 build error. (#4488)Gravatar Ronny Krüger2018-04-16
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current 15.6.x versions of Visual Studio 2017 contain a bug that prevent them from compiling the following construct under certain conditions: std::unique_ptr<std::unique_ptr<Foo> []> foos; This will fail to compile if Foo is an abstract class. To work-around the problem the whole construct was change into: std::vector<std::unique_ptr<Foo>> foos; This not only fixes the compiler error but is also more readable than previous version.
| * | fix java benchmark, fix dashboard buildGravatar Yilun Chong2018-04-13
|/ /
| * Cleanup + documentation for Java Lite runtime.Gravatar Feng Xiao2018-04-12
|/
* Merge pull request #4478 from BSBandme/proto2_to_proto3_toolsGravatar Yilun Chong2018-04-10
|\ | | | | Add gogo benchmark
| * fix pythonGravatar Yilun Chong2018-04-10
| |
| * fix conflictsGravatar Yilun Chong2018-04-10
| |\
| * | Add gogo benchmarkGravatar Yilun Chong2018-04-10
| | |