1. 17 Aug, 2017 4 commits
  2. 15 Aug, 2017 2 commits
  3. 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
  4. 10 Aug, 2017 2 commits
    • Feng Xiao's avatar
      Merge pull request #3480 from bklarson/master · ccb6b622
      Feng Xiao authored
      Clean up typedefs for Atomic32/Atomic64
      ccb6b622
    • Brad Larson's avatar
      Clean up typedefs for Atomic32/Atomic64 · 1b423474
      Brad Larson authored
      The typedefs for Atomic32 and Atomic64 were sometimes causing
      Atomic32 to be an int32 rather than an intptr_t on 32-bit platforms.
      On some of these platforms (ARM/CortexM building with GCC 6 in one
      case) int32 is a long int, while intptr_t is an int, which causes a
      compiler error even though long int and int are both 4 bytes.
      
      Having Atomic32 always be intptr_t on 32-bit platforms and Atomic64
      always be intptr_t on 64-bit platforms should resolve any of these
      types of errors.
      1b423474
  5. 08 Aug, 2017 3 commits
  6. 07 Aug, 2017 5 commits
  7. 04 Aug, 2017 7 commits
    • Paul Yang's avatar
    • Paul Yang's avatar
      Fix the bug in php c extension that setting one field can change another field's value. (#3455) · 49b44bff
      Paul Yang authored
      * Fix the bug in php c extension that setting one field can change another
      field's value.
      
      The reason is that previously, in c extension, it was assumed that the
      order that fields were declared in php is the same as the order of
      fields in upb. This is not true. Now, for every field in upb, we will
      look up the actual property that is corresponding to the upb field.
      
      * Cleanup pull request
      
      * Fix indentation
      
      * Port to php5
      
      * Port with php7.1
      
      * Port to zts
      49b44bff
    • michaelbausor's avatar
      Update PHP descriptors (#3391) · 21b0e558
      michaelbausor authored
      * Add descriptors test
      
      * Update descriptors tests
      
      * Add public descriptors
      
      * Add test_desriptors.proto to test script
      
      * Update composer files
      
      * Remove references to GPBType, update tests to be compatible with c
      
      * Update for c extension compatibility
      
      * Remove nested enums for descriptor, update tests
      
      * Strip leading '.' from descriptor name
      
      * Update tests with test for getClass, fix OneofDescriptor
      
      * Add new files to Makefile.am
      21b0e558
    • Jie Luo's avatar
      PY26 tests compatibility · f5817b30
      Jie Luo authored
      1, Some tests in reflection_test PY26 raise TypeError but other versions raise ValueError for convert negative long to unsigned
      2, Change compare exception type to compare exception str for testDuplicateExtensionNumber. Original code raise 'Double registration of Extensions' is not an instance of (<type 'exceptions.AssertionError'>, <type 'exceptions.ValueError'>) for PY26 cpp implementation
      
      t
      f5817b30
    • Feng Xiao's avatar
      Merge pull request #3456 from giorgioazzinnaro/patch-1 · 1ab5adbd
      Feng Xiao authored
      Update third party addons with ProfaneDB
      1ab5adbd
    • Giorgio Azzinnaro's avatar
      Update third party addons with ProfaneDB · a3e17523
      Giorgio Azzinnaro authored
      I added my project ProfaneDB, it is a database for Protocol Buffers objects. Written in C++, it uses gRPC as an interface for other languages.
      It is still work in progress, but I'd love to get some feedback on it while I progress!
      a3e17523
    • Jie Luo's avatar
  8. 03 Aug, 2017 2 commits
  9. 02 Aug, 2017 2 commits
  10. 01 Aug, 2017 2 commits
  11. 31 Jul, 2017 2 commits
  12. 26 Jul, 2017 7 commits
  13. 25 Jul, 2017 1 commit