aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* | | | | compiles removal of newline (#3333) (#3370)Gravatar Brent Shaffer2017-07-19
| | | | |
* | | | | Merge pull request #3375 from TeBoring/3.3.xGravatar Paul Yang2017-07-19
|\ \ \ \ \ | | | | | | | | | | | | Merge 3.3.x into master
* \ \ \ \ \ Merge pull request #3390 from danielgtaylor-isp/patch-1Gravatar Feng Xiao2017-07-18
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add note about includes to README
| | * \ \ \ \ Merge 3.3.x into masterGravatar Bo Yang2017-07-18
| | |\ \ \ \ \
* | | \ \ \ \ \ Merge pull request #3385 from anandolee/masterGravatar Jie Luo2017-07-18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION for pure python comformance
| | * | | | | | | Add note about includes to READMEGravatar Daniel Taylor2017-07-18
| |/ / / / / / / |/| | | | | | | | | | | | | | | Ran into an issue today where a machine had the `protoc` compiler but not the include files. Took a while to sort out, and this added note to the README included in every zip should help.
* | | | | | | | Support PHP generic services (#3269)Gravatar Matt A2017-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add php_generic_services option * Generate PHP generic services * Respect namespaces for generated PHP services * Test PHP generated services * Rename PHP generator service method doc comment function * Correct phpdoc service method case * Test namespaced PHP generic services * Always use the FQCN for PHP generic service input/output * Add generated_service_test to php test.sh * Add php service test protos to CI * Add php service files to php_EXTRA_DIST * Use Interface suffix for php generic services
| * | | | | | | Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION for pure python comformance testGravatar Jie Luo2017-07-17
|/ / / / / / /
* | | | | | | Merge pull request #3348 from matthauck/fix-gcc41-againGravatar Adam Cozzette2017-07-17
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix map_field_inl.h for gcc 4.1
* \ \ \ \ \ \ \ Merge pull request #3357 from bklarson/masterGravatar Adam Cozzette2017-07-17
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix build when using -Werror=undef
* \ \ \ \ \ \ \ \ Merge pull request #3134 from lundefugl/javabug1Gravatar Feng Xiao2017-07-17
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Issue 3112: Object class with fully qualified name
* \ \ \ \ \ \ \ \ \ Merge pull request #3372 from dylanetaft/masterGravatar Adam Cozzette2017-07-17
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | | Expand documentation in Readme.md
* | | | | | | | | | remove pass by reference for php setters (#3344)Gravatar Brent Shaffer2017-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * remove pass by reference for php setters * comments out memory leak test
* | | | | | | | | | Fix Implicit Return Types (#3363)Gravatar Richard Fussenegger2017-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Both native_slot_merge and native_slot_merge_by_array have no return type declared. GCC implicitly uses int as return type in such cases, however, these functions are actually void.
| * | | | | | | | | Expand documentation in Readme.mdGravatar dylanetaft2017-07-15
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | Add some supporting documentation regarding Closure for those unfamiliar., Also substantiate details for "files in this directory" - including them all will result in a project that does not compile as some are used for test cases and aren't part of the core library.
* | | | | | | | | Initial value in generated code cannot be used by c extension. (#3367)Gravatar Paul Yang2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the generated code of previous versions, each php field is given an initial value. In c extension, it was assumed that the field order in the generated code is consistent with upb fields order, so that the correct initial value can be bound to the correct upb field. However, this may not be true. The order of fields in generated code is decided by proto compiler, while the order of upb fields is decided by the hash function used in c extension. This PR fixes the issue by reset the initial value at runtime.
* | | | | | | | | removes an accidental newline in printing for the php generator (#3333)Gravatar Brent Shaffer2017-07-13
| | | | | | | | |
* | | | | | | | | Add map iterator for c extension (#3350)Gravatar Paul Yang2017-07-13
| | | | | | | | |
* | | | | | | | | Add space between arrow and casted type (#3353)Gravatar Paul Yang2017-07-13
| | | | | | | | |
* | | | | | | | | Merge pull request #3327 from htuch/fix-3322Gravatar Feng Xiao2017-07-13
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Use consistent hash across NDEBUG/!NDEBUG builds.
* | | | | | | | | | Fix repository URL in C# project fileGravatar Jon Skeet2017-07-13
| | | | | | | | | |
| | | * | | | | | | Fix build when using -Werror=undefGravatar Brad Larson2017-07-12
| |_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Correct a couple places where macros were being checked when they might not exist in some cases. Fixes #3356.
* | | | | | | | | C#: Implement IReadOnlyDictionary<K,V> in MapField<K,V>Gravatar Jean-Rémy Bancel2017-07-12
| | | | | | | | |
| | | * | | | | | Fix map_field_inl.h for gcc 4.1Gravatar Matt Hauck2017-07-11
| |_|/ / / / / / |/| | | | | | |
| | | | | | * | Windows: support long pathsGravatar Laszlo Csomor2017-07-11
| |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add implementations of open(2), mkdir(2), stat(2), etc. that support long paths under Windows (paths longer than MAX_PATH in <windows.h>, which is 260 characters). The implementations are in a separate namespace (google::protobuf::internal::win32), so they won't collide with the standard implementations in <io.h>, but after importing them with `using` they can be drop-in replacements. Fixes https://github.com/bazelbuild/bazel/issues/2634 Fixes https://github.com/google/protobuf/issues/2891
* | | | | | | Fix missing std::tr1::hash on GCC 4.1 (#2907)Gravatar Matt Hauck2017-07-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rather than crashing on use (doh!) better to just declare this platform is missing a proper hash_map/hash_set implementation and use the std::map/std::set emulation. Fixes regression introduced by #1913
* | | | | | | Add std:: namespace prefix to set and map (#3332)Gravatar tanderson-google2017-07-09
| | | | | | | | | | | | | | | | | | | | | * Remove using std::{set,map}
* | | | | | | Uncomment php tests (#3301)Gravatar Paul Yang2017-07-09
| | | | | | |
| * | | | | | Use consistent hash across NDEBUG/!NDEBUG builds.Gravatar Harvey Tuch2017-07-07
|/ / / / / / | | | | | | | | | | | | | | | | | | Fixes #3322.
* | | | | | Merge pull request #2482 from andreaseger/fix_ruby_timestamp_accuracyGravatar Adam Cozzette2017-07-06
|\ \ \ \ \ \ | | | | | | | | | | | | | | [Ruby] fix floating point accuracy problem in Timestamp#to_f
| | | | | | * add comments in makefile.amGravatar Yilun Chong2017-07-05
| | | | | | |
* | | | | | | add Grpc Protobuf validation (#3311)Gravatar MaDuo2017-07-05
| | | | | | | | | | | | | | | | | | | | | * add Grpc Protobuf validation
| | | | | | * change csharp failure listGravatar Yilun Chong2017-07-05
| | | | | | |
| | | | | | * Merge branch 'ConformanceTestYilunChong' of github.com:BSBandme/protobuf ↵Gravatar Yilun Chong2017-07-05
| | | | | | |\ | | | | | | | | | | | | | | | | | | | | | | | | into ConformanceTestYilunChong
| | | | | | * | delete backup filesGravatar Yilun Chong2017-07-05
| | | | | | | |
| | | | | | * | fix php failing list and csharp generated protoGravatar Yilun Chong2017-07-05
| | | | | | | |
* | | | | | | | Merge pull request #3315 from thomasvl/mutate_unknownsGravatar Thomas Van Lenten2017-07-05
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Expose the initializer for unknown fields.
| * | | | | | | | Expose the initializer for unknown fields.Gravatar Thomas Van Lenten2017-07-05
|/ / / / / / / /
* | | | | | | | Ensure leaveOpen is true when writing to a bufferGravatar Jon Skeet2017-07-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note that the compatibility tests have had to cahnge as well, to cope with internal changes. (The test project has access to internals in the main project.) Fixes #3209.
* | | | | | | | Make Any easier to work with in C#Gravatar Jon Skeet2017-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add a TryUnpack method which doesn't throw if the type is wrong - Make GetTypeName public for easier determination of the message type Fixes #3294.
| | | | | | | * Merge branch 'master' into ConformanceTestYilunChongGravatar Yilun Chong2017-06-30
| | | | | | |/| | |_|_|_|_|_|/ |/| | | | | |
| | | | | | * changed php's failing listGravatar Yilun Chong2017-06-30
| | | | | | |
| | | | | | * remove backup filesGravatar Yilun Chong2017-06-30
| | | | | | |
| | | | | | * add some test proto2 supported, add js proto2 supported, fixed some errorGravatar Yilun Chong2017-06-30
| | | | | | |
* | | | | | | Add json encode/decode for php. (#3226)Gravatar Paul Yang2017-06-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add json encode/decode for php. * Fix php conformance test on 32-bit machines. * Fix conformance test for c extension. * Fix comments
| | | | | | * change php objc nodejs csharp rubyGravatar Yilun Chong2017-06-29
| | | | | | |
| | | | | | * change java to uniform message, revert TestValidDataForType's parametersGravatar Yilun Chong2017-06-29
| | | | | | |
| | | | | | * change cpp and python to uniform messageGravatar Yilun Chong2017-06-29
| | | | | | |
* | | | | | | Merge pull request #3287 from sergiocampama/initializedGravatar Thomas Van Lenten2017-06-29
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add initialized as a reserved keyword as that's the actual property name
| * | | | | | | Add initialized as a reserved keyword as that's the actual property nameGravatar Sergio Campama2017-06-29
|/ / / / / / /