- 12 Jul, 2016 2 commits
-
-
Thomas Van Lenten authored
Remove the baseline files from the make dist file list.
-
Thomas Van Lenten authored
https://github.com/google/protobuf/pull/1762 remove the files, but I forgot to update Makefile.am to remove them.
-
- 10 Jul, 2016 2 commits
-
-
Jos Hickson authored
-
Jon Skeet authored
Modify csharp README since there are now two NuGet packages
-
- 09 Jul, 2016 1 commit
-
-
Jon Skeet authored
Remove unnecessary reflection call
-
- 08 Jul, 2016 3 commits
-
-
Jon Skeet authored
This is the only call to TypeExtensions.IsValueType, so we can remove that method, making the whole type conditionally compiled out for .NET 3.5
-
Thomas Van Lenten authored
Drop the performace baselines.
-
Thomas Van Lenten authored
We weren't really using them, and the nested path causes checkout problems on windows.
-
- 07 Jul, 2016 7 commits
-
-
Thomas Van Lenten authored
Don't #import the .m files.
-
Jon Skeet authored
Change placement of DebuggerNonUserCodeAttribute
-
Feng Xiao authored
Make sure also Solaris x86 gets PATH_MAX
-
Jon Skeet authored
This does not affect the generated code. If we decide we want to apply attributes to generated types, we should start by just reverting this change.
-
Dagobert Michelsen authored
-
Jisi Liu authored
Fix problems detected when integrating the code to our internal repo.
-
Thomas Van Lenten authored
As bazel folks are looking at getting auto generation of module maps going and the importing of sources files causes issues there. We were only do it to hack around some of the apple linker behaviors around objc classes and categories, but even that isn't complete and CocoaPods was already doing -ObjC, and developers not using pods could have still needed it to ensure everything was linked anyways; so drop the hack of importing sources.
-
- 06 Jul, 2016 6 commits
-
-
Feng Xiao authored
Fix spelling
-
Feng Xiao authored
-
Feng Xiao authored
-
Adam Cozzette authored
Fixed failing JS tests
-
Adam Cozzette authored
A couple of small tweaks were needed to fix test failures that were inadvertently introduced in the last down integration. I also had to add the map.js file which was missing.
-
Thomas Van Lenten authored
add nullable qualifier to return types that can be nil, to support Swift 2 try-catch syntax
-
- 05 Jul, 2016 1 commit
-
-
Dia Kharrat authored
Add the `nullable` qualifier to return types of Objective-C methods that can return a nil due to errors. This change makes these methods compatible with the Swift 2 try-catch syntax.
-
- 04 Jul, 2016 2 commits
- 03 Jul, 2016 2 commits
-
-
Otto Kekäläinen authored
-
Otto Kekäläinen authored
-
- 01 Jul, 2016 6 commits
-
-
Feng Xiao authored
Add JsonParseOptions to ignore unknown fields
-
Feng Xiao authored
Fix some failing travis tests.
-
Feng Xiao authored
1. Add missing header file to Makefile.am. 2. Re-generate objectivec generated code for well-known types. Change-Id: If28217c701cf8bd739ea0db240e9eee600f23ee7
-
Feng Xiao authored
Add minified Json printing functionality
-
Thomas Van Lenten authored
Xcode project cleanup/setup.
-
chezRong authored
-
- 30 Jun, 2016 3 commits
-
-
Feng Xiao authored
Change-Id: Ibf7d1df850f4b497303f9f617751be98327898ef
-
Adam Cozzette authored
-
Adam Cozzette authored
In Python 2.6 the positional argument specifiers are apparently required to be explicitly specified: http://stackoverflow.com/questions/10054122/valueerror-zero-length-field-name-in-format-python
-
- 29 Jun, 2016 3 commits
-
-
Adam Cozzette authored
This includes all internal changes from around May 20 to now.
-
Thomas Van Lenten authored
- Correct some cases sources were compiled into the static lib and the tests. - Enable Xcodes code coverage support on the unittests. We aren't complete on coverage, but having the data always there should make it easier to chip away at this going forward. - Drop method in tests that isn't used, wire up a validator in another test.
-
Thomas Van Lenten authored
There was a twist code path (that some times showed up due to what happened to be in memory in failure cases), that would cast a bogus wire type into the enum, and then fall through switch statements. Resolve this by validating all wire types when parsing tags and throwing the error at that point so it can't enter the system. As added safety, stick in a few asserts for apis that get passed tags to ensure they also are only seeing valid data. Bonus: Tweak the parsing loop to skip some work when we get the end marker (zero tag) instead of still looping through all the fields.
-
- 28 Jun, 2016 2 commits
-
-
Thomas Van Lenten authored
Fix GPBGetMessage{Repeated,Map}Field()
-
Lizan Zhou authored
- add JsonParseOptions for JsonToBinaryString allow unknown fields - rename current JsonOptions to JsonPrintOptions
-