- 08 Dec, 2016 1 commit
-
-
Thomas Van Lenten authored
- Check the parent file options for deprecation when deciding to tag Messages and Enums as deprecated. - Within the generated source push/pop the warning for implementing deprecated things around a deprecated class implementation. - Annotate the methods generated for extension fields as deprecated. - Add a testing .proto file that covers deprecated fields, messages, enums, enum values and compile it into the unittests to confirm things compile cleanly. - Add a testing .proto file that uses the file level option to make everything deprecated and compile it into the unittests to confirm things compile cleanly.
-
- 07 Dec, 2016 5 commits
-
-
Adam Cozzette authored
Send all protobuf logging to logcat by default on Android
-
Adam Cozzette authored
Currently the default for protobuf on Android is to silently drop all log messages. This makes debugging difficult because things like GOOGLE_LOG(FATAL) will crash the process without actually logging a useful error. This CL changes the logging so that by default we send messages for all log levels to logcat (and stderr). Users can override this by setting GOOGLE_PROTOBUF_MIN_LOG_LEVEL. Also, that option was not being respected for non-Android platforms so I went ahead and fixed that to make things consistent.
-
Joshua Haberman authored
-
Feng Xiao authored
Export symbols used in inline functions
-
Julien Brianceau authored
fixed_address_empty_string symbol is used in an inline function. We have to export it to avoid undefined reference link errors.
-
- 06 Dec, 2016 4 commits
- 05 Dec, 2016 2 commits
- 03 Dec, 2016 3 commits
-
-
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.
-
Feng Xiao authored
Add a proto_lang_toolchain() for cc_proto_library
-
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/" )
-
- 02 Dec, 2016 2 commits
-
-
Feng Xiao authored
Change CodedInputStream#DEFAULT_SIZE_LIMIT from 64MB to
-
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.
-
- 01 Dec, 2016 1 commit
-
-
Paul Yang authored
-
- 30 Nov, 2016 2 commits
-
-
Thomas Van Lenten authored
Add a swift_prefix file option.
-
Thomas Van Lenten authored
Swift generators should default to CamelCasing the proto package and prefixing symbols with that, but this option allows developers to override that behavior with something custom if they desire. Fixes https://github.com/google/protobuf/issues/1833
-
- 23 Nov, 2016 4 commits
-
-
Adam Cozzette authored
Integrated internal changes from Google
-
Adam Cozzette authored
This makes a couple of changes to fix the tests for JRuby 1.7: - Avoid using assert_false since that assertion seems not to exist in older versions - Disable a test related to respond_to? for JRuby. It's hard to tell what is going wrong here but it looks like probably a JRuby bug that has been fixed in more recent versions.
-
Adam Cozzette authored
In Python 3 the values() method on a dictionary returns a view instead of a list, so we need to explicitly convert that to a list.
-
Adam Cozzette authored
This seems to be necessary to prevent warnings in some compiler configurations, particularly for tag numbers that are too large to fit in a signed 32-bit int.
-
- 22 Nov, 2016 5 commits
-
-
Adam Cozzette authored
The curly brace syntax for sets was introduced in Python 2.7, and so for compatibility with 2.6 we need to avoid using it for now.
-
Feng Xiao authored
Support grpc plugin in py_proto_library
-
Wiktor Tomczak authored
-
Adam Cozzette authored
A new test is now passing and so we can remove it from the failure whitelist.
-
Adam Cozzette authored
Fixed JSPB test failures
-
- 21 Nov, 2016 7 commits
-
-
Adam Cozzette authored
-
Feng Xiao authored
C++: Fix use with GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER
-
Feng Xiao authored
Restore jenkins files.
-
Adam Cozzette authored
-
Adam Cozzette authored
-
Adam Cozzette authored
-
Julien Brianceau authored
Behavior of define GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER has been altered between 337a028b and cc8ca5b6 for C++. See github issue #2385 for further details.
-
- 19 Nov, 2016 1 commit
- 18 Nov, 2016 3 commits