- 03 Jun, 2016 2 commits
-
-
Josh Haberman authored
Python 2.x doesn't detect unpaired surrogates so we have to do that manually.
-
Josh Haberman authored
The failure lists were falling out of date because the tests would pass even if people forgot to remove failures from the list.
-
- 02 Jun, 2016 3 commits
-
-
Bo Yang authored
-
Sergio Campamá authored
Add more context to GPBCodedInputStream failures. Have GPBMessage parsing apis extract out the GPBCodedInputStream information and expose it. Update HeaderDocs with pointers to all error domains/codes. Expand the unittests to cover the full set of errors reported. Fixes https://github.com/google/protobuf/issues/1618
-
Feng Xiao authored
Add https://github.com/os72/protobuf-dynamic
-
- 01 Jun, 2016 1 commit
-
-
https://github.com/os72/protobuf-dynamicos72 authored
Add reference to Protocol Buffers Dynamic Schema (https://github.com/os72/protobuf-dynamic)
-
- 31 May, 2016 5 commits
-
-
Feng Xiao authored
Update the list of places where the version is stored.
-
Feng Xiao authored
Bump cmake minimum required version to 2.8.12
-
Feng Xiao authored
add protobuf as3 lib and code generator for as3
-
Feng Xiao authored
Remove unused lines from CMake files.
-
Thomas Van Lenten authored
Merge beta-3 release branch into master.
-
- 30 May, 2016 2 commits
-
-
Thomas Van Lenten authored
Removing unused GPBExceptionMessageKey
-
Eric Zhong authored
1.only support proto3 2.support oneof map 3.support nested message and enum for as3
-
- 28 May, 2016 2 commits
-
-
Walter Gray authored
-
Walter Gray authored
-
- 27 May, 2016 7 commits
-
-
-
Thomas Van Lenten authored
Add -Woverriding-method-mismatch.
-
Thomas Van Lenten authored
fix expected class checking in GPBSetMessageRepeatedField
-
Thomas Van Lenten authored
Fixes up the code to avoid some issues with isEqual: methods. Opened https://github.com/google/protobuf/issues/1616 to track the KVC collision.
-
Walter Gray authored
-
Walter Gray authored
-
Walter Gray authored
-
- 26 May, 2016 4 commits
-
-
Jon Wall authored
This is currently checking for the wrong class for enums and NSMutableArray fields.
-
Thomas Van Lenten authored
Add more warnings to for the ObjC runtime build
-
Jisi Liu authored
Bazel build: Keep generated sources and Python runtime in the same directory
-
David Z. Chen authored
Users often encounter a Python import error when trying to build Python protos if protobuf is installed locally on the machine. In this case, Python ends up looking in the wrong directory when importing files (see bazelbuild/bazel#1209 and tensorflow/tensorflow#2021). It seems that the problem is caused by Python getting confused when there are Python source files that are meant to be part of the same package but are in separate directories. Prior to #1233, the Bazel build setup would copy the Python runtime sources and all generated sources for the builtin protos into the root directory (assuming that the protobuf tree is vendored in a google/protobuf directory). With #1233, the two sets of sources are kept in their respective directories but both `src/` and `python/` are added to the `PYTHONPATH` using the new `imports` attribute of the Bazel Python rules. However, both the runtime sources and the generated sources are under the same package: `google.protobuf`, causing Python to become confused when trying to import modules that are in the other directory. This patch adds a workaround to the Bazel build to add a modified version of the original `internal_copied_filegroup` macro to copy the `.proto` files under `src/` to `python/` before building the `py_proto_library` targets for the builtin protos. This ensures that the generated sources for the builtin protos will be in the same directory as the corresponding runtime sources. This patch was tested with the following: * All Python tests in protobuf * All Python tests in tensorflow * All tests in [Skydoc](https://github.com/bazelbuild/skydoc) * Importing protobuf as `//google/protobuf` * Importing and binding targets under `//external` * Importing protobuf as `//third_party/protobuf`
-
- 25 May, 2016 2 commits
-
-
Thomas Van Lenten authored
Working on https://github.com/google/protobuf/issues/1599, specifically: - Turn on more warnings that the Xcode UI calls out with individual controls. - Manually add: -Wundef -Wswitch-enum - Manually add and then diable in the unittests because of XCTest's headers: -Wreserved-id-macro -Wdocumentation-unknown-command - Manually add -Wdirect-ivar-access, but disable it for the unittests and in the library code (via #pragmas to suppress it). This is done so proto users can enable the warning.
-
Thomas Van Lenten authored
Automated testing tweaks for ObjC
-
- 24 May, 2016 4 commits
-
-
Thomas Van Lenten authored
- Move the ObjC tests into the list and exclude them on linux, this will change where in the order they start, since they are longer, it will have other things run in parallel instead of them ending up last and taking the longest. - Switch to the Xcode 7.3 image. - Drop the use of xctool and stream line things through the full_mac_build.sh script. This means we end up with only one build script instead of two. - Tweaks to the mac build script: - Make iOS Xcode version support explicit - Support Debug/Release only building - Change the OS X min parallel count to 2 to better deal with VMs. - Split the travis ios tests into the two Xcode Configurations as the logs are choking travis.
-
Thomas Van Lenten authored
Better support for using the proto library from a framework.
-
Joshua Haberman authored
Add js/binary/encoder.js to js_EXTRA_DIST.
-
Thomas Van Lenten authored
- Add generator constant for the default framework name. - Add generator api for making the CPP symbol from the name. - Add generator api to see if it is a bundled proto file. - Output a CPP conditional and two imports for the core library headers. - Add helper for generating the #import for file headers to deal with the framework imports. - Add a reference from the unittests to a WKT to use that to inspect how imports generate. - Update the podspec to define the CPP symbol and require pods 1.0 (or later). Fixes https://github.com/google/protobuf/issues/1457
-
- 23 May, 2016 2 commits
-
-
Feng Xiao authored
added missing closing bracket for _cmakedir_desc in cmake/install.cmake:88
-
Andy Hochhaus authored
-
- 21 May, 2016 3 commits
-
-
Jeff Merver authored
-
Feng Xiao authored
Add protobuf:: namespace to installed targets
-
Walter Gray authored
-
- 20 May, 2016 3 commits
-
-
Feng Xiao authored
Add compatibilty tests against v2.5.0
-
Feng Xiao authored
-
Thomas Van Lenten authored
Make the CocoaPods integration tests more robust
-