1. 25 Mar, 2019 1 commit
    • Adam Cozzette's avatar
      Avoid marking generated C++ messages as final for now (#5928) · b3c132f6
      Adam Cozzette authored
      We need to mark messages as final soon, but before we do that we need to
      provide a temporary opt-out mechanism to accommodate existing code that
      inherits from generated messages. For 3.7.1 let's stop marking messages
      final but in 3.8 we can reintroduce "final" with an opt-out option.
      b3c132f6
  2. 21 Mar, 2019 3 commits
  3. 20 Mar, 2019 1 commit
  4. 15 Mar, 2019 2 commits
  5. 14 Mar, 2019 4 commits
  6. 13 Mar, 2019 2 commits
  7. 12 Mar, 2019 2 commits
  8. 11 Mar, 2019 1 commit
  9. 08 Mar, 2019 2 commits
  10. 28 Feb, 2019 1 commit
  11. 27 Feb, 2019 1 commit
  12. 26 Feb, 2019 3 commits
  13. 25 Feb, 2019 1 commit
  14. 22 Feb, 2019 3 commits
  15. 19 Feb, 2019 2 commits
  16. 16 Feb, 2019 1 commit
  17. 14 Feb, 2019 1 commit
  18. 12 Feb, 2019 2 commits
  19. 11 Feb, 2019 1 commit
  20. 07 Feb, 2019 1 commit
  21. 06 Feb, 2019 1 commit
  22. 02 Feb, 2019 1 commit
    • Paul Yang's avatar
      Add several fixes for python toolchain (#5667) · 5b4ac53c
      Paul Yang authored
      * Add several fixes for python toolchain
      
      * Fix versin regex
      
      * Make script exit on error
      
      * Fix version regex
      
      * Fix version regex
      
      * Fix version regex
      
      * Fix version regex
      
      * Make test run on the current commit
      
      * Fix test
      
      * Fix test
      
      * Use git to retrieve current commit
      
      * Fix tests
      
      * Fix tests
      
      * Also make linux and mac work on the current commit
      
      * Fix test
      5b4ac53c
  23. 01 Feb, 2019 3 commits
    • Paul Yang's avatar
      Update php version number to 3.7.0RC2 (#5666) · 15fc6401
      Paul Yang authored
      * Update php version number to 3.7.0RC2
      
      * Update version number in source code
      15fc6401
    • Adam Cozzette's avatar
      Fixed infinite recursion problem with Java GeneratedMessageV3 (#5657) · 776b3a8b
      Adam Cozzette authored
      GeneratedMessageV3#setUnknownFieldsProto3 was trying to delegate to
      setUnknownFields but was inadvertently resulting in infinite recursion.
      This commit makes setUnknownFields and setUnknownFieldsProto3 delegate
      to a common private method to fix the problem and avoid confusion.
      776b3a8b
    • Paul Yang's avatar
      Use gnu for ruby build because strptime is provided by posix (#5660) · 7d9377e7
      Paul Yang authored
      * Use gnu for ruby build because strptime is provided by posix
      
      * Move option to extconf.rb
      
      * Remove unused code in Rakefile
      
      * Add config files for kokoro test
      
      * Use gnu 11
      
      * Define _XOPEN_SOURCE
      
      * Add gnu11 option
      
      * Remove XOPEN
      
      * Try base_cc_flags
      
      * Try config_options
      
      * Move time.h to top
      
      * Try -D_XOPEN_SOURCE=700
      
      * Define XOPEN_SOURCE directly
      
      * Try extconf.rb
      
      * Try CFLAGS
      
      * Try ext.cross_config_options
      
      * Make mac ruby release job fail on error
      
      * Try again
      
      * Try define _XOPEN_SOURCE in extconf.rb
      
      * Try again
      
      * Define __USE_XOPEN
      
      * Remove 2.6.0
      
      * No mingw
      
      * Throw error on mingw
      
      * Remove XOPEN_SOURCE in upb
      
      * Add back mingw
      
      * Remove comment
      7d9377e7