1. 6c65a55 jsonpb: fix marshaling of Duration by Herbie Ong · 6 years ago
  2. e91709a fix indentation in jsonpb with Any messages by Joshua Humphries · 6 years ago
  3. 8d0c54c protoc-gen-go: generate XXX_OneofWrappers instead of XXX_OneofFuncs (#760) by Joe Tsai · 7 years ago
  4. 7011d38 protoc-gen-go: put all imports in one section (#720) by Damien Neil · 7 years ago
  5. 7b18087 protoc-gen-go: more standard import organization (#719) by Damien Neil · 7 years ago
  6. 7716a98 protoc-gen-go: simplify init function generation (#716) by Damien Neil · 7 years ago
  7. acc5013 protoc-gen-go: Don't set the json tag on extension fields. (#713) by Damien Neil · 7 years ago
  8. 39da819 protoc-gen-go: add more spaces between methods (#712) by Damien Neil · 7 years ago
  9. 88bc711 protoc-gen-go: add blank line after extension method (#711) by Damien Neil · 7 years ago
  10. a47340a protoc-gen-go: put imports in a single import() block (#707) by Damien Neil · 7 years ago
  11. 0f2620f protoc-gen-go: use consistent receiver name for messages (#700) by Damien Neil · 7 years ago
  12. e344474 protoc-gen-go: add blank lines between various enum functions (#697) by Damien Neil · 7 years ago
  13. fffb0f7 proto: uniquify descriptor var based on filename alone (#696) by Damien Neil · 7 years ago
  14. 7d1b268 jsonpb: avoid unexported fields in hand-crafted message (#671) by Joe Tsai · 7 years ago
  15. 560bdb6 jsonpb: strictly document JSONPBMarshaler and JSONPBUnmarshaler behavior (#662) by Joe Tsai · 7 years ago
  16. 93b26e6 protoc-gen-go: refactor generator by splitting up generateMessage (#657) by Patrik Nyblom · 7 years ago
  17. 14aad3d jsonpb: avoid copying string-valued map-keys (#654) by David Howden · 7 years ago
  18. f05648d jsonpb: handle map key and value properties properly (#645) by Kassian Sun · 7 years ago
  19. 9eb2c01 jsonpb: decode int32/uint32/float32/float64 strings (#630) by Kassian Sun · 7 years ago
  20. 05f48f4 proto: revert UTF-8 validation for proto2 (#628) by Joe Tsai · 7 years ago
  21. 64db29d jsonpb: error on scalar enum provided for repeated enums instead of panic by Stan Nelson · 7 years ago
  22. 70c277a jsonpb: fix unmarshaling JSON object with escaped string into Struct type (#612) by Herbie Ong · 7 years ago
  23. 397ff90 protoc-gen-go: use keyed ExtensionRange literals (#560) by Joe Tsai · 7 years ago
  24. d0dc0de Reduce a bunch of generated code in oneof sizers. (#557) by David Symonds · 7 years ago
  25. 251359b protobuf: Delete makefiles, regenerate protos consistently (#546) by Damien Neil · 7 years ago
  26. 9d4962b protoc-gen-go: handle package import names per-file (#543) by Damien Neil · 7 years ago
  27. f4733c7 protoc-gen-go: don't depend on input file ordering (#542) by Damien Neil · 7 years ago
  28. 60f8421 Rename generated Marshal and Unmarshal protobuf method (#536) by Joe Tsai · 7 years ago
  29. efae459 no more generated package doc (#528) by Joshua Humphries · 7 years ago
  30. 42d4f47 jsonpb: skip unexported or non-protobuf fields (#510) by Joshua Humphries · 7 years ago
  31. b409cc5 proto: remove Proto3UnknownFields flag (#497) by Joe Tsai · 8 years ago
  32. f9bf3fb jsonpb: change Marshal to trim timestamp/duration to 0 fractional digits if possible (#490) by oChen · 8 years ago
  33. ac606b1 jsonpb: fix handling of illegal and negative nanoseconds (#492) by dfawley · 8 years ago
  34. 2bc5431 jsonpb: change Marshal/Unmarshal to return error if any required field is not set (#472) by Herbie Ong · 8 years ago
  35. 49f2ba7 jsonpb: check for nil in Marshal and return error to avoid panic. (#469) by Herbie Ong · 8 years ago
  36. 5c7dd33 Simplify code (#314) by Tamir Duberstein · 8 years ago
  37. 013f295 Correct some mistakes (#316) by Tamir Duberstein · 8 years ago
  38. 8cc9e46 Upstream internal Google protobuf changes by Joe Tsai · 8 years ago
  39. 130e6b0 jsonpb: fix unmarshal null to value that implements JSONPBUnmarshaler (#429) by Xiao Zhang · 8 years ago
  40. 5afd06f jsonpb: add support for custom resolution of Any messages to/from JSON (#410) by Joshua Humphries · 8 years ago
  41. 1909bc2 jsonpb: unmarshal JSON null to nil map/slice instead of empty instance (#404) by Tamir Duberstein · 8 years ago
  42. 748d386 jsonpb: unmarshal JSON "null" for WKT (#394) by Christopher Spahr · 8 years ago
  43. 0a4f71a Remove unnecessary conversions (#315) by Tamir Duberstein · 8 years ago
  44. 5a0f697 Deserialize JSON NaN, Infinity and -Infinity to corresponding Go values (#363) by Jakub Vrána · 8 years ago
  45. 6e4cc92 Fix JSON marshaling of Any containing object that implements JSONPBMarshaler (#361) by Joshua Humphries · 8 years ago
  46. 9f174c9 Fix jsonpb to serialize NaN and Infinity as special strings (#242) by Vladimir Varankin · 8 years ago
  47. 63bfc70 Fixed broken tests on pre-go1.8 #356 (#359) by Herbie Ong · 8 years ago
  48. 7a211bc Fix jsonpb to emit zero values for Map, Slice, Ptr when EmitDefaults=true by Eric Wang · 8 years ago
  49. a4e8f93 Support custom JSON (de)serialization in jsonpb by Joshua Humphries · 8 years ago
  50. 157d9c5 regenerate pb.go files with protobuf 3.3.0 by Ross Light · 8 years ago
  51. 18c9bb3 jsonpb: unmarshalling of Struct, ListValue, Value, Any and proto2 extensions; and marshalling of ListValue. by CH Albach · 8 years ago
  52. 56841e9 jsonpb: merge https://github.com/golang/protobuf/pull/255 by bcmills · 9 years ago
  53. 62e782f proto: Fix a Marshal race on messages with extensions. by bcmills · 9 years ago
  54. 224aaba jsonpb: treat `null` JSON values for `Timestamp` and `Duration` as defaults (#255) by Mark Costello · 9 years ago
  55. 4a5b3fd Regenerate pb.go files after https://github.com/golang/protobuf/commit/24f28ae800abfde9310e779f94be606b1a98a3fc by Lukasz Milewski · 9 years ago
  56. 0358ab2 Generate new pb.go files. by Lukasz Milewski · 9 years ago
  57. 730e912 Fix jsonpb for Go 1.8 by joetsai · 9 years ago
  58. e8b7c67 Fix Timestamp Unmarshaling for pre-epoch times by Lincoln Stoll · 9 years ago
  59. 2c1988e Update Go tests for C++ JSON name change by Feng Xiao · 9 years ago
  60. 18a29c0 regenerate .pb.go by Ross Light · 9 years ago
  61. af59feb jsonpb: sort numeric proto keys in numeric order by Damien Neil · 9 years ago
  62. 3852dcf jsonpb: add option to ignore unknown fields in a message by Ross Light · 9 years ago
  63. ba6f978 Make proto.RegisterFile public for gRPC by Ross Light · 9 years ago
  64. c27503d Fix marshalAny's handling of indentation. by Googler · 9 years ago
  65. f43dfb5 Add missing error check in jsonpb's marshal implementation. by Googler · 9 years ago
  66. 3b06fc7 net/proto2/go: make a slight change to how we handle []byte fields by matloob@google.com · 9 years ago
  67. e51d002 net/proto2: remove <message>.ExtensionMap() from generated messages by matloob@google.com · 9 years ago
  68. bf531ff jsonpb: Marshal Any according to the spec. by David Symonds · 9 years ago
  69. f0a097d jsonpb: Fix handling of repeated enums. by David Symonds · 9 years ago
  70. 62e4364 jsonpb: Accept both camelCase and orig_name as field names for oneof fields. by David Symonds · 9 years ago
  71. 9951127 Add support for decoding a stream of JSON objects. by Nikki VonHollen · 9 years ago
  72. 552c7b9 jsonpb: Handle Struct and NullValue WKTs. by David Symonds · 9 years ago
  73. c6184d3 jsonpb: Format and parse the WKTs in wrappers.proto. by David Symonds · 9 years ago
  74. 553c764 Generate XXX_WellKnownType method for recognised well-known types. by David Symonds · 9 years ago
  75. 001690d Switch jsonpb.Marshaler to use camelCase by default. by David Symonds · 9 years ago
  76. 45bba20 jsonpb: Don't emit zero value proto3 fields by default. by David Symonds · 10 years ago
  77. 5fc2294 Clarify jsonpb package docs. by David Symonds · 10 years ago
  78. 2402d76 Add compatibility markers to proto generated code. by David Symonds · 10 years ago
  79. 0879490 Generate sizer functions for oneofs. by Damien Neil · 10 years ago
  80. 221834d Regenerate protos. by David Symonds · 10 years ago
  81. f9dd693 jsonpb: Implementing marshaling of proto2 extensions. by Juraj Stacho · 10 years ago
  82. 8a5d8e8 jsonpb: Remove Marshaler.EnumsAsString. by David Symonds · 10 years ago
  83. 9ebc6c4 jsonpb: Disable Marshaler.EnumsAsString; it is now the default. by David Symonds · 10 years ago
  84. 0ea3c03 jsonpb: Introduce Marshaler.EnumsAsInts. by David Symonds · 10 years ago
  85. 5d7f79b Fix jsonpb parsing of enums as names for proto3. by David Symonds · 10 years ago
  86. 535a104 Fix size of oneof fields when they are set to their zero value. by David Symonds · 10 years ago
  87. 1baed09 Expose the thorny part of the oneof metadata interpretation. by David Symonds · 10 years ago
  88. 59b73b3 Implement oneof support. by David Symonds · 10 years ago
  89. 21f8136 jsonpb: Fix spelling of Marshaler. by David Symonds · 10 years ago
  90. 31db569 jsonpb: Simplify JSON field name selection. by David Symonds · 10 years ago
  91. 3fe63ce jsonpb: Reject unknown fields when parsing into a struct. by David Symonds · 10 years ago
  92. a1463b9 Check in generated .pb.go files for the jsonpb test proto. by David Symonds · 10 years ago
  93. 67cbcad jsonpb: New package. by Buck Clay · 10 years ago