1. 19 Jul, 2017 6 commits
  2. 18 Jul, 2017 7 commits
  3. 17 Jul, 2017 7 commits
  4. 15 Jul, 2017 1 commit
    • dylanetaft's avatar
      Expand documentation in Readme.md · 36fcc2a5
      dylanetaft authored
      Add some supporting documentation regarding Closure for those unfamiliar., Also substantiate details for "files in this directory" - including them all will result in a project that does not compile as some are used for test cases and aren't part of the core library.
      36fcc2a5
  5. 14 Jul, 2017 1 commit
    • Paul Yang's avatar
      Initial value in generated code cannot be used by c extension. (#3367) · c78dbd7c
      Paul Yang authored
      In the generated code of previous versions, each php field is given an
      initial value. In c extension, it was assumed that the field order in
      the generated code is consistent with upb fields order, so that the
      correct initial value can be bound to the correct upb field. However,
      this may not be true. The order of fields in generated code is decided
      by proto compiler, while the order of upb fields is decided by the hash
      function used in c extension.
      This PR fixes the issue by reset the initial value at runtime.
      c78dbd7c
  6. 13 Jul, 2017 5 commits
  7. 12 Jul, 2017 2 commits
  8. 11 Jul, 2017 1 commit
  9. 10 Jul, 2017 2 commits
  10. 09 Jul, 2017 1 commit
  11. 07 Jul, 2017 1 commit
  12. 06 Jul, 2017 1 commit
  13. 05 Jul, 2017 3 commits
  14. 04 Jul, 2017 1 commit
  15. 03 Jul, 2017 1 commit
    • Jon Skeet's avatar
      Make Any easier to work with in C# · 62d7fe56
      Jon Skeet authored
      - Add a TryUnpack method which doesn't throw if the type is wrong
      - Make GetTypeName public for easier determination of the message type
      
      Fixes #3294.
      62d7fe56