1. 07 Aug, 2017 2 commits
  2. 04 Aug, 2017 5 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
    • 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
  3. 03 Aug, 2017 1 commit
  4. 02 Aug, 2017 2 commits
  5. 01 Aug, 2017 2 commits
  6. 31 Jul, 2017 2 commits
  7. 26 Jul, 2017 7 commits
  8. 25 Jul, 2017 4 commits
  9. 24 Jul, 2017 7 commits
  10. 23 Jul, 2017 2 commits
  11. 21 Jul, 2017 2 commits
  12. 20 Jul, 2017 2 commits
  13. 19 Jul, 2017 2 commits
    • Jie Luo's avatar
      Merge pull request #3262 from snnn/master · bba4c4ae
      Jie Luo authored
      Make it compatible with python 3.6.1
      bba4c4ae
    • Adam Cozzette's avatar
      Fixed dynamic initialization for C++ lite · 417aae61
      Adam Cozzette authored
      An ifdef condition seems to have been inverted by mistake, causing the
      dynamic initialization to occur for lite if and only if the
      _NO_STATIC_INITIALIZER macro is set. This problem manifested itself as
      segfaults due to uninitialized empty strings:
      https://github.com/google/protobuf/issues/2839
      
      Since no one complained about initialization not happening, it would
      appear that we can just disable this initialization for lite
      unconditionally, so that is what this change does. Instead of the
      default instance initialization happening pre-main, it now always
      happens lazily when needed.
      417aae61