Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Remove Java deterministic API. | Feng Xiao | 2016-07-18 | |
| | | | | Change-Id: I43f7e04a53d1445dfa86db310bdb18ceb446398c | |||
* | Fix compatiblity issues. | Feng Xiao | 2016-07-14 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | |||
* | Merge pull request #1781 from xfxyjwf/update_version | Feng Xiao | 2016-07-14 | |
|\ | | | | | Update version number to 3.0.0-beta-4 | |||
* | | Exclude Java lite module from parent pom.xml | Feng Xiao | 2016-07-13 | |
| | | ||||
| * | Update version number to 3.0.0-beta-4 | Feng Xiao | 2016-07-13 | |
|/ | ||||
* | Integrate from internal code base. | Feng Xiao | 2016-07-13 | |
| | ||||
* | Fix spelling in strings and comments | Otto Kekäläinen | 2016-07-03 | |
| | ||||
* | added minified JSON formatting functionality with test | chezRong | 2016-07-01 | |
| | ||||
* | Integrated internal changes from Google | Adam Cozzette | 2016-06-29 | |
| | | | | This includes all internal changes from around May 20 to now. | |||
* | Describe platform requirements for the compatibility tests. | Feng Xiao | 2016-05-20 | |
| | ||||
* | Add compatiblity tests against v2.5.0 | Feng Xiao | 2016-05-17 | |
| | ||||
* | Merge pull request #1542 from google/beta-3 | Jisi Liu | 2016-05-16 | |
|\ | | | | | Merge Beta 3 release branch into master | |||
* | | Add compatibility notice for Java. | Feng Xiao | 2016-05-11 | |
| | | ||||
| * | Update version numbers for other languages | Jisi Liu | 2016-05-10 | |
| | | ||||
| * | Update version numbers for beta3 | Jisi Liu | 2016-05-10 | |
|/ | ||||
* | Remove accidentally restored deleted files. | Jisi Liu | 2016-05-06 | |
| | ||||
* | Merge branch 'master' of github.com:google/protobuf | Jisi Liu | 2016-04-28 | |
|\ | ||||
* | | Down integrate from Google internal. | Jisi Liu | 2016-04-28 | |
| | | ||||
| * | Added serialVersionUID to ExtendableMessage. | Jakub Kukul | 2016-04-22 | |
|/ | ||||
* | Merge branch 'master' of github.com:google/protobuf | Jisi Liu | 2016-03-30 | |
|\ | ||||
* | | Integrate google internal changes. | Jisi Liu | 2016-03-30 | |
| | | ||||
| * | Allow custom URLs for Any in JsonFormat | Pradeep Gollakota | 2016-03-18 | |
|/ | | | | | | - Using custom URL for types in Any will no longer throw an InvalidProtocolBufferException in JsonFormat - Fixes #1128 | |||
* | Remove redundant `the` in comments. | Dongjoon Hyun | 2016-02-03 | |
| | ||||
* | Restore the license for Internal.java | Jisi Liu | 2016-01-29 | |
| | ||||
* | Uncomment the test, which was commented out during integration | Jisi Liu | 2016-01-29 | |
| | ||||
* | Integrate from google internal. | Jisi Liu | 2016-01-29 | |
| | | | | | Java files are moved to un-do the hack in the prevous commit, which moved the java files to the original position for integration. | |||
* | Undo the Java module change for integration. | Jisi Liu | 2016-01-28 | |
| | | | | | | | | | Moving the files to their original location, so that opensource changes can be picked during the internal merge. Those files will be moved into the correct location after merging with internal code. Note: do NOT merge this into master without the other internal down-integration commit. | |||
* | move test file (was in wrong place after rebasing on java module refactor) | Joshua Humphries | 2016-01-15 | |
| | ||||
* | throw IOException instead of InvalidProtocolBufferException when appropriate | Joshua Humphries | 2016-01-15 | |
| | ||||
* | Restructuring protobuf to multiple modules | nmittler | 2016-01-13 | |
| | | | | | | | | | protobuf/java will become a parent pom that will contain two modules: core - contains all of the code for the protobuf-java artifact util - contains all of the code for the protobuf-java-util artifact Also cleaned up various Maven warnings. | |||
* | Update version number and fix javadoc errors. | Feng Xiao | 2016-01-06 | |
| | ||||
* | Fix Java travis tests. | Feng Xiao | 2015-12-21 | |
| | ||||
* | Make conformance tests build for C++ and Java. | Feng Xiao | 2015-12-16 | |
| | | | | Change-Id: Ibb3fe6f919cc7ca0df91da5e1697ba33d259e433 | |||
* | Remove internal options from proto files. | Feng Xiao | 2015-12-14 | |
| | | | | Change-Id: I3daf32cb93dfe0fca38f8b48615ccfc307f748e9 | |||
* | Down-integrate from internal code base. | Feng Xiao | 2015-12-11 | |
| | ||||
* | Fix typo in LazyField javadoc | Dave Hughes | 2015-11-24 | |
| | | | "equals".equals("euqals") == false | |||
* | include plugin.proto and generated code in protobuf-java | Joshua Humphries | 2015-11-05 | |
| | ||||
* | Revert unwanted changes. | Jisi Liu | 2015-10-06 | |
| | ||||
* | Down-integrate from google internal. | Jisi Liu | 2015-10-05 | |
| | ||||
* | Fix javadoc errors. | Feng Xiao | 2015-08-27 | |
| | ||||
* | Update version number. | Feng Xiao | 2015-08-26 | |
| | | | | | Protoc, C++ runtime and Java runtime are updated to v3.0.0-beta-1, other languages are updated to v3.0.0-alpha-4. | |||
* | Delete incorrectly placed test file. | Feng Xiao | 2015-08-25 | |
| | ||||
* | Merge Java util package to github. | Feng Xiao | 2015-08-25 | |
| | ||||
* | Cherry-pick Java utf8 change. | Feng Xiao | 2015-08-24 | |
| | ||||
* | Down-integrate from internal code base. | Feng Xiao | 2015-08-23 | |
| | ||||
* | Down-integrate from google3. | Feng Xiao | 2015-08-22 | |
| | ||||
* | Down-integrate from internal branch. | Jisi Liu | 2015-08-21 | |
| | | | | Change-Id: Ieb7a2c2fbf35bc2a8fa65b915a5ecb68c83863e4 | |||
* | Add distributionManagement explicitly to prevent maven from using | Bo Yang | 2015-05-29 | |
| | | | | | default configuration. In default configuration, maven needs webdav for deployment, which cannot be found in central repository. | |||
* | Update version number to 3.0.0-alpha-4 | Bo Yang | 2015-05-29 | |
| | ||||
* | Update version number to 3.0.0-alpha-3 | teboring | 2015-05-23 | |
| |