- 06 Nov, 2018 3 commits
-
-
gerben-s authored
Add Dart example.
-
Adam Cozzette authored
3rd-party: include Protolock utility
-
Steve Manuel authored
-
- 05 Nov, 2018 1 commit
-
-
Sydney Acksman authored
Add group support for proto2
-
- 04 Nov, 2018 1 commit
-
-
Parveen Bhatia authored
-
- 02 Nov, 2018 1 commit
-
-
Thomas Van Lenten authored
No changes were needed, but since the Xcode projects pick up the updated setting, the tests require a newer Xcode that supports Swift 4. This is being done because Xcode 10 starting warning about Swift 3 support going away in the future, so we might as well do the updates since most folks shouldn't be on those really old Xcode versions any more.
-
- 01 Nov, 2018 3 commits
-
-
Thomas Van Lenten authored
-
Thomas Van Lenten authored
-
Thomas Van Lenten authored
Not sure the history for why there were two objc_library targets, but given the one has an issue about not working, merge them into a single target and an alias. - Use the alias for :objectivec since that naming doesn't seem to follow the other targets *_library targets here. - Update :protobuf_objc to be use for the working target and just inline the sources/headers lists so there is less indirection in the file. Fixes #5284
-
- 31 Oct, 2018 1 commit
-
-
Adam Cozzette authored
Remove unused types
-
- 29 Oct, 2018 3 commits
-
-
Brian Silverman authored
They're not doing anything, so might as well get rid of them.
-
Toby Hsieh authored
Given an argument, the previous implementation was off by one (`.first(2)` would return 3 elements) compared to the `Enumerable#first` method.
-
Adam Cozzette authored
Fix error: unused parameter 'arena' [-Werror=unused-parameter]
-
- 23 Oct, 2018 3 commits
-
-
micw523 authored
-
Sarah Zakarias authored
-
Sarah Zakarias authored
-
- 22 Oct, 2018 3 commits
-
-
Paul Yang authored
* Remove ruby21 and ruby22 tests * Update test badge
-
Adrián Nieto Rodríguez authored
-
Yilun Chong authored
Add node and php to benchmark dashboard
-
- 18 Oct, 2018 2 commits
-
-
Paul Yang authored
* Add ruby 2.3, 2.4 and 2.5 test for linux. * Update kokoro files * Add back commented gc test * Fix gc_test failure * Remove unused code * Update ruby 2.5.0 to 2.5.1 * Update ruby 2.3 to 2.3.8 * Remove useless comment
-
Thomas BARBIER authored
-
- 17 Oct, 2018 1 commit
-
-
Adam Cozzette authored
Removed unnecessary includes from stubs/common.h
-
- 16 Oct, 2018 2 commits
-
-
Adam Cozzette authored
-
Yilun Chong authored
-
- 15 Oct, 2018 3 commits
-
-
Joshua Haberman authored
Revert "protobuf_generate(): add relative path to output dir"
-
Yilun Chong authored
Remove unnecessary cast to Builder in generated Java code
-
Sarah Zakarias authored
-
- 13 Oct, 2018 1 commit
-
-
Yilun Chong authored
-
- 12 Oct, 2018 2 commits
- 11 Oct, 2018 2 commits
-
-
Adam Cozzette authored
Link to libatomic when necessary (eg. on armv6l)
-
Sebastian Lövdahl authored
-
- 10 Oct, 2018 2 commits
-
-
Adam Cozzette authored
Update third_party.md regarding Erlang
-
Kenneth Lundin authored
Removing links to Erlang projects which are no longer maintained.
-
- 08 Oct, 2018 4 commits
-
-
Adam Cozzette authored
remove obsolete parent
-
Ben Wolsieffer authored
-
Paul Yang authored
* Replace assert_true/assert_false with assert, because they are not provided in newer version of test/unit * Use rescue to handle exception subclass * Commented out the require that caused gc_test failure. * Commented out test * Fix typo
-
Benjamin Krämer authored
* Ported FieldMaskUtil from Java to C# * Merged FieldMaskUtil into FieldMaskPartial - Removed FieldMaskUtil - Moved FieldMaskTree to root - Updated tests * Improved tests - Removed internal method FieldMaskTree.GetFieldPaths - Proof FieldMask.Paths only contains expected values * Added FieldMaskTreeTest to Makefile * Added FieldMaskTree to Makefile
-
- 07 Oct, 2018 1 commit
-
-
michaelbausor authored
* Add support for primitive types in setters * Update to address PR feedback * Add tests and fixes for repeated fields * Remove repeated field code, add getters * Cleanup, test getters and oneofs * Move boxing logic into separate class * Add tests for wrapper type constructor args * Update to add new setXXXValue methods * Fix tests for invalid values * Fix c extension for wrapper accessors * Fix the bug that well known types didn't call Message_construct * Address PR comments * Refactoring init message with array logic * Add include path to protoc * Add missing TSRM_LS defintion * Fix TSRM_LS * Fix dist check
-
- 05 Oct, 2018 1 commit
-
-
Leon Barrett authored
* Fix parsing empty Struct Values from Json This fixes a bug. When parsing a struct from JSON like struct = json_format.Parse('{"k": {}}', Struct()) then the struct's "k" value would end up not initialized, and accessing the value would raise an error. In[1]: struct['k'] ValueError: Value not set That seems to be because the Struct field of the Value was not set. In[2]: struct Out[2]: fields { key: "k" value { } } This commit makes sure that the Value's Struct field is initialized even if the Struct has no values itself. This commit also extends a test to cover this case. * Additionally test for empty list
-