- 19 Jul, 2016 5 commits
-
-
Nikolai Vavilov authored
-
Nikolai Vavilov authored
-
Joshua Haberman authored
JavaScript: segregate references to binary functionality
-
Josh Haberman authored
-
Feng Xiao authored
Include javadoc/source in Java release packages.
-
- 18 Jul, 2016 8 commits
-
-
Feng Xiao authored
Also fixed javadoc errors. [ci skip]
-
Josh Haberman authored
-
Feng Xiao authored
-
Josh Haberman authored
This change will help us separate binary support into separate files, because we only refer to binary serialization functions in the actual binary serialization paths.
-
Feng Xiao authored
Added 3.0.0-beta-4 changelog.
-
Feng Xiao authored
Change-Id: I43f7e04a53d1445dfa86db310bdb18ceb446398c
-
Thomas Van Lenten authored
Use public methods to fetch oneofs in generated code.
-
Thomas Van Lenten authored
When building into frameworks, the generated code doesn't always have direct access to the proto internals. Instead of opening up the access, just use the public method to fetch the correct oneof. Fixes https://github.com/google/protobuf/issues/1789
-
- 15 Jul, 2016 5 commits
-
-
Feng Xiao authored
Change-Id: Ic07a7c664930209974244c66885d672288982610
-
Sergio Campamá authored
Exposes the currently registered extensions for a message and removes the internal sortedExtensionsInUse
-
Sergio Campamá authored
Uses head version of rvm to avoid shell_update_session not found error Fixes #1786
-
Feng Xiao authored
Change-Id: I997012e7e9b58d9ec8b2f59429d71c98d81aa40d
-
Feng Xiao authored
Fix compatibility issues for the future GeneratedMessageV3 change.
-
- 14 Jul, 2016 13 commits
-
-
Feng Xiao authored
Currently some public API methods are defined in GenreatedMessage.java and they have a generric return type: class GeneratedMessage { class Builder<BuilderType extends Builder<BuilderType>> { public BuilderType setField(...); public BuilderType setExtension(...); } } With these definitions, the compiled byte code of a callsite will have a direct reference to GeneratedMessage. For example: fooBuilder.setField(...); becomes: ##: invokevirtual // Method Builder.setField:(...)LGeneratedMessage.Builder ##: checkcast // class Builder This will prevent us from updating generated classes to subclass a different versioned GeneratedMessageV3 class in the future (we can't do it in a binary compatible way). This change addresses the problem by overriding these methods directly in the generated class: class Foo { class Builder extends GeneratedMessage.Builder<Builder> { public Builder setField(...) { return super.setField(...); } } } After this, fooBuilder.setField(...) will be compiled to: ##: invokevirtual // Method Builder.setField:(...)LFoo.Builder The callsites will no longer reference GeneratedMessage directly and we can change Foo to subclass GeneratedMessageV3 without breaking binary compatiblity. The downside of this change is: 1. It increases generated code size (though it saves some instructions on the callsites). 2. We can never stop generating these overrides because doing that will break binary compatibility. Change-Id: I879afbbc1325a66324a51565e017143489b06e97
-
Feng Xiao authored
-
Jon Skeet authored
Merge C# changes from master to 3.0.0-beta4
-
Jon Skeet authored
This also updates the version number to 3.0.0-beta4
-
Jon Skeet authored
We now just perform the optimization within AddRange itself. This is a breaking change in terms of "drop in the DLL", but is source compatible, which should be fine.
-
Jon Skeet authored
(Also fix a few more C# 6-isms.)
-
Jon Skeet authored
This fixes issue #1730.
-
Jon Skeet authored
-
Jon Skeet authored
Move to dotnet cli for building, and .NET Core (netstandard1.0) as target platform This also updates the version number to 3.0.0-beta4
-
Feng Xiao authored
Update version number to 3.0.0-beta-4
-
Feng Xiao authored
-
Jisi Liu authored
Comment out lite conformance test.
-
Feng Xiao authored
-
- 13 Jul, 2016 7 commits
-
-
Feng Xiao authored
The 'lite' generator flag is no longer supported.
-
Feng Xiao authored
-
Feng Xiao authored
-
Feng Xiao authored
-
Feng Xiao authored
-
Feng Xiao authored
-
Jon Skeet authored
* Improve exception throwing implementation in collections * Implement RepeatedField.AddRange. This fixes issue #1730. * Optimize AddRange for sequences implementing ICollection (Also fix a few more C# 6-isms.) * Remove the overload for Add(RepeatedField<T>) We now just perform the optimization within AddRange itself. This is a breaking change in terms of "drop in the DLL", but is source compatible, which should be fine.
-
- 12 Jul, 2016 2 commits
-
-
Feng Xiao authored
Fix a <package>_FIND_VERSION_PRERELEASE being ignored
-
Walter Gray authored
-