1. 12 Feb, 2019 1 commit
  2. 11 Feb, 2019 1 commit
  3. 06 Feb, 2019 2 commits
  4. 05 Feb, 2019 1 commit
  5. 04 Feb, 2019 1 commit
  6. 01 Feb, 2019 1 commit
  7. 31 Jan, 2019 4 commits
  8. 29 Jan, 2019 1 commit
  9. 28 Jan, 2019 1 commit
  10. 26 Jan, 2019 2 commits
  11. 25 Jan, 2019 5 commits
  12. 24 Jan, 2019 4 commits
  13. 23 Jan, 2019 3 commits
  14. 22 Jan, 2019 2 commits
  15. 18 Jan, 2019 5 commits
  16. 17 Jan, 2019 3 commits
    • Paul Yang's avatar
      Fix Any json encoding/decoding for ruby. (#5592) · 37a0ab7d
      Paul Yang authored
      * Fix Any json encoding/decoding for ruby.
      
      * Revert unnecessary changes
      37a0ab7d
    • Paul Yang's avatar
      Fix field mask for php in json (#5591) · c4f2a92c
      Paul Yang authored
      * Fix field mask for php in json
      
      * Update byte size
      c4f2a92c
    • i9's avatar
      Add proto3 to solidity link · 7181b1c0
      i9 authored
      pb3-gen-sol is a proto3 to solidity library generator that supports proto3 native types and uses field option for solidity native types. Both the message and generated code are more efficient than other solutions. It also includes a library to decode protobuf wireformat.
      7181b1c0
  17. 16 Jan, 2019 1 commit
    • toc007's avatar
      Ruby nested msg caps (#5564) · dda7ab03
      toc007 authored
      * Ruby nested msg caps
      
      * nested types tests added
      
      * test cases added for RubifyConstant
      
      * extracted NestedMessage to TestNestedMessage
      
      * removed nested tests with leading underscore
      
      * extracted testLowercase to toplevel testLowercaseNested
      dda7ab03
  18. 14 Jan, 2019 2 commits
    • Thomas Van Lenten's avatar
      [ObjC] add support for the TextFormat constants. · 0c957915
      Thomas Van Lenten authored
      ObjC doesn't support them, but this ensure when tests are added
      they will be handled correctly.
      
      The conformance.proto was updated in PR #5566
      0c957915
    • Sam Saccone's avatar
      Remove unused f expression from jscode gen. (#5573) · 94a1819c
      Sam Saccone authored
      Varadic assignment in javascript where the right hand expression is an
      object yields a single set assignment with the right most lefthand variable,
      while leaving the other left side expressions undefined.
      
      For example:
      var a,b = {}
      
      will only initialize a to undefined. But will set b to the {} value.
      
      --
      
      For this code since f is never used, it is a safe operation to remove
      it.
      94a1819c