1. 05 Apr, 2019 1 commit
  2. 26 Mar, 2019 1 commit
  3. 20 Mar, 2019 1 commit
  4. 12 Mar, 2019 1 commit
  5. 02 Mar, 2019 1 commit
  6. 22 Feb, 2019 1 commit
  7. 31 Jan, 2019 1 commit
  8. 24 Jan, 2019 1 commit
  9. 08 Jan, 2019 1 commit
  10. 20 Dec, 2018 1 commit
  11. 15 Dec, 2018 1 commit
  12. 12 Dec, 2018 1 commit
    • Hao Nguyen's avatar
      Create a script to help update the version automatically (#5454) · 15c30d72
      Hao Nguyen authored
      * Create a script to help update the version automatically
      
      * Update comment in the update_version script
      
      * Update script to fix special handling for common.h and Makefile.am
      
      * Revise update_version script to only update the other constants in common.h if it is a major release. Reset Makefile.am version to 17:0:0
      15c30d72
  13. 14 Nov, 2018 1 commit
  14. 09 Nov, 2018 2 commits
  15. 08 Nov, 2018 1 commit
    • Dave MacLachlan's avatar
      Fix bugs in our keyword conversion support for objectivec · be83b29b
      Dave MacLachlan authored
      We have code for converting C/C++/Objc keywords that appear in protos
      to convert them so that they can be compiled.
      One of the things we need to be careful of is accidentally overriding methods
      that Apple declares in NSObject. It turns out that we have run into issues
      where we conflict with "hidden" methods in NSObject or methods added by
      categories. method_dump.sh collects all of the methods we care about for
      macOS and iOS and dumps them into objectivec_nsobject_methods.h which
      is then included in objectivec_helpers.cc as part of the build.
      
      Added a pile of tests to verify that conversions are happening as expected.
      be83b29b
  16. 08 Oct, 2018 1 commit
  17. 04 Oct, 2018 1 commit
  18. 10 Aug, 2018 1 commit
    • Feng Xiao's avatar
      Fix failing tests. · acd5b05e
      Feng Xiao authored
      1. Fix C++ tests.
        * Add missing files to Makefile.am and fix distcheck in tests.sh
        * Remove BUILT_SOURCES from conformance/Makefile.am.
        * Add some missing override keyword.
        * Add a type cast to int64 because our StrCat() in stubs can't handle size_t.
      2. Fix Java tests.
        * Add missing test dependency on guava in pom.xml.
        * Include newly referenced test data in test resources.
        * Manually fix map_lite_test.proto which is overwritten because it's mapped
          from map_test.proto in google3.
        * Add back "optimize_for = LITE_RUNTIME" which is still needed to keep the
          opensource test passing as it's still running lite tests.
        * Add a type cast in newBuilder() because without it the code doesn't compile
          with openjdk javac 1.8 (the compiler can't figure if it's the right type
          due to complex generic typing).
      3. Fix Python tests.
        * Remove/replace references to <hash_map>.
        * Suppress more warnings in setup.py.
        * Replace incorrect header inclusion for google/protobuf/proto_api.h.
        * Add strings::EndsWith to google/protobuf/stubs/strutil.h because it's
          referenced in the updated python C extension code.
        * Replace proto2 with google::protobuf. The proto2 name is leaked to
          opensource because we removed the subsitition rule for proto2 namespace
          but only fixed C++ source code and forgot to update python C extension code.
      acd5b05e
  19. 09 Aug, 2018 1 commit
  20. 27 Jul, 2018 1 commit
  21. 20 Jul, 2018 1 commit
  22. 17 Jul, 2018 1 commit
  23. 28 Jun, 2018 1 commit
    • Paul Yang's avatar
      Add -Og to no-warning-test (#4830) · f25e7edf
      Paul Yang authored
      * Add -Og to no-warning-test
      
      * Initialize value
      
      * Implement PrintFieldName in CompactRepeatedFieldPrinter to prevent Woverloaded-virtual
      
      * Update generated code
      f25e7edf
  24. 01 Jun, 2018 1 commit
  25. 14 May, 2018 1 commit
  26. 26 Mar, 2018 2 commits
  27. 22 Mar, 2018 1 commit
  28. 20 Mar, 2018 1 commit
  29. 13 Mar, 2018 1 commit
  30. 02 Mar, 2018 1 commit
  31. 24 Feb, 2018 1 commit
  32. 25 Jan, 2018 1 commit
  33. 19 Dec, 2017 1 commit
  34. 13 Dec, 2017 1 commit
    • Oleg Kolosov's avatar
      Create containing directory before generating well_known_types_embed.cc · edcf15e7
      Oleg Kolosov authored
      This fixes the following build error:
      
      oldpwd=`pwd` && cd .../protobuf/src && \
      $oldpwd/js_embed google/protobuf/compiler/js/well_known_types/any.js google/protobuf/compiler/js/well_known_types/struct.js google/protobuf/compiler/js/well_known_types/timestamp.js > $oldpwd/google/protobuf/compiler/js/well_known_types_embed.cc
      /bin/bash: line 1: .../protobuf/target/src/google/protobuf/compiler/js/well_known_types_embed.cc: No such file or directory
      Makefile:8201: recipe for target 'google/protobuf/compiler/js/well_known_types_embed.cc' failed
      
      which is observed during the cross-compilation since the version 3.2.
      edcf15e7
  35. 01 Dec, 2017 1 commit
  36. 12 Nov, 2017 1 commit
    • Jon Skeet's avatar
      Move C#-only test protos to csharp/protos · aa77eab6
      Jon Skeet authored
      unittest_proto3 had been changed in a very backward-incompatible
      way which was never going to work with C# as it imports proto2 messages.
      
      This is now a copy of the old file, but with a package name change for
      compatibility with the remaining files in src/google/protobuf.
      
      The other moves are for files that are only used by C#.
      aa77eab6
  37. 08 Nov, 2017 1 commit
    • Jisi Liu's avatar
      Fix Atomic32/AtomicWord on some platforms. · 181e284b
      Jisi Liu authored
      - Removed the redefination in the atomicword_compat.h. Now Atomic32 will
      alwyas be intptr_t in 32bit platforms, the bridge is no longer needed.
      - Change NaCl 64bit to use intptr_t instead of int32 for Atomic32,
      otherwise AtmoicWord APIs will miss the definations.
      
      After this change, the AtmoicWord will always be either Atomic32 or
      Atmoic64 depending on the platforms.
      181e284b
  38. 02 Nov, 2017 1 commit