1. 10 Aug, 2018 2 commits
    • Yilun Chong's avatar
      Merge pull request #4951 from BSBandme/add_js_benchmark · ba8692fb
      Yilun Chong authored
      Add JS and Protobuf.js benchmark, fix js's reader.skipGroup
      ba8692fb
    • 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
  2. 09 Aug, 2018 7 commits
  3. 08 Aug, 2018 4 commits
  4. 07 Aug, 2018 3 commits
  5. 06 Aug, 2018 2 commits
  6. 05 Aug, 2018 1 commit
  7. 03 Aug, 2018 1 commit
  8. 01 Aug, 2018 7 commits
  9. 31 Jul, 2018 4 commits
  10. 30 Jul, 2018 4 commits
  11. 28 Jul, 2018 1 commit
  12. 27 Jul, 2018 3 commits
    • Adam Cozzette's avatar
      Updated change log for 3.6.1 release · 48cb18e5
      Adam Cozzette authored
      48cb18e5
    • Adam Cozzette's avatar
      Updated version numbers to 3.6.1 · 9e1286b9
      Adam Cozzette authored
      9e1286b9
    • Paul Yang's avatar
      Give a specific category to each test. (#4965) · 8705adc2
      Paul Yang authored
      * Give a unique category to each test.
      
      This change introduce a TestCategory enum to ConformanceRequest. Existing tests
      are divided into three categories: binary format test, json format test and json
      format (ignore unknown when parsing) test. For the previous two categories, there
      is no change to existing testee programs. For tests with the last category, testee programs
      should either enable ignoring unknown field during json parsing or skip the test.
      
      * Fix python test
      
      * Fix java
      
      * Fix csharp
      
      * Update document
      
      * Update csharp generated code
      8705adc2
  13. 26 Jul, 2018 1 commit
    • Paul Yang's avatar
      Add conformance test for php c back (#4966) · bdcbcabe
      Paul Yang authored
      * Add conformance test for php c back
      
      php c extension has different result for conformance test for different
      php version and architecture. Try to add conformance back for php 7.1 c extension first.
      
      * Disable conformance test for c extension on 32-bit architecture
      32-bit and 64-bit have different failing tests
      
      * Fix typo
      bdcbcabe