1. 27 Mar, 2018 4 commits
  2. 14 Mar, 2018 1 commit
  3. 01 Mar, 2018 1 commit
  4. 31 Jan, 2018 1 commit
  5. 15 Jan, 2018 1 commit
    • Jon Skeet's avatar
      Add DiscardUnknownFields support for C# · 47b7d2c7
      Jon Skeet authored
      By default, unknown fields are preserved when parsing. To discard
      them, use a parser configured to do so:
      
      var parser = MyMessage.Parser.WithDiscardUnknownFields(true);
      47b7d2c7
  6. 19 Dec, 2017 2 commits
  7. 13 Dec, 2017 2 commits
  8. 12 Dec, 2017 1 commit
  9. 09 Dec, 2017 2 commits
  10. 01 Dec, 2017 1 commit
  11. 30 Nov, 2017 1 commit
  12. 29 Nov, 2017 1 commit
  13. 10 Nov, 2017 3 commits
  14. 09 Nov, 2017 3 commits
  15. 02 Nov, 2017 1 commit
  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. 28 Oct, 2017 2 commits
  19. 18 Oct, 2017 1 commit
  20. 14 Sep, 2017 2 commits
  21. 12 Sep, 2017 1 commit
  22. 05 Sep, 2017 1 commit
  23. 30 Aug, 2017 1 commit
  24. 11 Aug, 2017 1 commit
    • Jon Skeet's avatar
      Detect invalid tags with a field number of 0 in C# · e0d24cc8
      Jon Skeet authored
      Previously we only rejected the tag if the tag itself was 0, i.e.
      field=0, type=varint. The type doesn't matter: field 0 is always
      invalid.
      
      This removes the last of the C# conformance failures.
      e0d24cc8
  25. 02 Aug, 2017 1 commit
  26. 18 Jul, 2017 2 commits
    • Jisi Liu's avatar
      Update csharp and php descriptor · 86975301
      Jisi Liu authored
      86975301
    • Matt A's avatar
      Support PHP generic services (#3269) · 9e745f77
      Matt A authored
      * 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
      9e745f77
  27. 13 Jul, 2017 1 commit