aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* adds PHP typehints for message setters (#4533)php-generated-devBrent Shaffer2018-06-199-13/+21
|
* Fix array constructor in c extension for compatibility (#4667)Paul Yang2018-05-231-3/+3
| | | | | In old generated code, the constructor of message doesn't provide a default null to parent's constructor. Previously, in c extesnion, this case was not handled.
* PHP namespaces for nested messages and enums (#4536)Brent Shaffer2018-05-2377-660/+1482
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * uses namespaces for nested messages and enums * fixes namespaces for PHP dist * fixes namespace for Descriptors, adds Cardinality and Kind * fixes nested namespaces for reserved words and adds tests * adds tests and generator fix for php class prefixes * fixes escaping of protobuf packages, enum comments, misc others * nice refactor of generated code * adds class files for backwards compatibility * simplifies code with templates * adds compatibility files to makefile * cleanup of generator and fixes nested namespace bug * regenerates proto types * remove internal BC classes * adds deprecated warning, adds methods back * simplifies if statement * fixes dist files * addresses review comments * adds back TYPE_URL_PREFIX constant * adds @deprecated to old nested class files * skips tests which require a separate process when protobuf.so is enabled * Adds tests for legacy nested classes that do not require separate processes to test * uses legacy names for GPBUtil message check * adds block for IDE @deprecated message * Namespace for nested message/enum in c extension * Remove unused code
* Implement array constructor in php c extension.Bo Yang2018-05-153-85/+173
|
* PHP array constructors for protobuf messages (#4530)Brent Shaffer2018-05-1531-161/+1082
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP array constructors for protobuf messages * removes Descriptor from error message * allows mergeFrom to accept an array * only use initWithDescriptor if instanceof MapEntry * adds doc comments * removes ability for constructors to take arrays for submessages * Revert "allows mergeFrom to accept an array" This reverts commit b7b72182d561634af12c5c5c56a7cda3b33241f9. * makes mergeFromArray protected and fixes mergeFrom whitespace * Separates merging from JSON and merging from PHP array * removes well-known types and json keys from array construction * Addresses PR review comments * cleans up tests * fixes exception messages
* Merge pull request #4623 from BSBandme/fix_kokoro_benchmark_buildYilun Chong2018-05-141-2/+3
|\ | | | | Fix python install, cat java error log for kokoro build
| * Fix python install, cat java error log for kokoro buildYilun Chong2018-05-141-2/+3
| |
* | Adopt php_metadata_namespace in php code generator (#4622)Paul Yang2018-05-144-17/+41
| | | | | | | | | | | | | | | | | | | | | | * Adopt php_metadata_namespace in php code generator The php_metadata_namespace is corresponded to the relative directory of the metadata file. e.g., previously, the metadata file of foo.proto was GPBMetadata/Foo.php. If the php_metadata_namespace is "Metadata\\Bar", the metadata file will be Metadata/Bar/Foo.php. * Handle empty php_metadata_namespace
* | Merge pull request #4579 from jozefizso/dev/3380_version_infoFeng Xiao2018-05-147-4/+80
|\ \ | | | | | | Include version information in Windows binaries #3380
| * | Include version.rc.in in distribution packageJozef Izso2018-04-281-0/+1
| | |
| * | Include file information in all DLL and EXE outputsJozef Izso2018-04-284-5/+20
| | |
| * | Add file information to Windows binariesJozef Izso2018-04-274-3/+63
| | |
* | | enable source link for csharp (#4179)Cameron Taggart2018-05-142-3/+5
| | |
* | | Merge pull request #4587 from chronoxor/masterFeng Xiao2018-05-143-6/+26
|\ \ \ | | | | | | | | Appveyor MinGW build
| * | | Appveyor MinGW buildIvan Shynkarenka2018-05-033-6/+26
| | | |
* | | | Merge pull request #4611 from anuraaga/remove-string-moveFeng Xiao2018-05-142-35/+2
|\ \ \ \ | | | | | | | | | | [Java] Remove unsafe no-copy String allocation since it's not useful in rece…
| * | | | Remove unsafe no-copy String allocation since it's not useful in recent Java ↵Anuraag Agrawal2018-05-112-35/+2
| | |_|/ | |/| | | | | | | | | | versions.
* | | | fix index out of range error in C# generation using msvc (#1329)Warren Falk2018-05-141-1/+1
| | | |
* | | | Add file option php_metadata_namespace and ruby_package (#4609)Paul Yang2018-05-116-222/+751
| | | |
* | | | Merge pull request #4538 from Mizux/patch-2Feng Xiao2018-05-102-8/+20
|\ \ \ \ | |/ / / |/| | | Add .proto files to extract_includes.bat
| * | | fix duplicate mkdir in update_file_lists.shCorentin Le Molgat2018-04-252-21/+7
| | | | | | | | | | | | | | | | | | | | - merge loop for .h and .proto includes - fix shellcheck errors
| * | | Add .proto files to extract_includes.batMizux2018-04-242-0/+26
| | | | | | | | | | | | | | | | | | | | 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.
* | | | Throw error if user want to access message properties (#4603)Paul Yang2018-05-102-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | * Throw error if user want to access message properties * Fix typo
* | | | Avoid direct check of class name (#4601)Paul Yang2018-05-101-7/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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)Jie Luo2018-05-091-1/+2
| | | | | | | | | | | | use brew instead of easy_install in OSX (easy_install keep failing for a month)
* | | | Merge pull request #4590 from PetterS/undefined_fixFeng Xiao2018-05-061-4/+6
|\ \ \ \ | | | | | | | | | | Fix error in Clang UndefinedBehaviorSanitizer
| * | | | Fix error in Clang UndefinedBehaviorSanitizerPetter Strandmark2018-05-041-4/+6
|/ / / / | | | | | | | | | | | | | | | | | | | | 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)David Chennells2018-05-031-0/+6
| | | | | | | | | | | | 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)Yilun Chong2018-05-031-0/+2
| |/ / |/| |
* | | Merge pull request #4586 from chronoxor/masterFeng Xiao2018-05-021-1/+1
|\ \ \ | | | | | | | | Fix MinGW build
| * | | MinGW build failedIvan Shynkarenka2018-05-021-1/+1
|/ / /
* | | Merge pull request #4583 from chronoxor/masterFeng Xiao2018-05-011-4/+8
|\ \ \ | | | | | | | | Fix CMake build on Cygwin.
| * | | Cygwin build failedIvan Shynkarenka2018-05-021-4/+8
|/ / /
* | | Fix RepeatedField#delete_if (#4292)Stuart Campbell2018-04-302-2/+11
| | | | | | | | | Make RepeatedField#delete_if consistent with Array#delete_if.
* | | Add space between class name and concat message (#4577)Petar Dambovaliev2018-04-301-1/+1
| | | | | | | | | | | | 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_rasterFeng Xiao2018-04-301-0/+1
|\ \ \ | | | | | | | | Add a third-party RPC implementation: raster
| * | | Add third-party RPC implementation: raster - a network framework supports ↵Yeolar2018-04-301-0/+1
| | |/ | |/| | | | | | | pbrpc by 'service' keyword.
* / | [objectivec] Fix memory leak of exceptions raised by RaiseException() (#4556)Hiroshi Ichikawa2018-04-301-3/+3
|/ / | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* | Merge pull request #4568 from hectim/masterFeng Xiao2018-04-271-1/+1
|\ \ | | | | | | fixed typo
| * | typoBrady Killeen2018-04-261-1/+1
| | |
* | | Merge pull request #4550 from Mizux/masterFeng Xiao2018-04-271-3/+5
|\ \ \ | | | | | | | | CMake: Update CXX Standard management
| * | | CMake: Update CXX Standard managementCorentin Le Molgat2018-04-241-3/+5
| | | |
* | | | Fix to allow AOT compilers to play nicely with reflectionJon Skeet2018-04-272-18/+47
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #4553 from pherl/rubyJisi Liu2018-04-251-0/+6
|\ \ \ | |/ / |/| | Set ext.no_native = true for non mac platform
| * | Set ext.no_native = true for non mac platformJisi Liu2018-04-251-0/+6
|/ / | | | | | | | | From: https://github.com/rake-compiler/rake-compiler/issues/146#issuecomment-368539245
* | Move to Xcode 9.3 which also means a High Sierra image.Thomas Van Lenten2018-04-212-5/+17
| |
* | Remove the iOS Test App.Thomas Van Lenten2018-04-2022-472/+5
| | | | | | | | | | | | 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_buildYilun Chong2018-04-202-8/+8
|\ \ | |/ |/| Fix benchmark build
| * Fix benchmark buildYilun Chong2018-04-162-8/+8
| |
* | Write messages to backing field in generated C# cloning code (#4440)Sydney Acksman2018-04-1911-53/+53
| | | | | | | | | | | | * Edited MessageFieldGenerator to clone to backing field instead of property * Generated C# proto code