Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update version number to v3.0.0-pre | Feng Xiao | 2014-12-10 |
| | |||
* | Update version number to v3.0.0-alpha-1 | Feng Xiao | 2014-12-03 |
| | |||
* | Explicitly list all Java lite runtime tests (and exclude those depending | Feng Xiao | 2014-12-02 |
| | | | | TestUtil which transitively depend on the full runtime). | ||
* | Down-integrate from internal code base. | Feng Xiao | 2014-11-10 |
| | |||
* | Update version number to 2.6.2-pre. | Feng Xiao | 2014-10-21 |
| | |||
* | Update version number to 2.6.1. | Feng Xiao | 2014-10-20 |
| | |||
* | Update version number to 2.6.1rc1 | Feng Xiao | 2014-10-08 |
| | |||
* | Replace links to code.google.com/protobuf with ↵ | Feng Xiao | 2014-10-01 |
| | | | | developers.google.com/protocol-buffers | ||
* | Bump version for maven-bundle-plugin | Jisi Liu | 2014-09-04 |
| | |||
* | merge tags/2.6.0 into trunk | jieluo@google.com | 2014-08-25 |
| | |||
* | down integrate to svn | jieluo@google.com | 2014-07-18 |
| | |||
* | Update OSGi meta data. | xiaofeng@google.com | 2013-03-08 |
| | |||
* | Update version number in trunk | xiaofeng@google.com | 2013-02-28 |
| | |||
* | Update version to 2.5.0-pre | liujisi@google.com | 2012-11-30 |
| | |||
* | Fix issue 298: add OSGi configuration to pom.xml - patch from Thomas Kock | xiaofeng@google.com | 2012-10-25 |
| | |||
* | Down-integrate from internal branch | xiaofeng@google.com | 2012-09-22 |
| | |||
* | Update mainline version to 2.4.2-pre. | liujisi@google.com | 2011-05-03 |
| | |||
* | Update mainline version to 2.4.1-pre. | liujisi@google.com | 2011-02-02 |
| | |||
* | Add missing files into pom.xml for protobuf-lite. | liujisi@google.com | 2011-01-27 |
| | |||
* | Boost version number to 2.4.0-pre, add more test cases for text_format.py ↵ | liujisi@google.com | 2010-12-09 |
| | | | | about unicode field. | ||
* | Submit recent changes from internal branch. See CHANGES.txt for more details. | liujisi@google.com | 2010-11-02 |
| | |||
* | Update version number in trunk to 2.3.1. | kenton@google.com | 2010-01-09 |
| | |||
* | Set version to 2.3.0-pre. | kenton@google.com | 2009-12-18 |
| | |||
* | Massive roll-up of changes. See CHANGES.txt. | kenton@google.com | 2009-12-18 |
| | |||
* | Set version number to 2.2.1 in trunk. | kenton@google.com | 2009-08-13 |
| | |||
* | Gigantic descriptors shouldn't overflow the Java string literal size limit. | kenton@google.com | 2009-08-07 |
| | |||
* | Update version number to 2.2.0-pre. | kenton@google.com | 2009-08-06 |
| | |||
* | Ensure that only the lite tests are run, even if all tests have been compiled | gk5885 | 2009-08-04 |
| | |||
* | This fixes some issues with the lite profile for the java build in which the ↵ | gk5885 | 2009-08-04 |
| | | | | lite jar contained the full binary. | ||
* | Update the pom to support the 'lite' profile. | gk5885 | 2009-08-04 |
| | |||
* | Submit recent changes from internal branch, including "lite mode" for | kenton@google.com | 2009-07-29 |
| | | | | | C++ and Java. See CHANGES.txt for more details. | ||
* | Update version number in trunk. | kenton@google.com | 2009-05-13 |
| | |||
* | Update trunk version to 2.0.4-SNAPSHOT. | kenton@google.com | 2008-12-05 |
| | |||
* | Update version number to 2.0.3-SNAPSHOT. | kenton@google.com | 2008-10-16 |
| | |||
* | Integrate changes from internal Google-internal branch. | kenton@google.com | 2008-09-24 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | General * License changed from Apache 2.0 to New BSD. * It is now possible to define custom "options", which are basically annotations which may be placed on definitions in a .proto file. For example, you might define a field option called "foo" like so: import "google/protobuf/descriptor.proto" extend google.protobuf.FieldOptions { optional string foo = 12345; } Then you annotate a field using the "foo" option: message MyMessage { optional int32 some_field = 1 [(foo) = "bar"] } The value of this option is then visible via the message's Descriptor: const FieldDescriptor* field = MyMessage::descriptor()->FindFieldByName("some_field"); assert(field->options().GetExtension(foo) == "bar"); This feature has been implemented and tested in C++ and Java. Other languages may or may not need to do extra work to support custom options, depending on how they construct descriptors. C++ * Fixed some GCC warnings that only occur when using -pedantic. * Improved static initialization code, making ordering more predictable among other things. * TextFormat will no longer accept messages which contain multiple instances of a singular field. Previously, the latter instance would overwrite the former. * Now works on systems that don't have hash_map. Python * Strings now use the "unicode" type rather than the "str" type. String fields may still be assigned ASCII "str" values; they will automatically be converted. * Adding a property to an object representing a repeated field now raises an exception. For example: # No longer works (and never should have). message.some_repeated_field.foo = 1 | ||
* | Work around absence of hash_map. | kenton@google.com | 2008-09-19 |
| | | | | | Also, update version numbers to 2.0.2-SNAPSHOT. | ||
* | 2.0.1 release. | temporal | 2008-08-27 |
| | |||
* | misc. stuff: | temporal | 2008-07-21 |
| | | | | | | | | | - Improved readmes. - Fixed incorrect definition of kint32min. - Fixed absolute output paths on Windows. - Added info to Java POM that will be required when we upload the package to a Maven repo. | ||
* | Initial checkin. | temporal | 2008-07-10 |