1. 09 Dec, 2016 4 commits
  2. 08 Dec, 2016 11 commits
  3. 07 Dec, 2016 6 commits
  4. 06 Dec, 2016 5 commits
  5. 05 Dec, 2016 2 commits
  6. 03 Dec, 2016 3 commits
    • Joshua Haberman's avatar
      Factored Conformance and Benchmark test messages into shared test schema. (#1971) · f1ce60e7
      Joshua Haberman authored
      * Factored Conformance test messages into shared test schema.
      
      * Updated benchmarks to use new proto3 message locations.
      
      * Fixed include path.
      
      * Conformance: fixed include of Python test messages.
      
      * Make maven in Rakefile use --batch-mode.
      
      * Revert changes to benchmarks.
      
      On second thought I think a separate schema for
      CPU benchmarking makes sense.
      
      * Try regenerating C# protos for new test protos.
      
      * Removed benchmark messages from test proto.
      
      * Added Jon Skeet's fixes for C#.
      
      * Removed duplicate/old test messages C# file.
      
      * C# fixes for test schema move.
      
      * Fixed C# to use the correct TestAllTypes message.
      
      * Fixes for Objective C test schema move.
      
      * Added missing EXTRA_DIST file.
      f1ce60e7
    • Feng Xiao's avatar
      Merge pull request #2436 from cgrushko/patch-1 · 4280c274
      Feng Xiao authored
      Add a proto_lang_toolchain() for cc_proto_library
      4280c274
    • cgrushko's avatar
      Add a proto_lang_toolchain() for cc_proto_library · 45d92aea
      cgrushko authored
      Bazel's built-in cc_proto_library rule uses a proto_lang_toolchain to learn how to invoke proto-compiler.
      To use Bazel's cc_proto_library, add the following to your project's WORKSPACE file:
      
      local_repository(
        name = "com_google_protobuf_cc",
        path = "/path/to/protobuf-distribution/"
      )
      45d92aea
  7. 02 Dec, 2016 2 commits
    • Feng Xiao's avatar
      Merge pull request #2431 from saintstack/2228v2 · 6b60dddb
      Feng Xiao authored
      Change CodedInputStream#DEFAULT_SIZE_LIMIT from 64MB to
      6b60dddb
    • Michael Stack's avatar
      Change CodedInputStream#DEFAULT_SIZE_LIMIT from 64MB to · 7550bcd8
      Michael Stack authored
      Integer.MAX_SIZE (0x7FFFFFF) #2228
      
      M java/core/src/main/java/com/google/protobuf/CodedInputStream.java
       Set DEFAULT_SIZE_LIMIT to Integer.MAX_SIZE (Was 64MB). This is how it was
       in pre-2.7.0 pb. Changed size check to an overflow-conscious test (as it
       is later in tryRefillBuffer (making sizeLimit a long was to disruptive).
      
      M java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java
       Add two tests that echo tests recently added over in c++ to test parse
       of message sizes that are approach and are beyond the size limit.
      7550bcd8
  8. 01 Dec, 2016 1 commit
  9. 30 Nov, 2016 2 commits
  10. 23 Nov, 2016 4 commits