1. 20 Dec, 2017 2 commits
  2. 19 Dec, 2017 2 commits
  3. 14 Dec, 2017 1 commit
  4. 13 Dec, 2017 6 commits
  5. 12 Dec, 2017 2 commits
  6. 09 Dec, 2017 1 commit
  7. 08 Dec, 2017 1 commit
  8. 07 Dec, 2017 3 commits
  9. 01 Dec, 2017 1 commit
  10. 28 Nov, 2017 1 commit
  11. 27 Nov, 2017 1 commit
  12. 12 Nov, 2017 1 commit
    • Jon Skeet's avatar
      Move C#-only test protos to csharp/protos · aa77eab6
      Jon Skeet authored
      unittest_proto3 had been changed in a very backward-incompatible
      way which was never going to work with C# as it imports proto2 messages.
      
      This is now a copy of the old file, but with a package name change for
      compatibility with the remaining files in src/google/protobuf.
      
      The other moves are for files that are only used by C#.
      aa77eab6
  13. 10 Nov, 2017 1 commit
  14. 08 Nov, 2017 2 commits
  15. 02 Nov, 2017 2 commits
  16. 01 Nov, 2017 1 commit
    • Jon Skeet's avatar
      Fix merging with message-valued oneof · cbe25059
      Jon Skeet authored
      If messages A and B have the same oneof case, which is a message
      type, and we merge B into A, those sub-messages should be merged.
      
      Fixes #3200.
      
      Note that I haven't regenerated all the code, as some of the protos
      have been changed, breaking generation.
      cbe25059
  17. 30 Oct, 2017 1 commit
  18. 26 Oct, 2017 1 commit
    • Paul Yang's avatar
      Reserve unknown in Ruby (#3763) · 23adfeb0
      Paul Yang authored
      * Reserve unknown in ruby
      
      * Revert ruby tests. Wait for cpp impl for conformance test
      
      * Add conformance test for preserving unknown
      
      * Add unknown field conformance test to csharp failure list.
      
      * Fix comments
      
      * Fix comment
      
      * Fix comments
      
      * Fix typo
      
      * Use stringsink_string directly
      
      * Mark hd unused
      
      * Remove unused encodeunknown_handlerfunc
      23adfeb0
  19. 18 Oct, 2017 5 commits
  20. 16 Oct, 2017 1 commit
  21. 14 Oct, 2017 1 commit
  22. 12 Oct, 2017 2 commits
  23. 02 Oct, 2017 1 commit
    • Bruce Dawson's avatar
      Use constexpr more with VC++ 2017 (#3707) · 210be267
      Bruce Dawson authored
      * Use constexpr more with VC++ 2017
      
      Chrome's official builds have over 170 dynamic initializers for
      variables of the form *::TableStruct::aux. Defining
      PROTOBUF_CONSTEXPR_VAR to be constexpr for VS 2017 gets rid of all of
      these and saves about 10 KB of binary size.
      
      * Update generated_message_table_driven.h
      
      Restore accidentally deleted line.
      210be267