blob: 6d77428d7db8ea3a08464e5171c8077bf7bed30a [file] [log] [blame]
Joshua Haberman66a189f2020-05-26 00:37:50 -07001Unreleased Changes
2
3 C++:
Joshua Haberman75e4c442020-06-01 16:35:52 -07004 * Removed deprecated unsafe arena string accessors
Joshua Haberman66a189f2020-05-26 00:37:50 -07005 * Enabled heterogeneous lookup for std::string keys in maps.
Joshua Haberman75e4c442020-06-01 16:35:52 -07006 * Removed implicit conversion from StringPiece to std::string
7 * Fix use-after-destroy bug when the Map is allocated in the arena.
Joshua Haberman5f5efe52020-06-03 00:12:51 -07008 * Improved the randomness of map ordering
9 * Added stack overflow protection for text format with unknown fields
10 * Use std::hash for proto maps to help with portability.
11 * Added more Windows macros to proto whitelist.
12 * Arena constructors for map entry messages are now marked "explicit"
13 (for regular messages they were already explicit).
Joshua Habermanc7da7e92020-06-15 12:14:22 -070014 * Fix subtle aliasing bug in RepeatedField::Add
15 * Fix mismatch between MapEntry ByteSize and Serialize with respect to unset
16 fields.
Joshua Haberman66a189f2020-05-26 00:37:50 -070017
18 Python:
Joshua Habermanc7da7e92020-06-15 12:14:22 -070019 * JSON format conformance fixes:
20 * Reject lowercase t for Timestamp json format.
21 * Print full_name directly for extensions (no camelCase).
22 * Reject boolean values for integer fields.
23 * Reject NaN, Infinity, -Infinity that is not quoted.
24 * Base64 fixes for bytes fields: accept URL-safe base64 and missing padding.
25 * Bugfix for fields/files named "async" or "await".
Joshua Haberman66a189f2020-05-26 00:37:50 -070026 * Improved the error message when AttributeError is returned from __getattr__
27 in EnumTypeWrapper.
Joshua Haberman5f5efe52020-06-03 00:12:51 -070028
29 Java:
30 * Fixed a bug where setting optional proto3 enums with setFooValue() would
31 not mark the value as present.
Joshua Haberman435952c2020-06-15 12:20:14 -070032 * Add Subtract function to FieldMaskUtil.
Joshua Haberman66a189f2020-05-26 00:37:50 -070033
Jan Tattermusch7cb55972020-06-02 09:26:25 +020034 C#:
35 * Dropped support for netstandard1.0 (replaced by support for netstandard1.1).
36 This was required to modernize the parsing stack to use the `Span<byte>`
37 type internally. (#7351)
38 * Add `ParseFrom(ReadOnlySequence<byte>)` method to enable GC friendly
39 parsing with reduced allocations and buffer copies. (#7351)
40 * Add `GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE` define to make
41 generated code compatible with old C# compilers (pre-roslyn compilers
42 from .NET framework and old versions of mono) that do not support
43 ref structs. (#7490)
44
Joshua Haberman9ce8c332020-06-01 13:36:50 -0700452020-06-01 version 3.12.3 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
46
47 Objective-C
48 * Tweak the union used for Extensions to support old generated code. #7573
49
Joshua Haberman678da4f2020-05-26 15:55:45 -0700502020-05-26 version 3.12.2 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
51
52 C++
53 * Simplified the template export macros to fix the build for mingw32. (#7539)
54
55 Objective-C
56 * Fix for the :protobuf_objc target in the Bazel BUILD file. (#7538)
57
Joshua Habermana37cc132020-05-20 12:06:30 -0700582020-05-20 version 3.12.1 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
59
60 Ruby
61 * Re-add binary gems for Ruby 2.3 and 2.4. These are EOL upstream, however
62 many people still use them and dropping support will require more
63 coordination.
64
Joshua Haberman80535252020-05-12 14:39:14 -0700652020-05-12 version 3.12.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
Joshua Haberman26bec4b2020-04-29 17:16:03 -070066
67 Protocol Compiler
68 * [experimental] Singular, non-message typed fields in proto3 now support
69 presence tracking. This is enabled by adding the "optional" field label and
70 passing the --experimental_allow_proto3_optional flag to protoc.
71 * For usage info, see docs/field_presence.md.
72 * During this experimental phase, code generators should update to support
73 proto3 presence, see docs/implementing_proto3_presence.md for instructions.
74 * Allow duplicate symbol names when multiple descriptor sets are passed on
75 the command-line, to match the behavior when multiple .proto files are passed.
76 * Deterministic `protoc --descriptor_set_out` (#7175)
77
78 C++
79 * [experimental] Added proto3 presence support.
80 * New descriptor APIs to support proto3 presence.
81 * Enable Arenas by default on all .proto files.
82 * Documented that users are not allowed to subclass Message or MessageLite.
83 * Mark generated classes as final; inheriting from protos is strongly discouraged.
84 * Add stack overflow protection for text format with unknown fields.
85 * Add accessors for map key and value FieldDescriptors.
86 * Add FieldMaskUtil::FromFieldNumbers().
87 * MessageDifferencer: use ParsePartial() on Any fields so the diff does not
88 fail when there are missing required fields.
89 * ReflectionOps::Merge(): lookup messages in the right factory, if it can.
90 * Added Descriptor::WellKnownTypes enum and Descriptor::well_known_type()
91 accessor as an easier way of determining if a message is a Well-Known Type.
92 * Optimized RepeatedField::Add() when it is used in a loop.
93 * Made proto move/swap more efficient.
94 * De-virtualize the GetArena() method in MessageLite.
95 * Improves performance of json_stream_parser.cc by factor 1000 (#7230)
96 * bug: #7076 undefine Windows OUT and OPTIONAL macros (#7087)
97 * Fixed a bug in FieldDescriptor::DebugString() that would erroneously print
98 an "optional" label for a field in a oneof.
99 * Fix bug in parsing bool extensions that assumed they are always 1 byte.
100 * Fix off-by-one error in FieldOptions::ByteSize() when extensions are present.
101 * Clarified the comments to show an example of the difference between
102 Descriptor::extension and DescriptorPool::FindAllExtensions.
103 * Add a compiler option 'code_size' to force optimize_for=code_size on all
104 protos where this is possible.
105
106 Java
107 * [experimental] Added proto3 presence support.
108 * Mark java enum _VALUE constants as @Deprecated if the enum field is deprecated
109 * reduce <clinit> size for enums with allow_alias set to true.
110 * Sort map fields alphabetically by the field's key when printing textproto.
Joshua Haberman9952e362020-05-16 16:42:02 -0700111 * Fixed a bug in map sorting that appeared in -rc1 and -rc2 (#7508).
Joshua Haberman26bec4b2020-04-29 17:16:03 -0700112 * TextFormat.merge() handles Any as top level type.
113 * Throw a descriptive IllegalArgumentException when calling
114 getValueDescriptor() on enum special value UNRECOGNIZED instead of
115 ArrayIndexOutOfBoundsException.
116 * Fixed an issue with JsonFormat.printer() where setting printingEnumsAsInts()
117 would override the configuration passed into includingDefaultValueFields().
118 * Implement overrides of indexOf() and contains() on primitive lists returned
119 for repeated fields to avoid autoboxing the list contents.
120 * Add overload to FieldMaskUtil.fromStringList that accepts a descriptor.
121 * [bazel] Move Java runtime/toolchains into //java (#7190)
122
123 Python
124 * [experimental] Added proto3 presence support.
125 * [experimental] fast import protobuf module, only works with cpp generated code linked in.
126 * Truncate 'float' fields to 4 bytes of precision in setters for pure-Python
127 implementation (C++ extension was already doing this).
128 * Fixed a memory leak in C++ bindings.
129 * Added a deprecation warning when code tries to create Descriptor objects
130 directly.
131 * Fix unintended comparison between bytes and string in descriptor.py.
132 * Avoid printing excess digits for float fields in TextFormat.
133 * Remove Python 2.5 syntax compatibility from the proto compiler generated _pb2.py module code.
134 * Drop 3.3, 3.4 and use single version docker images for all python tests (#7396)
135
136 JavaScript
137 * Fix js message pivot selection (#6813)
138
139 PHP
140 * Persistent Descriptor Pool (#6899)
141 * Implement lazy loading of php class for proto messages (#6911)
142 * Correct @return in Any.unpack docblock (#7089)
Joshua Haberman80535252020-05-12 14:39:14 -0700143 * Ignore unknown enum value when ignore_unknown specified (#7455)
Joshua Haberman26bec4b2020-04-29 17:16:03 -0700144
145 Ruby
146 * [experimental] Implemented proto3 presence for Ruby. (#7406)
Joshua Habermanef7cc812020-05-01 13:10:28 -0700147 * Stop building binary gems for ruby <2.5 (#7453)
Joshua Haberman26bec4b2020-04-29 17:16:03 -0700148 * Fix for wrappers with a zero value (#7195)
149 * Fix for JSON serialization of 0/empty-valued wrapper types (#7198)
150 * Call "Class#new" over rb_class_new_instance in decoding (#7352)
151 * Build extensions for Ruby 2.7 (#7027)
152 * assigning 'nil' to submessage should clear the field. (#7397)
153
154 C#
155 * [experimental] Add support for proto3 presence fields in C# (#7382)
Joshua Haberman80535252020-05-12 14:39:14 -0700156 * Mark GetOption API as obsolete and expose the "GetOptions()" method on descriptors instead (#7491)
157 * Remove Has/Clear members for C# message fields in proto2 (#7429)
158 * Enforce recursion depth checking for unknown fields (#7132)
Joshua Haberman26bec4b2020-04-29 17:16:03 -0700159 * Fix conformance test failures for Google.Protobuf (#6910)
Joshua Haberman80535252020-05-12 14:39:14 -0700160 * Cleanup various bits of Google.Protobuf (#6674)
Joshua Haberman26bec4b2020-04-29 17:16:03 -0700161 * Fix latest ArgumentException for C# extensions (#6938)
162 * Remove unnecessary branch from ReadTag (#7289)
Joshua Haberman26bec4b2020-04-29 17:16:03 -0700163
164 Objective-C
165 * [experimental] ObjC Proto3 optional support (#7421)
166 * Block subclassing of generated classes (#7124)
167 * Use references to Obj C classes instead of names in descriptors. (#7026)
168 * Revisit how the WKTs are bundled with ObjC. (#7173)
169
170 Other
171 * Add a proto_lang_toolchain for javalite (#6882)
172 * [bazel] Update gtest and deprecate //external:{gtest,gtest_main} (#7237)
173 * Add application note for explicit presence tracking. (#7390)
174 * Howto doc for implementing proto3 presence in a code generator. (#7407)
175
176
Rafi Kamal3c020b92020-02-12 12:51:32 -08001772020-02-14 version 3.11.4 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
178
179 C#
180 * Fix latest ArgumentException for C# extensions (#7188)
Rafi Kamale9e4c682020-02-14 10:19:40 -0800181 * Enforce recursion depth checking for unknown fields (#7210)
Rafi Kamal3c020b92020-02-12 12:51:32 -0800182
183 Ruby
184 * Fix wrappers with a zero value (#7195)
185 * Fix JSON serialization of 0/empty-valued wrapper types (#7198)
186
Rafi Kamal5f3d6592020-01-31 16:00:28 -08001872020-01-31 version 3.11.3 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
188
189 C++
190 * Add OUT and OPTIONAL to windows portability files (#7087)
191
192 PHP
193 * Refactored ulong to zend_ulong for php7.4 compatibility (#7147)
194 * Call register_class before getClass from desc to fix segfault (#7077)
195
196
Rafi Kamalb58896e2019-12-10 11:22:24 -08001972019-12-10 version 3.11.2 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
198
199 PHP
200 * Make c extension portable for php 7.4 (#6968)
201
202
Rafi Kamalc04d9c92019-12-02 11:57:40 -08002032019-12-02 version 3.11.1 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
204
205 PHP
206 * Extern declare protobuf_globals (#6946)
207
208
Rafi Kamalde756512019-11-20 18:03:29 -08002092019-11-19 version 3.11.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
210
211 C++
212 * Make serialization method naming consistent
213 * Make proto runtime + generated code free of deprecation warnings
214 * Moved ShutdownProtobufLibrary() to message_lite.h. For backward compatibility a declaration is still available in stubs/common.h, but users should prefer message_lite.h
215 * Removed non-namespace macro EXPECT_OK()
216 * Removed mathlimits.h from stubs in favor of using std::numeric_limits from C++11
217 * Fixed bug in parser when ending on a group tag
218 * Add a helper function to UnknownFieldSet to deal with the changing return value of message::unknown_fields()
219 * Fix incorrect use of string_view iterators
220 * Support direct pickling of nested messages
221 * Skip extension tag validation for MessageSet if unknown dependencies are allowed
222 * Updated deprecation macros to annotate deprecated code (#6612)
223 * Remove conversion warning in MapEntryFuncs::ByteSizeLong (#6766)
Rafi Kamalab5b61b2019-11-25 15:15:21 -0800224 * Revert "Make shared libraries be able to link to MSVC static runtime libraries, so that VC runtime is not required." (#6914)
Rafi Kamalde756512019-11-20 18:03:29 -0800225
226 Java
227 * Remove the usage of MethodHandle, so that Android users prior to API version 26 can use protobuf-java
228 * Publish ProGuard config for javalite
229 * Fix for StrictMode disk read violation in ExtensionRegistryLite
230 * Include part of the ByteString's content in its toString().
231 * Include unknown fields when merging proto3 messages in Java lite builders
232
233 Python
234 * Add float_precision option in json format printer
235 * Optionally print bytes fields as messages in unknown fields, if possible
236 * FieldPath: fix testing IsSet on root path ''
237 * Experimental code gen (fast import protobuf module) which only work with cpp generated code linked in
238
239 JavaScript
240 * Remove guard for Symbol iterator for jspb.Map
241
242 PHP
243 * Avoid too much overhead in layout_init (#6716)
244 * Lazily Create Singular Wrapper Message (#6833)
Rafi Kamalab5b61b2019-11-25 15:15:21 -0800245 * Implement lazy loading of php class for proto messages (#6911)
Rafi Kamalde756512019-11-20 18:03:29 -0800246
247 Ruby
248 * Ruby lazy wrappers optimization (#6797)
249
250 C#
251 * (RepeatedField): Capacity property to resize the internal array (#6530)
252 * Experimental proto2 support is now officially available (#4642, #5183, #5350, #5936)
253 * Getting started doc: https://github.com/protocolbuffers/protobuf/blob/master/docs/csharp/proto2.md
254 * Add length checks to ExtensionCollection (#6759)
255 * Optimize parsing of some primitive and wrapper types (#6843)
256 * Use 3 parameter Encoding.GetString for default string values (#6828)
257 * Change _Extensions property to normal body rather than expression (#6856)
258
259 Objective C
260 * Fixed unaligned reads for 32bit arm with newer Xcode versions (#6678)
261
262
Rafi Kamal9c0d61c2019-09-03 18:57:30 -07002632019-09-03 version 3.10.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
264
265 C++
266 * Switch the proto parser to the faster MOMI parser.
267 * Properly escape Struct keys in the proto3 JSON serializer.
268 * Fix crash on uninitialized map entries.
269 * Informed the compiler of has-bit invariant to produce better code
270 * Unused imports of files defining descriptor extensions will now be reported
271 * Add proto2::util::RemoveSubranges to remove multiple subranges in linear time.
272 * Added BaseTextGenerator::GetCurrentIndentationSize()
273 * Made implicit weak fields compatible with the Apple linker
274 * Support 32 bit values for ProtoStreamObjectWriter to Struct.
275 * Removed the internal-only header coded_stream_inl.h and the internal-only methods defined there.
276 * Enforced no SWIG wrapping of descriptor_database.h (other headers already had this restriction).
277 * Implementation of the equivalent of the MOMI parser for serialization. This removes one of the two serialization routines, by making the fast array serialization routine completely general. SerializeToCodedStream can now be implemented in terms of the much much faster array serialization. The array serialization regresses slightly, but when array serialization is not possible this wins big.
278 * Do not convert unknown field name to snake case to accurately report error.
279 * Fix a UBSAN warnings. (#6333)
280 * Add podspec for C++ (#6404)
281 * protoc: fix source code info location for missing label (#6436)
282 * C++ Add move constructor for Reflection's SetString (#6477)
283
284 Java
285 * Call loadDescriptor outside of synchronized block to remove one possible source of deadlock.
286 * Have oneof enums implement a separate interface (other than EnumLite) for clarity.
287 * Opensource Android Memory Accessors
288 * Update TextFormat to make use of the new TypeRegistry.
289 * Support getFieldBuilder and getRepeatedFieldBuilder in ExtendableBuilder
290 * Update JsonFormat to make use of the new TypeRegistry.
291 * Add proguard config generator for GmmBenchmarkSuiteLite.
292 * Change ProtobufArrayList to use Object[] instead of ArrayList for 5-10% faster parsing
293 * Implement ProtobufArrayList.add(E) for 20% (5%-40%) faster overall protolite2 parsing
294 * Make a copy of JsonFormat.TypeRegistry at the protobuf top level package. This will eventually replace JsonFormat.TypeRegistry.
295 * Fix javadoc warnings in generated files (#6231)
296 * Java: Add Automatic-Module-Name entries to the Manifest (#6568)
297
298 Python
299 * Add descriptor methods in descriptor_pool are deprecated.
300 * Uses explicit imports to prevent multithread test failures in py3.
301 * Added __delitem__ for Python extension dict
302 * Update six version to 1.12.0 and fix legacy_create_init issue (#6391)
303
304 JavaScript
305 * Remove deprecated boolean option to getResultBase64String().
306 * Fix sint64 zig-zag encoding.
307 * Simplify hash64 string conversion to avoid DIGIT array. Should reduce overhead if these functions aren't used, and be more efficient by avoiding linear array searches.
308 * Change the parameter types of binaryReaderFn in ExtensionFieldBinaryInfo to (number, ?, ?).
309 * Create dates.ts and time_of_days.ts to mirror Java versions. This is a near-identical conversion of c.g.type.util.{Dates,TimeOfDays} respectively.
310 * Migrate moneys to TypeScript.
Rafi Kamal1a57c132019-10-02 17:06:22 -0700311
312 PHP
313 * Fix incorrect leap day for Timestamp (#6696)
314 * Initialize well known type values (#6713)
Rafi Kamal9c0d61c2019-09-03 18:57:30 -0700315
316 Ruby
317 * Fix scope resolution for Google namespace (#5878)
318 * Support hashes for struct initializers (#5716)
319 * Optimized away the creation of empty string objects. (#6502)
320 * Roll forward Ruby upb changes now that protobuf Ruby build is fixed (#5866)
321 * Optimized layout_mark() for Ruby (#6521)
322 * Optimization for layout_init() (#6547)
323 * Fix for GC of Ruby map frames. (#6533)
Rafi Kamal1a57c132019-10-02 17:06:22 -0700324 * Fixed leap year handling by reworking upb_mktime() -> upb_timegm(). (#6695)
325
326 Objective C
327 * Remove OSReadLittle* due to alignment requirements (#6678)
328 * Don't use unions and instead use memcpy for the type swaps. (#6672)
Rafi Kamal9c0d61c2019-09-03 18:57:30 -0700329
330 Other
331 * Override CocoaPods module to lowercase (#6464)
332
333
Jie Luo43156772019-08-09 13:21:18 -07003342019-06-28 version 3.9.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
335
336 C++
337 * Optimize and simplify implementation of RepeatedPtrFieldBase
338 * Don't create unnecessary unknown field sets.
339 * Remove branch from accessors to repeated field element array.
340 * Added delimited parse and serialize util.
341 * Reduce size by not emitting constants for fieldnumbers
342 * Fix a bug when comparing finite and infinite field values with explicit tolerances.
343 * TextFormat::Parser should use a custom Finder to look up extensions by number if one is provided.
344 * Add MessageLite::Utf8DebugString() to make MessageLite more compatible with Message.
345 * Fail fast for better performance in DescriptorPool::FindExtensionByNumber() if descriptor has no defined extensions.
346 * Adding the file name to help debug colliding extensions
347 * Added FieldDescriptor::PrintableNameForExtension() and DescriptorPool::FindExtensionByPrintableName().
348 The latter will replace Reflection::FindKnownExtensionByName().
349 * Replace NULL with nullptr
350 * Created a new Add method in repeated field that allows adding a range of elements all at once.
351 * Enabled enum name-to-value mapping functions for C++ lite
352 * Avoid dynamic initialization in descriptor.proto generated code
353 * Move stream functions to MessageLite from Message.
354 * Move all zero_copy_stream functionality to io_lite.
355 * Do not create array of matched fields for simple repeated fields
356 * Enabling silent mode by default to reduce make compilation noise. (#6237)
357
358 Java
359 * Expose TextFormat.Printer and make it configurable. Deprecate the static methods.
360 * Library for constructing google.protobuf.Struct and google.protobuf.Value
361 * Make OneofDescriptor extend GenericDescriptor.
362 * Expose streamingness of service methods from MethodDescriptor.
363 * Fix a bug where TextFormat fails to parse Any filed with > 1 embedded message sub-fields.
364 * Establish consistent JsonFormat behavior for nulls in oneofs, regardless of order.
365 * Update GSON version to 3.8.5. (#6268)
366 * Add `protobuf_java_lite` Bazel target. (#6177)
367
368 Python
369 * Change implementation of Name() for enums that allow aliases in proto2 in Python
370 to be in line with claims in C++ implementation (to return first value).
371 * Explicitly say what field cannot be set when the new value fails a type check.
372 * Duplicate register in descriptor pool will raise errors
373 * Add __slots__ to all well_known_types classes, custom attributes are not allowed anymore.
374 * text_format only present 8 valid digits for float fields by default
375
376 JavaScript
377 * Add Oneof enum to the list of goog.provide
378
379 PHP
380 * Make php message class final to avoid mocking. (#6277)
381 * Rename get/setXXXValue to get/setXXXWrapper. (#6295)
382
383 Ruby
384 * Remove to_hash methods. (#6166)
385
386
Hao Nguyen3a5fe3b2019-04-29 13:01:54 -07003872019-04-29 version 3.8.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
388
389 C++
390 * Use std::atomic<int32> in case of myriad2 platform
391 * Always declare enums to be int-sized
392 * Added DebugString() and ShortDebugString() methods on MessageLite
393 * Specialized different parse loop control flows
394 * Make hasbits potentially in register. The or's start forming an obstacle because it's a read modify store on the same mem address on each iteration.
395 * Move to an internal MACRO for parser validity checks.
396 * Improve map parsing performance.
397 * Make MergePartialFromCodedStream non virtual. This allows direct calls, potential inlining and is also a code health improvement
398 * Add an overall limit to parse_context to prevent reading past it. This allows to remove a annoying level of indirection.
399 * Fix a mistake, we shouldn't verify map key/value strings for utf8 in opt mode for proto2.
400 * Further improvements to cut binary size.
401 * Prepare to make MergePartialFromCodedStream non-virtual.
402 * A report on some interesting behavior change in python (caused by b/27494216) made me realize there is a check that needs to be done in case the parse ended on a end group tag.
403 * Add a note of caution to the comments around skip in CodedOutputStream.
404 * Simplify end check.
405 * Add overload for ParseMessage for MessageLite/Message types. If the explicit type is not known inlining won't help de-virtualizing the virtual call.
406 * Reduce linker input. It turns out that ParseMessage is not inlined, producing template instantiations that are used only once and save nothing but cost more.
407 * Improve the parser.
408 * [c++17] Changed proto2::RepeatedPtrField iterators to no longer derive from the deprecated std::iterator class.
409 * Change the default value of case_insensitive_enum_parsing to false for JsonStringToMessage.
410 * Add a warning if a field name doesn't match the style guide.
411 * Fix TextFormat not round-trip correctly when float value is max float.
412 * Added locationed info for some errors at compiler
413 * Python reserved keywords are now working with getattr()/setattr() for most descriptors.
414 * Added AllowUnknownField() in text_format
415 * Append '_' to C++ reserved keywords for message, enum, extension
416 * Fix MSVC warning C4244 in protobuf's parse_context.h.
417 * Updating Iterators to be compatible with C++17 in MSVC.
418 * Use capability annotation in mutex.h
419 * Fix "UndefinedBehaviorSanitizer: cfi-bad-type"
420 * CriticalSectionLock class as a lightweight replacement for std::mutex on Windows platforms.
421 * Removed vestigial wire_format_lite_inl.h
422
423 C#
424 * Added System.Memory dependency.
425
426 Java
427 * Make Java protoc code generator ignore optimize_for LITE_RUNTIME. Users should instead use the Java lite protoc plugin.
428 * Change Extension getMessageDefaultInstance() to return Message instead of MessageLite.
429 * Prevent malicious input streams from leaking buffers for ByteString or ByteBuffer parsing.
430 * Release new Javalite runtime.
431 * Show warning in case potential file name conflict.
432 * Allow Java reserved keywords to be used in extensions.
433 * Added setAllowUnknownFields() in text format
434 * Add memoization to ExtensionRegistryLite.getEmptyRegistry()
435 * Improve performance of CodedOutputStream.writeUInt32NoTag
436 * Add an optimized mismatch-finding algorithm to UnsafeUtil.
437 * When serializing uint32 varints, check that we have MAX_VARINT32_SIZE bytes left, not just MAX_VARINT_SIZE.
438 * Minor optimization to RopeByteString.PieceIterator
439
440 JavaScript
441 * Simplify generated toObject code when the default value is used.
442
443 Python
444 * Changes implementation of Name() for enums that allow aliases in proto2 in Python to be in line with claims in C++ implementation (to return first value).
445 * Added double_format option in text format printer.
446 * Added iter and __contains__ to extension dict
447 * Added allow_unknown_field option in python text format parser
448 * Fixed Timestamp.ToDatetime() loses precision issue
449 * Support unknown field in text format printer.
450 * Float field will be convert to inf if bigger than struct.unpack('f', b'\xff\xff\x7f\x7f')[0] which is about 3.4028234664e+38,
451 convert to -inf if smaller than -3.4028234664e+38
452 * Allowed casting str->bytes in Message.__setstate__
453
454 Ruby
455 * Helper methods to get enum name for Ruby.
456
457
Hao Nguyen6b434dc2019-01-24 14:35:47 -08004582019-01-24 version 3.7.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
459
460 C++
461 * Introduced new MOMI (maybe-outside-memory-interval) parser.
462 * Add an option to json_util to parse enum as case-insensitive. In the future, enum parsing in json_util will become case-sensitive.
463 * Added conformance test for enum aliases
464 * Added support for --cpp_out=speed:...
465 * Added use of C++ override keyword where appropriate
466 * Many other cleanups and fixes.
467
468 Java
469 * Fix illegal reflective access warning in JDK 9+
470 * Add BOM
471
472 Python
473 * Added Python 3.7 compatibility.
474 * Modified ParseFromString to return bytes parsed .
475 * Introduce Proto C API.
476 * FindFileContainingSymbol in descriptor pool is now able to find field and enum values.
477 * reflection.MakeClass() and reflection.ParseMessage() are deprecated.
Brian Wignalla104dff2020-01-08 13:18:20 -0500478 * Added DescriptorPool.FindMethodByName() method in pure python (c extension already has it)
Hao Nguyen6b434dc2019-01-24 14:35:47 -0800479 * Flipped proto3 to preserve unknown fields by default.
480 * Added support for memoryview in python3 proto message parsing.
481 * Added MergeFrom for repeated scalar fields in c extension (pure python already has it)
482 * Surrogates are now rejected at setters in python3.
483 * Added public unknown field API.
484 * RecursionLimit is also set to max if allow_oversize_protos is enabled.
485 * Disallow duplicate scalars in proto3 text_format parse.
486 * Fix some segment faults for c extension map field.
487
488 PHP
489 * Most issues for json encoding/decoding in the c extension have been fixed. There are still some edge cases not fixed. For more details, check conformance/failure_list_php_c.txt.
490 * Supports php 7.3
491 * Added helper methods to convert between enum values and names.
492 * Allow setting/getting wrapper message fields using primitive values.
493 * Various bug fixes.
494
495 Ruby
496 * Ruby 2.6 support.
497 * Drops support for ruby < 2.3.
498 * Most issues for json encoding/decoding in the c extension have been fixed. There are still some edge cases not fixed. For more details, check conformance/failure_list_ruby.txt.
499 * Json parsing can specify an option to ignore unknown fields: msg.decode_json(data, {ignore_unknown_fields: true}).
500 * Added support for proto2 syntax (partially).
501 * Various bug fixes.
502
503 Csharp
504 * More support for FieldMask include merge, intersect and more.
505 * Increasing the default recursion limit to 100.
506 * Support loading FileDescriptors dynamically.
507 * Provide access to comments from descriptors.
508 * Added Any.Is method.
509 * Compatible with C# 6
510 * Added IComparable and comparison operators on Timestamp.
511
512 Objective C
513 * Add ability to introspect list of enum values (#4678)
514 * Copy the value when setting message/data fields (#5215)
515 * Support suppressing the objc package prefix checks on a list of files (#5309)
516 * More complete keyword and NSObject method (via categories) checks for field names, can result in more fields being rename, but avoids the collisions at runtime (#5289)
517 * Small fixes to TextFormat generation for extensions (#5362)
518 * Provide more details/context in deprecation messages (#5412)
519 * Array/Dictionary enumeration blocks NS_NOESCAPE annotation for Swift (#5421)
520 * Properly annotate extensions for ARC when their names imply behaviors (#5427)
521 * Enum alias name collision improvements (#5480)
522
523
Adam Cozzette48cb18e2018-07-27 11:19:52 -07005242018-07-27 version 3.6.1 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
525
526 C++
527 * Introduced workaround for Windows issue with std::atomic and std::once_flag
528 initialization (#4777, #4773).
529
530 PHP
531 * Added compatibility with PHP 7.3 (#4898).
532
533 Ruby
534 * Fixed Ruby crash involving Any encoding (#4718).
535
Adam Cozzetteadf84b42018-06-01 13:58:09 -07005362018-06-01 version 3.6.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
537
538 C++
539 * Starting from this release, we now require C++11. For those we cannot yet
540 upgrade to C++11, we will try to keep the 3.5.x branch updated with
541 critical bug fixes only. If you have any concerns about this, please
542 comment on issue #2780.
543 * Moved to C++11 types like std::atomic and std::unique_ptr and away from our
544 old custom-built equivalents.
545 * Added support for repeated message fields in lite protos using implicit
546 weak fields. This is an experimental feature that allows the linker to
547 strip out more unused messages than previously was possible.
548 * Fixed SourceCodeInfo for interpreted options and extension range options.
549 * Fixed always_print_enums_as_ints option for JSON serialization.
550 * Added support for ignoring unknown enum values when parsing JSON.
551 * Create std::string in Arena memory.
552 * Fixed ValidateDateTime to correctly check the day.
553 * Fixed bug in ZeroCopyStreamByteSink.
554 * Various other cleanups and fixes.
555
556 Java
557 * Dropped support for Java 6.
558 * Added a UTF-8 decoder that uses Unsafe to directly decode a byte buffer.
559 * Added deprecation annotations to generated code for deprecated oneof
560 fields.
561 * Fixed map field serialization in DynamicMessage.
562 * Cleanup and documentation for Java Lite runtime.
563 * Various other fixes and cleanups
564 * Fixed unboxed arraylists to handle an edge case
565 * Improved performance for copying between unboxed arraylists
566 * Fixed lite protobuf to avoid Java compiler warnings
567 * Improved test coverage for lite runtime
568 * Performance improvements for lite runtime
569
570 Python
571 * Fixed bytes/string map key incompatibility between C++ and pure-Python
572 implementations (issue #4029)
573 * Added __init__.py files to compiler and util subpackages
574 * Use /MT for all Windows versions
575 * Fixed an issue affecting the Python-C++ implementation when used with
576 Cython (issue #2896)
577 * Various text format fixes
578 * Various fixes to resolve behavior differences between the pure-Python and
579 Python-C++ implementations
580
581 PHP
582 * Added php_metadata_namespace to control the file path of generated metadata
583 file.
584 * Changed generated classes of nested message/enum. E.g., Foo.Bar, which
585 previously generates Foo_Bar, now generates Foo/Bar
586 * Added array constructor. When creating a message, users can pass a php
587 array whose content is field name to value pairs into constructor. The
588 created message will be initialized according to the array. Note that
589 message field should use a message value instead of a sub-array.
590 * Various bug fixes.
591
592 Objective-C
593 * We removed some helper class methods from GPBDictionary to shrink the size
594 of the library, the functionary is still there, but you may need to do some
595 specific +alloc / -init… methods instead.
596 * Minor improvements in the performance of object field getters/setters by
597 avoiding some memory management overhead.
598 * Fix a memory leak during the raising of some errors.
599 * Make header importing completely order independent.
600 * Small code improvements for things the undefined behaviors compiler option
601 was flagging.
602
603 Ruby
604 * Added ruby_package file option to control the module of generated class.
605 * Various bug fixes.
606
607 Javascript
608 * Allow setting string to int64 field.
609
610 Csharp
611 * Unknown fields are now parsed and then sent back on the wire. They can be
612 discarded at parse time via a CodedInputStream option.
613 * Movement towards working with .NET 3.5 and Unity
614 * Expression trees are no longer used
615 * AOT generics issues in Unity/il2cpp have a workaround (see this commit for
616 details)
617 * Floating point values are now compared bitwise (affects NaN value
618 comparisons)
619 * The default size limit when parsing is now 2GB rather than 64MB
620 * MessageParser now supports parsing from a slice of a byte array
621 * JSON list parsing now accepts null values where the underlying proto
622 representation does
623
Jisi Liu7bf1e192017-12-20 10:59:22 -08006242017-12-20 version 3.5.1 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
Jisi Liu7bd16062017-12-19 11:28:30 -0800625 Planned Future Changes
626 * Make C++ implementation C++11 only: we plan to require C++11 to build
627 protobuf code starting from 3.6.0 release. Please join this github issue:
Feng Xiaoafe98de2018-08-22 11:55:30 -0700628 https://github.com/protocolbuffers/protobuf/issues/2780 to provide your feedback.
Jisi Liu7bd16062017-12-19 11:28:30 -0800629
Jisi Liu62616e12017-12-19 15:22:18 -0800630 protoc
631 * Fixed a bug introduced in 3.5.0 and protoc in Windows now accepts non-ascii
632 characters in paths again.
633
Jisi Liu7bd16062017-12-19 11:28:30 -0800634 C++
Jisi Liu62616e12017-12-19 15:22:18 -0800635 * Removed several usages of C++11 features in the code base.
Jisi Liu7bd16062017-12-19 11:28:30 -0800636 * Fixed some compiler warnings.
637
638 PHP
639 * Fixed memory leak in C-extension implementation.
640 * Added discardUnknokwnFields API.
Brian Wignalla104dff2020-01-08 13:18:20 -0500641 * Removed duplicated typedef in C-extension headers.
Jisi Liu7bd16062017-12-19 11:28:30 -0800642 * Avoided calling private php methods (timelib_update_ts).
643 * Fixed Any.php to use fully-qualified name for DescriptorPool.
644
645 Ruby
646 * Added Google_Protobuf_discard_unknown for discarding unknown fields in
647 messages.
648
649 C#
650 * Unknown fields are now preserved by default.
Jisi Liu62616e12017-12-19 15:22:18 -0800651 * Floating point values are now bitwise compared, affecting message equality
652 check and Contains() API in map and repeated fields.
Jisi Liu7bd16062017-12-19 11:28:30 -0800653
654
Jisi Liu44935952017-11-13 10:47:48 -08006552017-11-13 version 3.5.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
Jisi Liuce2d5282017-11-08 13:50:25 -0800656 Planned Future Changes
657 * Make C++ implementation C++11 only: we plan to require C++11 to build
658 protobuf code starting from 3.6.0 release. Please join this github issue:
Feng Xiaoafe98de2018-08-22 11:55:30 -0700659 https://github.com/protocolbuffers/protobuf/issues/2780 to provide your feedback.
Jisi Liuce2d5282017-11-08 13:50:25 -0800660
661 General
662 * Unknown fields are now preserved in proto3 for most of the language
663 implementations for proto3 by default. See the per-language section for
664 details.
665 * reserve keyword are now supported in enums
666
667 C++
668 * Proto3 messages are now preserving unknown fields by default. If you rely on
669 unknowns fields being dropped. Please use DiscardUnknownFields() explicitly.
670 * Deprecated the unsafe_arena_release_* and unsafe_arena_add_allocated_*
671 methods for string fields.
672 * Added move constructor and move assignment to RepeatedField,
673 RepeatedPtrField and google::protobuf::Any.
674 * Added perfect forwarding in Arena::CreateMessage
675 * In-progress experimental support for implicit weak fields with lite protos.
676 This feature allows the linker to strip out more unused messages and reduce
677 binary size.
678 * Various performance optimizations.
679
680 Java
681 * Proto3 messages are now preserving unknown fields by default. If you’d like
Jisi Liu44935952017-11-13 10:47:48 -0800682 to drop unknown fields, please use the DiscardUnknownFieldsParser API. For
Jisi Liuce2d5282017-11-08 13:50:25 -0800683 example:
Jisi Liu8a3c5cc2017-11-08 13:55:55 -0800684 Parser<Foo> parser = DiscardUnknownFieldsParser.wrap(Foo.parser());
685 Foo foo = parser.parseFrom(input);
Jisi Liuce2d5282017-11-08 13:50:25 -0800686 * Added a new CodedInputStream decoder for Iterable<ByteBuffer> with direct
687 ByteBuffers.
688 * TextFormat now prints unknown length-delimited fields as messages if
689 possible.
690 * FieldMaskUtil.merge() no longer creates unnecessary empty messages when a
691 message field is unset in both source message and destination message.
692 * Various performance optimizations.
693
694 Python
695 * Proto3 messages are now preserving unknown fields by default. Use
696 message.DiscardUnknownFields() to drop unknown fields.
697 * Add FieldDescriptor.file in generated code.
698 * Add descriptor pool FindOneofByName in pure python.
699 * Change unknown enum values into unknown field set .
700 * Add more Python dict/list compatibility for Struct/ListValue.
701 * Add utf-8 support for text_format.Merge()/Parse().
702 * Support numeric unknown enum values for proto3 JSON format.
703 * Add warning for Unexpected end-group tag in cpp extension.
704
705 PHP
706 * Proto3 messages are now preserving unknown fields.
707 * Provide well known type messages in runtime.
708 * Add prefix ‘PB’ to generated class of reserved names.
709 * Fixed all conformance tests for encode/decode json in php runtime. C
710 extension needs more work.
711
712 Objective-C
713 * Fixed some issues around copying of messages with unknown fields and then
714 mutating the unknown fields in the copy.
715
716 C#
717 * Added unknown field support in JsonParser.
718 * Fixed oneof message field merge.
Jan Tattermusch07df2302017-11-10 18:37:33 +0100719 * Simplify parsing messages from array slices.
Jisi Liuce2d5282017-11-08 13:50:25 -0800720
721 Ruby
722 * Unknown fields are now preserved by default.
723 * Fixed several bugs for segment fault.
724
725 Javascript
726 * Decoder can handle both paced and unpacked data no matter how the proto is
727 defined.
728 * Decoder now accept long varint for 32 bit integers.
729
730
Jisi Liu3ae8c4c2017-08-14 14:32:48 -07007312017-08-14 version 3.4.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
Jisi Liu8a5208f2017-08-01 15:47:26 -0700732 Planned Future Changes
733 * There are some changes that are not included in this release but are planned
734 for the near future
735 - Preserve unknown fields in proto3: We are going to bring unknown fields
736 back into proto3. In this release, some languages start to support
737 preserving unknown fields in proto3, controlled by flags/options. Some
Jisi Liu3ae8c4c2017-08-14 14:32:48 -0700738 languages also introduce explicit APIs to drop unknown fields for
Jisi Liu8a5208f2017-08-01 15:47:26 -0700739 migration. Please read the change log sections by languages for details.
740 For general timeline and plan:
741
742 https://docs.google.com/document/d/1KMRX-G91Aa-Y2FkEaHeeviLRRNblgIahbsk4wA14gRk/view
743
744 For issues and discussions:
745
Feng Xiaoafe98de2018-08-22 11:55:30 -0700746 https://github.com/protocolbuffers/protobuf/issues/272
Jisi Liu8a5208f2017-08-01 15:47:26 -0700747
748 - Make C++ implementation C++11 only: we plan to require C++11 to build
749 protobuf code starting from 3.5.0 or 3.6.0 release, after unknown fields
750 semantic changes are finished. Please join this
751 github issue:
752
Feng Xiaoafe98de2018-08-22 11:55:30 -0700753 https://github.com/protocolbuffers/protobuf/issues/2780
Jisi Liu8a5208f2017-08-01 15:47:26 -0700754
755 to provide your feedback.
756
757 General
758 * Extension ranges now accept options and are customizable.
759 * "reserve" keyword now supports “max” in field number ranges,
760 e.g. reserve 1000 to max;
761
762 C++
763 * Proto3 messages are now able to preserve unknown fields. The default
764 behavior is still to drop unknowns, which will be flipped in a future
765 release. If you rely on unknowns fields being dropped. Please use
Jisi Liu39a91d32017-08-03 11:15:47 -0700766 Message::DiscardUnknownFields() explicitly.
Jisi Liu8a5208f2017-08-01 15:47:26 -0700767 * Packable proto3 fields are now packed by default in serialization.
768 * Following C++11 features are introduced when C++11 is available:
769 - move-constructor and move-assignment are introduced to messages
770 - Repeated fields constructor now takes std::initializer_list
771 - rvalue setters are introduced for string fields
772 * Experimental Table-Driven parsing and serialization available to test. To
773 enable it, pass in table_driven_parsing table_driven_serialization protoc
774 generator flags for C++
775
776 $ protoc --cpp_out=table_driven_parsing,table_driven_serialization:./ \
777 test.proto
Jisi Liu3ae8c4c2017-08-14 14:32:48 -0700778
Jisi Liu8a5208f2017-08-01 15:47:26 -0700779 * lite generator parameter supported by the generator. Once set, all generated
780 files, use lite runtime regardless of the optimizer_for setting in the
781 .proto file.
782 * Various optimizations to make C++ code more performant on PowerPC platform
783 * Fixed maps data corruption when the maps are modified by both reflection API
784 and generated API.
785 * Deterministic serialization on maps reflection now uses stable sort.
786 * file() accessors are introduced to various *Descriptor classes to make
787 writing template function easier.
788 * ByteSize() and SpaceUsed() are deprecated.Use ByteSizeLong() and
789 SpaceUsedLong() instead
790 * Consistent hash function is used for maps in DEBUG and NDEBUG build.
791 * "using namespace std" is removed from stubs/common.h
792 * Various performance optimizations and bug fixes
793
794 Java
795 * Introduced new parser API DiscardUnknownFieldsParser in preparation of
796 proto3 unknown fields preservation change. Users who want to drop unknown
797 fields should migrate to use this new parser API. For example:
798
799 Parser<Foo> parser = DiscardUnknownFieldsParser.wrap(Foo.parser());
800 Foo foo = parser.parseFrom(input);
801
802 * Introduced new TextFormat API printUnicodeFieldValue() that prints field
803 value without escaping unicode characters.
804 * Added Durations.compare(Duration, Duration) and
805 Timestamps.compare(Timestamp, Timestamp).
806 * JsonFormat now accepts base64url encoded bytes fields.
807 * Optimized CodedInputStream to do less copies when parsing large bytes
808 fields.
809 * Optimized TextFormat to allocate less memory when printing.
810
811 Python
812 * SerializeToString API is changed to SerializeToString(self, **kwargs),
813 deterministic parameter is accepted for deterministic serialization.
814 * Added sort_keys parameter in json format to make the output deterministic.
815 * Added indent parameter in json format.
816 * Added extension support in json format.
817 * Added __repr__ support for repeated field in cpp implementation.
818 * Added file in FieldDescriptor.
819 * Added pretty-print filter to text format.
820 * Services and method descriptors are always printed even if generic_service
821 option is turned off.
Jie Luod1484cd2017-08-16 14:40:59 -0700822 * Note: AppEngine 2.5 is deprecated on June 2017 that AppEngine 2.5 will
823 never update protobuf runtime. Users who depend on AppEngine 2.5 should use
824 old protoc.
Jisi Liu44935952017-11-13 10:47:48 -0800825
Jisi Liu8a5208f2017-08-01 15:47:26 -0700826 PHP
827 * Support PHP generic services. Specify file option php_generic_service=true
828 to enable generating service interface.
829 * Message, repeated and map fields setters take value instead of reference.
830 * Added map iterator in c extension.
831 * Support json  encode/decode.
832 * Added more type info in getter/setter phpdoc
833 * Fixed the problem that c extension and php implementation cannot be used
834 together.
835 * Added file option php_namespace to use custom php namespace instead of
836 package.
837 * Added fluent setter.
838 * Added descriptor API in runtime for custom encode/decode.
839 * Various bug fixes.
840
841 Objective-C
842 * Fix for GPBExtensionRegistry copying and add tests.
843 * Optimize GPBDictionary.m codegen to reduce size of overall library by 46K
844 per architecture.
845 * Fix some cases of reading of 64bit map values.
846 * Properly error on a tag with field number zero.
847 * Preserve unknown fields in proto3 syntax files.
848 * Document the exceptions on some of the writing apis.
849
850 C#
851 * Implemented IReadOnlyDictionary<K,V> in MapField<K,V>
852 * Added TryUnpack method for Any message in addition to Unpack.
853 * Converted C# projects to MSBuild (csproj) format.
854
855 Ruby
856 * Several bug fixes.
857
858 Javascript
859 * Added support of field option js_type. Now one can specify the JS type of a
860 64-bit integer field to be string in the generated code by adding option
861 [jstype = JS_STRING] on the field.
862
Feng Xiao80f0c0a2017-04-05 17:26:46 -07008632017-04-05 version 3.3.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
864 Planned Future Changes
865 * There are some changes that are not included in this release but are
866 planned for the near future:
867 - Preserve unknown fields in proto3: please read this doc:
868
869 https://docs.google.com/document/d/1KMRX-G91Aa-Y2FkEaHeeviLRRNblgIahbsk4wA14gRk/view
870
871 for the timeline and follow up this github issue:
872
Feng Xiaoafe98de2018-08-22 11:55:30 -0700873 https://github.com/protocolbuffers/protobuf/issues/272
Feng Xiao80f0c0a2017-04-05 17:26:46 -0700874
875 for discussion.
876 - Make C++ implementation C++11 only: we plan to require C++11 to build
877 protobuf code starting from 3.4.0 or 3.5.0 release. Please join this
878 github issue:
879
Feng Xiaoafe98de2018-08-22 11:55:30 -0700880 https://github.com/protocolbuffers/protobuf/issues/2780
Feng Xiao80f0c0a2017-04-05 17:26:46 -0700881
882 to provide your feedback.
883
884 C++
885 * Fixed map fields serialization of DynamicMessage to correctly serialize
886 both key and value regardless of their presence.
887 * Parser now rejects field number 0 correctly.
888 * New API Message::SpaceUsedLong() that’s equivalent to
889 Message::SpaceUsed() but returns the value in size_t.
890 * JSON support
891 - New flag always_print_enums_as_ints in JsonPrintOptions.
892 - New flag preserve_proto_field_names in JsonPrintOptions. It will instruct
893 the JSON printer to use the original field name declared in the .proto
894 file instead of converting them to lowerCamelCase when printing JSON.
895 - JsonPrintOptions.always_print_primtive_fields now works for oneof message
896 fields.
897 - Fixed a bug that doesn’t allow different fields to set the same json_name
898 value.
899 - Fixed a performance bug that causes excessive memory copy when printing
900 large messages.
901 * Various performance optimizations.
902
903 Java
904 * Map field setters eagerly validate inputs and throw NullPointerExceptions
905 as appropriate.
906 * Added ByteBuffer overloads to the generated parsing methods and the Parser
907 interface.
908 * proto3 enum's getNumber() method now throws on UNRECOGNIZED values.
909 * Output of JsonFormat is now locale independent.
910
911 Python
912 * Added FindServiceByName() in the pure-Python DescriptorPool. This works only
913 for descriptors added with DescriptorPool.Add(). Generated descriptor_pool
914 does not support this yet.
915 * Added a descriptor_pool parameter for parsing Any in text_format.Parse().
916 * descriptor_pool.FindFileContainingSymbol() now is able to find nested
917 extensions.
918 * Extending empty [] to repeated field now sets parent message presence.
919
920 PHP
921 * Added file option php_class_prefix. The prefix will be prepended to all
922 generated classes defined in the file.
923 * When encoding, negative int32 values are sign-extended to int64.
924 * Repeated/Map field setter accepts a regular PHP array. Type checking is
925 done on the array elements.
926 * encode/decode are renamed to serializeToString/mergeFromString.
927 * Added mergeFrom, clear method on Message.
928 * Fixed a bug that oneof accessor didn’t return the field name that is
929 actually set.
930 * C extension now works with php7.
931 * This is the first GA release of PHP. We guarantee that old generated code
932 can always work with new runtime and new generated code.
933
934 Objective-C
935 * Fixed help for GPBTimestamp for dates before the epoch that contain
936 fractional seconds.
937 * Added GPBMessageDropUnknownFieldsRecursively() to remove unknowns from a
938 message and any sub messages.
939 * Addressed a threading race in extension registration/lookup.
940 * Increased the max message parsing depth to 100 to match the other languages.
941 * Removed some use of dispatch_once in favor of atomic compare/set since it
942 needs to be heap based.
943 * Fixes for new Xcode 8.3 warnings.
944
945 C#
946 * Fixed MapField.Values.CopyTo, which would throw an exception unnecessarily
947 if provided exactly the right size of array to copy to.
948 * Fixed enum JSON formatting when multiple names mapped to the same numeric
949 value.
950 * Added JSON formatting option to format enums as integers.
951 * Modified RepeatedField<T> to implement IReadOnlyList<T>.
952 * Introduced the start of custom option handling; it's not as pleasant as it
953 might be, but the information is at least present. We expect to extend code
954 generation to improve this in the future.
955 * Introduced ByteString.FromStream and ByteString.FromStreamAsync to
956 efficiently create a ByteString from a stream.
957 * Added whole-message deprecation, which decorates the class with [Obsolete].
958
959 Ruby
960 * Fixed Message#to_h for messages with map fields.
961 * Fixed memcpy() in binary gems to work for old glibc, without breaking the
962 build for non-glibc libc’s like musl.
963
964 Javascript
965 * Added compatibility tests for version 3.0.0.
966 * Added conformance tests.
967 * Fixed serialization of extensions: we need to emit a value even if it is
968 falsy (like the number 0).
969 * Use closurebuilder.py in favor of calcdeps.py for compiling JavaScript.
970
Paul Yang7f3e2372017-01-31 09:17:32 -08009712017-01-23 version 3.2.0 (C++/Java/Python/PHP/Ruby/Objective-C/C#/JavaScript/Lite)
972 General
973 * Added protoc version number to protoc plugin protocol. It can be used by
974 protoc plugin to detect which version of protoc is used with the plugin and
975 mitigate known problems in certain version of protoc.
976
977 C++
978 * The default parsing byte size limit has been raised from 64MB to 2GB.
979 * Added rvalue setters for non-arena string fields.
980 * Enabled debug logging for Android.
981 * Fixed a double-free problem when using Reflection::SetAllocatedMessage()
982 with extension fields.
983 * Fixed several deterministic serialization bugs:
984 * MessageLite::SerializeAsString() now respects the global deterministic
985 serialization flag.
986 * Extension fields are serialized deterministically as well. Fixed protocol
987 compiler to correctly report importing-self as an error.
988 * Fixed FileDescriptor::DebugString() to print custom options correctly.
989 * Various performance/codesize optimizations and cleanups.
990
991 Java
992 * The default parsing byte size limit has been raised from 64MB to 2GB.
993 * Added recursion limit when parsing JSON.
994 * Fixed a bug that enumType.getDescriptor().getOptions() doesn't have custom
995 options.
996 * Fixed generated code to support field numbers up to 2^29-1.
997
998 Python
999 * You can now assign NumPy scalars/arrays (np.int32, np.int64) to protobuf
1000 fields, and assigning other numeric types has been optimized for
1001 performance.
1002 * Pure-Python: message types are now garbage-collectable.
1003 * Python/C++: a lot of internal cleanup/refactoring.
1004
1005 PHP (Alpha)
1006 * For 64-bit integers type (int64/uint64/sfixed64/fixed64/sint64), use PHP
1007 integer on 64-bit environment and PHP string on 32-bit environment.
1008 * PHP generated code also conforms to PSR-4 now.
1009 * Fixed ZTS build for c extension.
1010 * Fixed c extension build on Mac.
1011 * Fixed c extension build on 32-bit linux.
1012 * Fixed the bug that message without namespace is not found in the descriptor
1013 pool. (#2240)
1014 * Fixed the bug that repeated field is not iterable in c extension.
1015 * Message names Empty will be converted to GPBEmpty in generated code.
1016 * Added phpdoc in generated files.
1017 * The released API is almost stable. Unless there is large problem, we won't
1018 change it. See
1019 https://developers.google.com/protocol-buffers/docs/reference/php-generated
1020 for more details.
1021
1022 Objective-C
1023 * Added support for push/pop of the stream limit on CodedInputStream for
1024 anyone doing manual parsing.
1025
1026 C#
1027 * No changes.
1028
1029 Ruby
1030 * Message objects now support #respond_to? for field getters/setters.
1031 * You can now compare “message == non_message_object” and it will return false
1032 instead of throwing an exception.
1033 * JRuby: fixed #hashCode to properly reflect the values in the message.
1034
1035 Javascript
1036 * Deserialization of repeated fields no longer has quadratic performance
1037 behavior.
1038 * UTF-8 encoding/decoding now properly supports high codepoints.
1039 * Added convenience methods for some well-known types: Any, Struct, and
1040 Timestamp. These make it easier to convert data between native JavaScript
1041 types and the well-known protobuf types.
1042
Paul Yang17cc42a2016-09-23 18:33:25 -070010432016-09-23 version 3.1.0 (C++/Java/Python/PHP/Ruby/Objective-C/C#/JavaScript/Lite)
1044 General
1045 * Proto3 support in PHP (alpha).
1046 * Various bug fixes.
1047
1048 C++
1049 * Added MessageLite::ByteSizeLong() that’s equivalent to
1050 MessageLite::ByteSize() but returns the value in size_t. Useful to check
1051 whether a message is over the 2G size limit that protobuf can support.
1052 * Moved default_instances to global variables. This allows default_instance
1053 addresses to be known at compile time.
1054 * Adding missing generic gcc 64-bit atomicops.
1055 * Restore New*Callback into google::protobuf namespace since these are used
1056 by the service stubs code
1057 * JSON support.
1058 * Fixed some conformance issues.
1059 * Fixed a JSON serialization bug for bytes fields.
1060
1061 Java
1062 * Fixed a bug in TextFormat that doesn’t accept empty repeated fields (i.e.,
1063 “field: [ ]”).
1064 * JSON support
1065 * Fixed JsonFormat to do correct snake_case-to-camelCase conversion for
1066 non-style-conforming field names.
1067 * Fixed JsonFormat to parse empty Any message correctly.
1068 * Added an option to JsonFormat.Parser to ignore unknown fields.
1069 * Experimental API
1070 * Added UnsafeByteOperations.unsafeWrap(byte[]) to wrap a byte array into
1071 ByteString without copy.
1072
1073 Python
1074 * JSON support
1075 * Fixed some conformance issues.
1076
1077 PHP (Alpha)
1078 * We have added the proto3 support for PHP via both a pure PHP package and a
1079 native c extension. The pure PHP package is intended to provide usability
1080 to wider range of PHP platforms, while the c extension is intended to
1081 provide higher performance. Both implementations provide the same runtime
1082 APIs and share the same generated code. Users don’t need to re-generate
1083 code for the same proto definition when they want to switch the
1084 implementation later. The pure PHP package is included in the php/src
Paul Yang7f3e2372017-01-31 09:17:32 -08001085 directory, and the c extension is included in the php/ext directory.
1086
Paul Yang17cc42a2016-09-23 18:33:25 -07001087 Both implementations provide idiomatic PHP APIs:
1088 * All messages and enums are defined as PHP classes.
1089 * All message fields can only be accessed via getter/setter.
1090 * Both repeated field elements and map elements are stored in containers
1091 that act like a normal PHP array.
Paul Yang7f3e2372017-01-31 09:17:32 -08001092
Paul Yang17cc42a2016-09-23 18:33:25 -07001093 Unlike several existing third-party PHP implementations for protobuf, our
1094 implementations are built on a "strongly-typed" philosophy: message fields
1095 and array/map containers will throw exceptions eagerly when values of the
1096 incorrect type (not including those that can be type converted, e.g.,
1097 double <-> integer <-> numeric string) are inserted.
Paul Yang7f3e2372017-01-31 09:17:32 -08001098
Paul Yang17cc42a2016-09-23 18:33:25 -07001099 Currently, pure PHP runtime supports php5.5, 5.6 and 7 on linux. C
1100 extension runtime supports php5.5 and 5.6 on linux.
Paul Yang7f3e2372017-01-31 09:17:32 -08001101
Paul Yang17cc42a2016-09-23 18:33:25 -07001102 See php/README.md for more details about installment. See
1103 https://developers.google.com/protocol-buffers/docs/phptutorial for more
1104 details about APIs.
1105
1106 Objective-C
Benjamin Peterson5939bc32019-03-21 12:31:41 -07001107 * Helpers are now provided for working the Any well known type (see
Paul Yang17cc42a2016-09-23 18:33:25 -07001108 GPBWellKnownTypes.h for the api additions).
1109 * Some improvements in startup code (especially when extensions aren’t used).
1110
1111 Javascript
1112 * Fixed missing import of jspb.Map
1113 * Fixed valueWriterFn variable name
1114
1115 Ruby
1116 * Fixed hash computation for JRuby's RubyMessage
1117 * Make sure map parsing frames are GC-rooted.
1118 * Added API support for well-known types.
1119
1120 C#
1121 * Removed check on dependency in the C# reflection API.
1122
Jisi Liue298ce52016-09-06 14:37:35 -070011232016-09-06 version 3.0.2 (C++/Java/Python/Ruby/Objective-C/C#/JavaScript/Lite)
Jisi Liu4041ed42016-09-02 11:24:58 -07001124 General
1125 * Various bug fixes.
1126
1127 Objective C
1128 * Fix for oneofs in proto3 syntax files where fields were set to the zero
1129 value.
1130 * Fix for embedded null character in strings.
1131 * CocoaDocs support
1132
1133 Ruby
Jisi Liu0c9999f2016-09-02 11:40:58 -07001134 * Fixed memory corruption bug in parsing that could occur under GC pressure.
Jisi Liu4041ed42016-09-02 11:24:58 -07001135
1136 Javascript
Jisi Liu0c9999f2016-09-02 11:40:58 -07001137 * jspb.Map is now properly exported to CommonJS modules.
1138
1139 C#
1140 * Removed legacy_enum_values flag.
1141
Jisi Liu4041ed42016-09-02 11:24:58 -07001142
Jisi Liue0d817e2016-07-27 12:08:01 -070011432016-07-27 version 3.0.0 (C++/Java/Python/Ruby/Objective-C/C#/JavaScript/Lite)
1144 General
1145 * This log only contains changes since the beta-4 release. Summarized change
1146 log since the last stable release (v2.6.1) can be found in the github
1147 release page.
1148
1149 Compatibility Notice
1150 * v3.0.0 is the first API stable release of the v3.x series. We do not expect
1151 any future API breaking changes.
1152 * For C++, Java Lite and Objective-C, source level compatibility is
1153 guaranteed. Upgrading from v3.0.0 to newer minor version releases will be
1154 source compatible. For example, if your code compiles against protobuf
1155 v3.0.0, it will continue to compile after you upgrade protobuf library to
1156 v3.1.0.
1157 * For other languages, both source level compatibility and binary level
1158 compatibility are guaranteed. For example, if you have a Java binary built
1159 against protobuf v3.0.0. After switching the protobuf runtime binary to
1160 v3.1.0, your built binary should continue to work.
1161 * Compatibility is only guaranteed for documented API and documented
1162 behaviors. If you are using undocumented API (e.g., use anything in the C++
1163 internal namespace), it can be broken by minor version releases in an
1164 undetermined manner.
1165
1166 Ruby
1167 * When you assign a string field `a.string_field = "X"`, we now call
1168 #encode(UTF-8) on the string and freeze the copy. This saves you from
1169 needing to ensure the string is already encoded as UTF-8. It also prevents
1170 you from mutating the string after it has been assigned (this is how we
1171 ensure it stays valid UTF-8).
1172 * The generated file for `foo.proto` is now `foo_pb.rb` instead of just
1173 `foo.rb`. This makes it easier to see which imports/requires are from
1174 protobuf generated code, and also prevents conflicts with any `foo.rb` file
1175 you might have written directly in Ruby. It is a backward-incompatible
1176 change: you will need to update all of your `require` statements.
1177 * For package names like `foo_bar`, we now translate this to the Ruby module
1178 `FooBar`. This is more idiomatic Ruby than what we used to do (`Foo_bar`).
1179
1180 JavaScript
1181 * Scalar fields like numbers and boolean now return defaults instead of
1182 `undefined` or `null` when they are unset. You can test for presence
1183 explicitly by calling `hasFoo()`, which we now generate for scalar fields.
1184
1185 Java Lite
1186 * Java Lite is now implemented as a separate plugin, maintained in the
1187 `javalite` branch. Both lite runtime and protoc artifacts will be available
1188 in Maven.
1189
1190 C#
1191 * Target platforms now .NET 4.5, selected portable subsets and .NET Core.
1192 * legacy_enum_values option is no longer supported.
1193
Feng Xiao1349fb82016-07-15 12:19:15 -070011942016-07-15 version 3.0.0-beta-4 (C++/Java/Python/Ruby/Objective-C/C#/JavaScript)
1195 General
Feng Xiao82b43d12016-07-18 10:36:04 -07001196 * Added a deterministic serialization API for C++. The deterministic
Feng Xiao1349fb82016-07-15 12:19:15 -07001197 serialization guarantees that given a binary, equal messages will be
1198 serialized to the same bytes. This allows applications like MapReduce to
1199 group equal messages based on the serialized bytes. The deterministic
1200 serialization is, however, NOT canonical across languages; it is also
1201 unstable across different builds with schema changes due to unknown fields.
1202 Users who need canonical serialization, e.g. persistent storage in a
1203 canonical form, fingerprinting, etc, should define their own
1204 canonicalization specification and implement the serializer using reflection
1205 APIs rather than relying on this API.
1206 * Added OneofOptions. You can now define custom options for oneof groups.
1207 import "google/protobuf/descriptor.proto";
1208 extend google.protobuf.OneofOptions {
1209 optional int32 my_oneof_extension = 12345;
1210 }
1211 message Foo {
1212 oneof oneof_group {
1213 (my_oneof_extension) = 54321;
1214 ...
1215 }
1216 }
1217
1218 C++ (beta)
1219 * Introduced a deterministic serialization API in
1220 CodedOutputStream::SetSerializationDeterministic(bool). See the notes about
1221 deterministic serialization in the General section.
1222 * Added google::protobuf::Map::swap() to swap two map fields.
1223 * Fixed a memory leak when calling Reflection::ReleaseMessage() on a message
1224 allocated on arena.
1225 * Improved error reporting when parsing text format protos.
1226 * JSON
1227 - Added a new parser option to ignore unknown fields when parsing JSON.
1228 - Added convenient methods for message to/from JSON conversion.
1229 * Various performance optimizations.
1230
1231 Java (beta)
Feng Xiao1349fb82016-07-15 12:19:15 -07001232 * File option "java_generate_equals_and_hash" is now deprecated. equals() and
1233 hashCode() methods are generated by default.
1234 * Added a new JSON printer option "omittingInsignificantWhitespace" to produce
1235 a more compact JSON output. The printer will pretty-print by default.
1236 * Updated Java runtime to be compatible with 2.5.0/2.6.1 generated protos.
1237
1238 Python (beta)
1239 * Added support to pretty print Any messages in text format.
1240 * Added a flag to ignore unknown fields when parsing JSON.
1241 * Bugfix: "@type" field of a JSON Any message is now correctly put before
1242 other fields.
1243
1244 Objective-C (beta)
1245 * Updated the code to support compiling with more compiler warnings
1246 enabled. (Issue 1616)
1247 * Exposing more detailed errors for parsing failures. (PR 1623)
1248 * Small (breaking) change to the naming of some methods on the support classes
1249 for map<>. There were collisions with the system provided KVO support, so
1250 the names were changed to avoid those issues. (PR 1699)
1251 * Fixed for proper Swift bridging of error handling during parsing. (PR 1712)
1252 * Complete support for generating sources that will go into a Framework and
1253 depend on generated sources from other Frameworks. (Issue 1457)
1254
1255 C# (beta)
1256 * RepeatedField optimizations.
1257 * Support for .NET Core.
1258 * Minor bug fixes.
1259 * Ability to format a single value in JsonFormatter (advanced usage only).
1260 * Modifications to attributes applied to generated code.
1261
1262 Javascript (alpha)
1263 * Maps now have a real map API instead of being treated as repeated fields.
1264 * Well-known types are now provided in the google-protobuf package, and the
1265 code generator knows to require() them from that package.
1266 * Bugfix: non-canonical varints are correctly decoded.
1267
1268 Ruby (alpha)
1269 * Accessors for oneof fields now return default values instead of nil.
1270
Feng Xiao3d9726f2016-07-15 15:26:44 -07001271 Java Lite
1272 * Java lite support is removed from protocol compiler. It will be supported
1273 as a protocol compiler plugin in a separate code branch.
1274
Jisi Liu0ec34bf2016-05-16 11:20:33 -070012752016-05-16 version 3.0.0-beta-3 (C++/Java/Python/Ruby/Nano/Objective-C/C#/JavaScript)
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001276 General
1277 * Supported Proto3 lite-runtime in C++/Java for mobile platforms.
1278 * Any type now supports APIs to specify prefixes other than
1279 type.googleapis.com
Jisi Liu0ec34bf2016-05-16 11:20:33 -07001280 * Removed javanano_use_deprecated_package option; Nano will always has its own
1281 ".nano" package.
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001282
1283 C++ (Beta)
Jisi Liu034867f2016-05-13 16:16:14 -07001284 * Improved hash maps.
1285 - Improved hash maps comments. In particular, please note that equal hash
1286 maps will not necessarily have the same iteration order and
1287 serialization.
1288 - Added a new hash maps implementation that will become the default in a
1289 later release.
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001290 * Arenas
1291 - Several inlined methods in Arena were moved to out-of-line to improve
1292 build performance and code size.
1293 - Added SpaceAllocatedAndUsed() to report both space used and allocated
1294 - Added convenient class UnsafeArenaAllocatedRepeatedPtrFieldBackInserter
1295 * Any
Jisi Liuede9cc42016-05-11 15:30:21 -07001296 - Allow custom type URL prefixes in Any packing.
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001297 - TextFormat now expand the Any type rather than printing bytes.
1298 * Performance optimizations and various bug fixes.
1299
1300 Java (Beta)
1301 * Introduced an ExperimentalApi annotation. Annotated APIs are experimental
1302 and are subject to change in a backward incompatible way in future releases.
Jisi Liuede9cc42016-05-11 15:30:21 -07001303 * Introduced zero-copy serialization as an ExperimentalApi
1304 - Introduction of the `ByteOutput` interface. This is similar to
1305 `OutputStream` but provides semantics for lazy writing (i.e. no
1306 immediate copy required) of fields that are considered to be immutable.
1307 - `ByteString` now supports writing to a `ByteOutput`, which will directly
1308 expose the internals of the `ByteString` (i.e. `byte[]` or `ByteBuffer`)
1309 to the `ByteOutput` without copying.
1310 - `CodedOutputStream` now supports writing to a `ByteOutput`. `ByteString`
1311 instances that are too large to fit in the internal buffer will be
1312 (lazily) written to the `ByteOutput` directly.
1313 - This allows applications using large `ByteString` fields to avoid
1314 duplication of these fields entirely. Such an application can supply a
1315 `ByteOutput` that chains together the chunks received from
1316 `CodedOutputStream` before forwarding them onto the IO system.
1317 * Other related changes to `CodedOutputStream`
1318 - Additional use of `sun.misc.Unsafe` where possible to perform fast
1319 access to `byte[]` and `ByteBuffer` values and avoiding unnecessary
1320 range checking.
1321 - `ByteBuffer`-backed `CodedOutputStream` now writes directly to the
1322 `ByteBuffer` rather than to an intermediate array.
Jisi Liu0ec34bf2016-05-16 11:20:33 -07001323 * Improved lite-runtime.
1324 - Lite protos now implement deep equals/hashCode/toString
1325 - Significantly improved the performance of Builder#mergeFrom() and
1326 Builder#mergeDelimitedFrom()
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001327 * Various bug fixes and small feature enhancement.
1328 - Fixed stack overflow when in hashCode() for infinite recursive oneofs.
1329 - Fixed the lazy field parsing in lite to merge rather than overwrite.
1330 - TextFormat now supports reporting line/column numbers on errors.
Jisi Liu0ec34bf2016-05-16 11:20:33 -07001331 - Updated to add appropriate @Override for better compiler errors.
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001332
1333 Python (Beta)
Jie Luoe4ca6942016-05-11 16:39:50 -07001334 * Added JSON format for Any, Struct, Value and ListValue
1335 * [ ] is now accepted for both repeated scalar fields and repeated message
1336 fields in text format parser.
1337 * Numerical field name is now supported in text format.
1338 * Added DiscardUnknownFields API for python protobuf message.
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001339
1340 Objective-C (Beta)
Jisi Liuede9cc42016-05-11 15:30:21 -07001341 * Proto comments now come over as HeaderDoc comments in the generated sources
1342 so Xcode can pick them up and display them.
1343 * The library headers have been updated to use HeaderDoc comments so Xcode can
1344 pick them up and display them.
1345 * The per message and per field overhead in both generated code and runtime
1346 object sizes was reduced.
1347 * Generated code now include deprecated annotations when the proto file
1348 included them.
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001349
1350 C# (Beta)
Jisi Liuede9cc42016-05-11 15:30:21 -07001351 In general: some changes are breaking, which require regenerating messages.
1352 Most user-written code will not be impacted *except* for the renaming of enum
1353 values.
1354
1355 * Allow custom type URL prefixes in `Any` packing, and ignore them when
1356 unpacking
1357 * `protoc` is now in a separate NuGet package (Google.Protobuf.Tools)
1358 * New option: `internal_access` to generate internal classes
1359 * Enum values are now PascalCased, and if there's a prefix which matches the
1360 name of the enum, that is removed (so an enum `COLOR` with a value
1361 `COLOR_BLUE` would generate a value of just `Blue`). An option
1362 (`legacy_enum_values`) is temporarily available to disable this, but the
1363 option will be removed for GA.
1364 * `json_name` option is now honored
1365 * If group tags are encountered when parsing, they are validated more
1366 thoroughly (although we don't support actual groups)
1367 * NuGet dependencies are better specified
1368 * Breaking: `Preconditions` is renamed to `ProtoPreconditions`
1369 * Breaking: `GeneratedCodeInfo` is renamed to `GeneratedClrTypeInfo`
1370 * `JsonFormatter` now allows writing to a `TextWriter`
1371 * New interface, `ICustomDiagnosticMessage` to allow more compact
1372 representations from `ToString`
1373 * `CodedInputStream` and `CodedOutputStream` now implement `IDisposable`,
1374 which simply disposes of the streams they were constructed with
1375 * Map fields no longer support null values (in line with other languages)
1376 * Improvements in JSON formatting and parsing
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001377
1378 Javascript (Alpha)
Josh Habermand346f492016-05-12 17:55:56 -07001379 * Better support for "bytes" fields: bytes fields can be read as either a
1380 base64 string or UInt8Array (in environments where TypedArray is supported).
1381 * New support for CommonJS imports. This should make it easier to use the
1382 JavaScript support in Node.js and tools like WebPack. See js/README.md for
1383 more information.
1384 * Some significant internal refactoring to simplify and modularize the code.
1385
1386 Ruby (Alpha)
1387 * JSON serialization now properly uses camelCased names, with a runtime option
1388 that will preserve original names from .proto files instead.
1389 * Well-known types are now included in the distribution.
1390 * Release now includes binary gems for Windows, Mac, and Linux instead of just
1391 source gems.
1392 * Bugfix for serializing oneofs.
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001393
1394 C++/Java Lite (Alpha)
1395 A new "lite" generator parameter was introduced in the protoc for C++ and
Jisi Liu5668e2e2016-05-11 14:57:06 -07001396 Java for Proto3 syntax messages. Example usage:
Jisi Liu0e4d1ea2016-05-10 17:32:35 -07001397
1398 ./protoc --cpp_out=lite:$OUTPUT_PATH foo.proto
1399
1400 The protoc will treat the current input and all the transitive dependencies
1401 as LITE. The same generator parameter must be used to generate the
1402 dependencies.
1403
1404 In Proto3 syntax files, "optimized_for=LITE_RUNTIME" is no longer supported.
1405
1406
Josh Haberman81e75c12015-12-30 14:03:49 -080014072015-12-30 version 3.0.0-beta-2 (C++/Java/Python/Ruby/Nano/Objective-C/C#/JavaScript)
Feng Xiaod5fb4082015-12-21 14:36:30 -08001408 General
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08001409 * Introduced a new language implementation: JavaScript.
Feng Xiaod5fb4082015-12-21 14:36:30 -08001410 * Added a new field option "json_name". By default proto field names are
1411 converted to "lowerCamelCase" in proto3 JSON format. This option can be
1412 used to override this behavior and specify a different JSON name for the
1413 field.
1414 * Added conformance tests to ensure implementations are following proto3 JSON
1415 specification.
1416
1417 C++ (Beta)
1418 * Various bug fixes and improvements to the JSON support utility:
1419 - Duplicate map keys in JSON are now rejected (i.e., translation will
1420 fail).
1421 - Fixed wire-format for google.protobuf.Value/ListValue.
1422 - Fixed precision loss when converting google.protobuf.Timestamp.
1423 - Fixed a bug when parsing invalid UTF-8 code points.
1424 - Fixed a memory leak.
1425 - Reduced call stack usage.
1426
1427 Java (Beta)
1428 * Cleaned up some unused methods on CodedOutputStream.
1429 * Presized lists for packed fields during parsing in the lite runtime to
1430 reduce allocations and improve performance.
1431 * Improved the performance of unknown fields in the lite runtime.
1432 * Introduced UnsafeByteStrings to support zero-copy ByteString creation.
1433 * Various bug fixes and improvements to the JSON support utility:
1434 - Fixed a thread-safety bug.
1435 - Added a new option “preservingProtoFieldNames” to JsonFormat.
1436 - Added a new option “includingDefaultValueFields” to JsonFormat.
1437 - Updated the JSON utility to comply with proto3 JSON specification.
1438
1439 Python (Beta)
1440 * Added proto3 JSON format utility. It includes support for all field types
1441 and a few well-known types except for Any and Struct.
1442 * Added runtime support for Any, Timestamp, Duration and FieldMask.
1443 * [ ] is now accepted for repeated scalar fields in text format parser.
Josh Haberman81e75c12015-12-30 14:03:49 -08001444 * Map fields now have proper O(1) performance for lookup/insert/delete
1445 when using the Python/C++ implementation. They were previously using O(n)
1446 search-based algorithms because the C++ reflection interface didn't
1447 support true map operations.
Feng Xiaod5fb4082015-12-21 14:36:30 -08001448
1449 Objective-C (Beta)
1450 * Various bug-fixes and code tweaks to pass more strict compiler warnings.
1451 * Now has conformance test coverage and is passing all tests.
1452
1453 C# (Beta)
1454 * Various bug-fixes.
1455 * Code generation: Files generated in directories based on namespace.
1456 * Code generation: Include comments from .proto files in XML doc
1457 comments (naively)
1458 * Code generation: Change organization/naming of "reflection class" (access
1459 to file descriptor)
1460 * Code generation and library: Add Parser property to MessageDescriptor,
1461 and introduce a non-generic parser type.
1462 * Library: Added TypeRegistry to support JSON parsing/formatting of Any.
1463 * Library: Added Any.Pack/Unpack support.
1464 * Library: Implemented JSON parsing.
1465
1466 Javascript (Alpha)
1467 * Added proto3 support for JavaScript. The runtime is written in pure
1468 JavaScript and works in browsers and in Node.js. To generate JavaScript
1469 code for your proto, invoke protoc with "--js_out". See js/README.md
1470 for more build instructions.
1471
Feng Xiaocc607532015-08-26 16:31:30 -070014722015-08-26 version 3.0.0-beta-1 (C++/Java/Python/Ruby/Nano/Objective-C/C#)
1473 About Beta
1474 * This is the first beta release of protobuf v3.0.0. Not all languages
1475 have reached beta stage. Languages not marked as beta are still in
1476 alpha (i.e., be prepared for API breaking changes).
1477
1478 General
1479 * Proto3 JSON is supported in several languages (fully supported in C++
1480 and Java, partially supported in Ruby/C#). The JSON spec is defined in
1481 the proto3 language guide:
1482
1483 https://developers.google.com/protocol-buffers/docs/proto3#json
1484
1485 We will publish a more detailed spec to define the exact behavior of
1486 proto3-conformant JSON serializers and parsers. Until then, do not rely
1487 on specific behaviors of the implementation if it’s not documented in
1488 the above spec. More specifically, the behavior is not yet finalized for
1489 the following:
1490 - Parsing invalid JSON input (e.g., input with trailing commas).
1491 - Non-camelCase names in JSON input.
1492 - The same field appears multiple times in JSON input.
1493 - JSON arrays contain “null” values.
1494 - The message has unknown fields.
1495
1496 * Proto3 now enforces strict UTF-8 checking. Parsing will fail if a string
1497 field contains non UTF-8 data.
1498
1499 C++ (Beta)
1500 * Introduced new utility functions/classes in the google/protobuf/util
1501 directory:
1502 - MessageDifferencer: compare two proto messages and report their
1503 differences.
1504 - JsonUtil: support converting protobuf binary format to/from JSON.
1505 - TimeUtil: utility functions to work with well-known types Timestamp
1506 and Duration.
1507 - FieldMaskUtil: utility functions to work with FieldMask.
1508
1509 * Performance optimization of arena construction and destruction.
1510 * Bug fixes for arena and maps support.
1511 * Changed to use cmake for Windows Visual Studio builds.
1512 * Added Bazel support.
1513
1514 Java (Beta)
1515 * Introduced a new util package that will be distributed as a separate
1516 artifact in maven. It contains:
1517 - JsonFormat: convert proto messages to/from JSON.
1518 - TimeUtil: utility functions to work with Timestamp and Duration.
1519 - FieldMaskUtil: utility functions to work with FieldMask.
1520
1521 * The static PARSER in each generated message is deprecated, and it will
1522 be removed in a future release. A static parser() getter is generated
1523 for each message type instead.
1524 * Performance optimizations for String fields serialization.
1525 * Performance optimizations for Lite runtime on Android:
1526 - Reduced allocations
1527 - Reduced method overhead after ProGuarding
1528 - Reduced code size after ProGuarding
1529
1530 Python (Alpha)
1531 * Removed legacy Python 2.5 support.
1532 * Moved to a single Python 2.x/3.x-compatible codebase, instead of using 2to3.
1533 * Fixed build/tests on Python 2.6, 2.7, 3.3, and 3.4.
1534 - Pure-Python works on all four.
1535 - Python/C++ implementation works on all but 3.4, due to changes in the
1536 Python/C++ API in 3.4.
1537 * Some preliminary work has been done to allow for multiple DescriptorPools
1538 with Python/C++.
1539
1540 Ruby (Alpha)
1541 * Many bugfixes:
1542 - fixed parsing/serialization of bytes, sint, sfixed types
1543 - other parser bugfixes
1544 - fixed memory leak affecting Ruby 2.2
1545
1546 JavaNano (Alpha)
1547 * JavaNano generated code now will be put in a nano package by default to
1548 avoid conflicts with Java generated code.
1549
1550 Objective-C (Alpha)
1551 * Added non-null markup to ObjC library. Requires SDK 8.4+ to build.
1552 * Many bugfixes:
1553 - Removed the class/enum filter.
1554 - Renamed some internal types to avoid conflicts with the well-known types
1555 protos.
1556 - Added missing support for parsing repeated primitive fields in packed or
1557 unpacked forms.
1558 - Added *Count for repeated and map<> fields to avoid auto-create when
1559 checking for them being set.
1560
1561 C# (Alpha)
1562 * Namespace changed to Google.Protobuf (and NuGet package will be named
1563 correspondingly).
1564 * Target platforms now .NET 4.5 and selected portable subsets only.
1565 * Removed lite runtime.
1566 * Reimplementation to use mutable message types.
1567 * Null references used to represent "no value" for message type fields.
1568 * Proto3 semantics supported; proto2 files are prohibited for C# codegen.
1569 Most proto3 features supported:
1570 - JSON formatting (a.k.a. serialization to JSON), including well-known
1571 types (except for Any).
1572 - Wrapper types mapped to nullable value types (or string/ByteString
1573 allowing nullability). JSON parsing is not supported yet.
1574 - maps
1575 - oneof
1576 - enum unknown value preservation
1577
Bo Yang8908cf12015-05-26 14:37:47 -070015782015-05-25 version 3.0.0-alpha-3 (Objective-C/C#):
1579 General
1580 * Introduced two new language implementations (Objective-C, C#) to proto3.
Bo Yang3e2c8a52015-05-28 14:52:44 -07001581 * Explicit "optional" keyword are disallowed in proto3 syntax, as fields are
1582 optional by default.
1583 * Group fields are no longer supported in proto3 syntax.
Bo Yang8908cf12015-05-26 14:37:47 -07001584 * Changed repeated primitive fields to use packed serialization by default in
1585 proto3 (implemented for C++, Java, Python in this release). The user can
1586 still disable packed serialization by setting packed to false for now.
1587 * Added well-known type protos (any.proto, empty.proto, timestamp.proto,
1588 duration.proto, etc.). Users can import and use these protos just like
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08001589 regular proto files. Additional runtime support will be added for them in
Bo Yang8908cf12015-05-26 14:37:47 -07001590 future releases (in the form of utility helper functions, or having them
1591 replaced by language specific types in generated code).
1592 * Added a "reserved" keyword in both proto2 and proto3 syntax. User can use
1593 this keyword to declare reserved field numbers and names to prevent them
1594 from being reused by other fields in the same message.
1595
1596 To reserve field numbers, add a reserved declaration in your message:
1597
1598 message TestMessage {
1599 reserved 2, 15, 9 to 11, 3;
1600 }
1601
1602 This reserves field numbers 2, 3, 9, 10, 11 and 15. If a user uses any of
1603 these as field numbers, the protocol buffer compiler will report an error.
1604
1605 Field names can also be reserved:
1606
1607 message TestMessage {
1608 reserved "foo", "bar";
1609 }
1610
1611 * Various bug fixes since 3.0.0-alpha-2
1612
1613 Objective-C
1614 Objective-C includes a code generator and a native objective-c runtime
1615 library. By adding “--objc_out” to protoc, the code generator will generate
1616 a header(*.pbobjc.h) and an implementation file(*.pbobjc.m) for each proto
1617 file.
1618
1619 In this first release, the generated interface provides: enums, messages,
1620 field support(single, repeated, map, oneof), proto2 and proto3 syntax
1621 support, parsing and serialization. It’s compatible with ARC and non-ARC
1622 usage. Besides, user can also access it via the swift bridging header.
1623
1624 See objectivec/README.md for details.
1625
1626 C#
1627 * C# protobufs are based on project
1628 https://github.com/jskeet/protobuf-csharp-port. The original project was
1629 frozen and all the new development will happen here.
1630 * Codegen plugin for C# was completely rewritten to C++ and is now an
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08001631 integral part of protoc.
Bo Yang8908cf12015-05-26 14:37:47 -07001632 * Some refactorings and cleanup has been applied to the C# runtime library.
1633 * Only proto2 is supported in C# at the moment, proto3 support is in
1634 progress and will likely bring significant breaking changes to the API.
1635
1636 See csharp/README.md for details.
1637
1638 C++
1639 * Added runtime support for Any type. To use Any in your proto file, first
1640 import the definition of Any:
1641
1642 // foo.proto
1643 import "google/protobuf/any.proto";
1644 message Foo {
1645 google.protobuf.Any any_field = 1;
1646 }
1647 message Bar {
1648 int32 value = 1;
1649 }
1650
1651 Then in C++ you can access the Any field using PackFrom()/UnpackTo()
1652 methods:
1653
1654 Foo foo;
1655 Bar bar = ...;
1656 foo.mutable_any_field()->PackFrom(bar);
1657 ...
1658 if (foo.any_field().IsType<Bar>()) {
1659 foo.any_field().UnpackTo(&bar);
1660 ...
1661 }
1662 * In text format, entries of a map field will be sorted by key.
1663
1664 Java
1665 * Continued optimizations on the lite runtime to improve performance for
1666 Android.
1667
1668 Python
1669 * Added map support.
1670 - maps now have a dict-like interface (msg.map_field[key] = value)
1671 - existing code that modifies maps via the repeated field interface
1672 will need to be updated.
1673
1674 Ruby
1675 * Improvements to RepeatedField's emulation of the Ruby Array API.
1676 * Various speedups and internal cleanups.
1677
Josh Haberman7d5cf8d2015-02-25 23:47:09 -080016782015-02-26 version 3.0.0-alpha-2 (Python/Ruby/JavaNano):
Jisi Liu32f5d012015-02-20 14:45:45 -08001679 General
Josh Haberman7d5cf8d2015-02-25 23:47:09 -08001680 * Introduced three new language implementations (Ruby, JavaNano, and
1681 Python) to proto3.
Jisi Liu32f5d012015-02-20 14:45:45 -08001682 * Various bug fixes since 3.0.0-alpha-1
1683
Josh Haberman31e8c202015-02-25 23:06:35 -08001684 Python:
1685 Python has received several updates, most notably support for proto3
1686 semantics in any .proto file that declares syntax="proto3".
1687 Messages declared in proto3 files no longer represent field presence
1688 for scalar fields (number, enums, booleans, or strings). You can
1689 no longer call HasField() for such fields, and they are serialized
1690 based on whether they have a non-zero/empty/false value.
1691
1692 One other notable change is in the C++-accelerated implementation.
1693 Descriptor objects (which describe the protobuf schema and allow
1694 reflection over it) are no longer duplicated between the Python
1695 and C++ layers. The Python descriptors are now simple wrappers
1696 around the C++ descriptors. This change should significantly
1697 reduce the memory usage of programs that use a lot of message
1698 types.
1699
Jisi Liu32f5d012015-02-20 14:45:45 -08001700 Ruby:
Chris Fallin1d4f3212015-02-20 17:32:06 -08001701 We have added proto3 support for Ruby via a native C extension.
1702
1703 The Ruby extension itself is included in the ruby/ directory, and details on
1704 building and installing the extension are in ruby/README.md. The extension
1705 will also be published as a Ruby gem. Code generator support is included as
1706 part of `protoc` with the `--ruby_out` flag.
1707
1708 The Ruby extension implements a user-friendly DSL to define message types
1709 (also generated by the code generator from `.proto` files). Once a message
1710 type is defined, the user may create instances of the message that behave in
1711 ways idiomatic to Ruby. For example:
1712
1713 - Message fields are present as ordinary Ruby properties (getter method
1714 `foo` and setter method `foo=`).
1715 - Repeated field elements are stored in a container that acts like a native
1716 Ruby array, and map elements are stored in a container that acts like a
1717 native Ruby hashmap.
1718 - The usual well-known methods, such as `#to_s`, `#dup`, and the like, are
1719 present.
1720
1721 Unlike several existing third-party Ruby extensions for protobuf, this
1722 extension is built on a "strongly-typed" philosophy: message fields and
1723 array/map containers will throw exceptions eagerly when values of the
1724 incorrect type are inserted.
1725
1726 See ruby/README.md for details.
Jisi Liu32f5d012015-02-20 14:45:45 -08001727
1728 JavaNano:
1729 JavaNano is a special code generator and runtime library designed especially
1730 for resource-restricted systems, like Android. It is very resource-friendly
1731 in both the amount of code and the runtime overhead. Here is an an overview
1732 of JavaNano features compared with the official Java protobuf:
1733
1734 - No descriptors or message builders.
1735 - All messages are mutable; fields are public Java fields.
1736 - For optional fields only, encapsulation behind setter/getter/hazzer/
1737 clearer functions is opt-in, which provide proper 'has' state support.
1738 - For proto2, if not opted in, has state (field presence) is not available.
1739 Serialization outputs all fields not equal to their defaults.
1740 The behavior is consistent with proto3 semantics.
1741 - Required fields (proto2 only) are always serialized.
1742 - Enum constants are integers; protection against invalid values only
1743 when parsing from the wire.
1744 - Enum constants can be generated into container interfaces bearing
1745 the enum's name (so the referencing code is in Java style).
1746 - CodedInputByteBufferNano can only take byte[] (not InputStream).
1747 - Similarly CodedOutputByteBufferNano can only write to byte[].
1748 - Repeated fields are in arrays, not ArrayList or Vector. Null array
1749 elements are allowed and silently ignored.
1750 - Full support for serializing/deserializing repeated packed fields.
1751 - Support extensions (in proto2).
1752 - Unset messages/groups are null, not an immutable empty default
1753 instance.
1754 - toByteArray(...) and mergeFrom(...) are now static functions of
1755 MessageNano.
1756 - The 'bytes' type translates to the Java type byte[].
1757
1758 See javanano/README.txt for details.
1759
Feng Xiao9104da32014-12-09 11:57:52 -080017602014-12-01 version 3.0.0-alpha-1 (C++/Java):
1761
1762 General
1763 * Introduced Protocol Buffers language version 3 (aka proto3).
1764
1765 When protobuf was initially opensourced it implemented Protocol Buffers
1766 language version 2 (aka proto2), which is why the version number
1767 started from v2.0.0. From v3.0.0, a new language version (proto3) is
1768 introduced while the old version (proto2) will continue to be supported.
1769
1770 The main intent of introducing proto3 is to clean up protobuf before
1771 pushing the language as the foundation of Google's new API platform.
1772 In proto3, the language is simplified, both for ease of use and to
1773 make it available in a wider range of programming languages. At the
1774 same time a few features are added to better support common idioms
1775 found in APIs.
1776
1777 The following are the main new features in language version 3:
1778
1779 1. Removal of field presence logic for primitive value fields, removal
1780 of required fields, and removal of default values. This makes proto3
1781 significantly easier to implement with open struct representations,
1782 as in languages like Android Java, Objective C, or Go.
1783 2. Removal of unknown fields.
1784 3. Removal of extensions, which are instead replaced by a new standard
1785 type called Any.
1786 4. Fix semantics for unknown enum values.
1787 5. Addition of maps.
1788 6. Addition of a small set of standard types for representation of time,
1789 dynamic data, etc.
1790 7. A well-defined encoding in JSON as an alternative to binary proto
1791 encoding.
1792
1793 This release (v3.0.0-alpha-1) includes partial proto3 support for C++ and
1794 Java. Items 6 (well-known types) and 7 (JSON format) in the above feature
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08001795 list are not implemented.
Feng Xiao9104da32014-12-09 11:57:52 -08001796
1797 A new notion "syntax" is introduced to specify whether a .proto file
1798 uses proto2 or proto3:
1799
1800 // foo.proto
1801 syntax = "proto3";
1802 message Bar {...}
1803
1804 If omitted, the protocol compiler will generate a warning and "proto2" will
1805 be used as the default. This warning will be turned into an error in a
1806 future release.
1807
1808 We recommend that new Protocol Buffers users use proto3. However, we do not
1809 generally recommend that existing users migrate from proto2 from proto3 due
1810 to API incompatibility, and we will continue to support proto2 for a long
1811 time.
1812
1813 * Added support for map fields (implemented in C++/Java for both proto2 and
1814 proto3).
1815
1816 Map fields can be declared using the following syntax:
1817
1818 message Foo {
1819 map<string, string> values = 1;
1820 }
1821
1822 Data of a map field will be stored in memory as an unordered map and it
1823 can be accessed through generated accessors.
1824
1825 C++
1826 * Added arena allocation support (for both proto2 and proto3).
1827
1828 Profiling shows memory allocation and deallocation constitutes a significant
1829 fraction of CPU-time spent in protobuf code and arena allocation is a
1830 technique introduced to reduce this cost. With arena allocation, new
1831 objects will be allocated from a large piece of preallocated memory and
1832 deallocation of these objects is almost free. Early adoption shows 20% to
1833 50% improvement in some Google binaries.
1834
1835 To enable arena support, add the following option to your .proto file:
1836
1837 option cc_enable_arenas = true;
1838
1839 Protocol compiler will generate additional code to make the generated
1840 message classes work with arenas. This does not change the existing API
1841 of protobuf messages and does not affect wire format. Your existing code
1842 should continue to work after adding this option. In the future we will
1843 make this option enabled by default.
1844
1845 To actually take advantage of arena allocation, you need to use the arena
1846 APIs when creating messages. A quick example of using the arena API:
1847
1848 {
1849 google::protobuf::Arena arena;
1850 // Allocate a protobuf message in the arena.
1851 MyMessage* message = Arena::CreateMessage<MyMessage>(&arena);
1852 // All submessages will be allocated in the same arena.
1853 if (!message->ParseFromString(data)) {
1854 // Deal with malformed input data.
1855 }
1856 // Must not delete the message here. It will be deleted automatically
1857 // when the arena is destroyed.
1858 }
1859
1860 Currently arena does not work with map fields. Enabling arena in a .proto
1861 file containing map fields will result in compile errors in the generated
1862 code. This will be addressed in a future release.
1863
Feng Xiaobba83652014-10-20 17:06:06 -070018642014-10-20 version 2.6.1:
Feng Xiao57b86722014-10-09 11:20:08 -07001865
1866 C++
1867 * Added atomicops support for Solaris.
1868 * Released memory allocated by InitializeDefaultRepeatedFields() and
1869 GetEmptyString(). Some memory sanitizers reported them as memory leaks.
1870
1871 Java
1872 * Updated DynamicMessage.setField() to handle repeated enum values
1873 correctly.
1874 * Fixed a bug that caused NullPointerException to be thrown when
1875 converting manually constructed FileDescriptorProto to
1876 FileDescriptor.
1877
1878 Python
Feng Xiao419c94b2014-10-09 11:40:02 -07001879 * Fixed WhichOneof() to work with de-serialized protobuf messages.
Feng Xiao57b86722014-10-09 11:20:08 -07001880 * Fixed a missing file problem of Python C++ implementation.
1881
jieluo@google.com1eba9d92014-08-25 20:17:53 +000018822014-08-15 version 2.6.0:
1883
1884 General
1885 * Added oneofs(unions) feature. Fields in the same oneof will share
1886 memory and at most one field can be set at the same time. Use the
1887 oneof keyword to define a oneof like:
1888 message SampleMessage {
1889 oneof test_oneof {
1890 string name = 4;
1891 YourMessage sub_message = 9;
1892 }
1893 }
1894 * Files, services, enums, messages, methods and enum values can be marked
1895 as deprecated now.
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08001896 * Added Support for list values, including lists of messages, when
jieluo@google.com1eba9d92014-08-25 20:17:53 +00001897 parsing text-formatted protos in C++ and Java.
1898 For example: foo: [1, 2, 3]
1899
1900 C++
1901 * Enhanced customization on TestFormat printing.
1902 * Added SwapFields() in reflection API to swap a subset of fields.
1903 Added SetAllocatedMessage() in reflection API.
1904 * Repeated primitive extensions are now packable. The
1905 [packed=true] option only affects serializers. Therefore, it is
1906 possible to switch a repeated extension field to packed format
1907 without breaking backwards-compatibility.
1908 * Various speed optimizations.
1909
1910 Java
1911 * writeTo() method in ByteString can now write a substring to an
1912 output stream. Added endWith() method for ByteString.
1913 * ByteString and ByteBuffer are now supported in CodedInputStream
1914 and CodedOutputStream.
1915 * java_generate_equals_and_hash can now be used with the LITE_RUNTIME.
1916
1917 Python
1918 * A new C++-backed extension module (aka "cpp api v2") that replaces the
1919 old ("cpp api v1") one. Much faster than the pure Python code. This one
1920 resolves many bugs and is recommended for general use over the
1921 pure Python when possible.
1922 * Descriptors now have enum_types_by_name and extension_types_by_name dict
1923 attributes.
1924 * Support for Python 3.
1925
xiaofeng@google.com2c9392f2013-02-28 06:12:28 +000019262013-02-27 version 2.5.0:
xiaofeng@google.comb55a20f2012-09-22 02:40:50 +00001927
1928 General
1929 * New notion "import public" that allows a proto file to forward the content
1930 it imports to its importers. For example,
1931 // foo.proto
1932 import public "bar.proto";
1933 import "baz.proto";
1934
1935 // qux.proto
1936 import "foo.proto";
1937 // Stuff defined in bar.proto may be used in this file, but stuff from
1938 // baz.proto may NOT be used without importing it explicitly.
1939 This is useful for moving proto files. To move a proto file, just leave
1940 a single "import public" in the old proto file.
1941 * New enum option "allow_alias" that specifies whether different symbols can
1942 be assigned the same numeric value. Default value is "true". Setting it to
1943 false causes the compiler to reject enum definitions where multiple symbols
1944 have the same numeric value.
xiaofeng@google.com7f4c9e82013-03-05 01:51:21 +00001945 Note: We plan to flip the default value to "false" in a future release.
1946 Projects using enum aliases should set the option to "true" in their .proto
1947 files.
xiaofeng@google.comb55a20f2012-09-22 02:40:50 +00001948
1949 C++
1950 * New generated method set_allocated_foo(Type* foo) for message and string
1951 fields. This method allows you to set the field to a pre-allocated object
1952 and the containing message takes the ownership of that object.
1953 * Added SetAllocatedExtension() and ReleaseExtension() to extensions API.
1954 * Custom options are now formatted correctly when descriptors are printed in
1955 text format.
1956 * Various speed optimizations.
1957
1958 Java
1959 * Comments in proto files are now collected and put into generated code as
1960 comments for corresponding classes and data members.
1961 * Added Parser to parse directly into messages without a Builder. For
1962 example,
xiaofeng@google.com2c9392f2013-02-28 06:12:28 +00001963 Foo foo = Foo.PARSER.ParseFrom(input);
xiaofeng@google.comb55a20f2012-09-22 02:40:50 +00001964 Using Parser is ~25% faster than using Builder to parse messages.
1965 * Added getters/setters to access the underlying ByteString of a string field
1966 directly.
1967 * ByteString now supports more operations: substring(), prepend(), and
1968 append(). The implementation of ByteString uses a binary tree structure
1969 to support these operations efficiently.
1970 * New method findInitializationErrors() that lists all missing required
1971 fields.
1972 * Various code size and speed optimizations.
1973
1974 Python
1975 * Added support for dynamic message creation. DescriptorDatabase,
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08001976 DescriptorPool, and MessageFactory work like their C++ counterparts to
xiaofeng@google.comb55a20f2012-09-22 02:40:50 +00001977 simplify Descriptor construction from *DescriptorProtos, and MessageFactory
1978 provides a message instance from a Descriptor.
1979 * Added pickle support for protobuf messages.
1980 * Unknown fields are now preserved after parsing.
1981 * Fixed bug where custom options were not correctly populated. Custom
1982 options can be accessed now.
1983 * Added EnumTypeWrapper that provides better accessibility to enum types.
1984 * Added ParseMessage(descriptor, bytes) to generate a new Message instance
1985 from a descriptor and a byte string.
1986
liujisi@google.com5d996322011-04-30 15:29:09 +000019872011-05-01 version 2.4.1:
1988
1989 C++
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08001990 * Fixed the friendship problem for old compilers to make the library now gcc 3
liujisi@google.com5d996322011-04-30 15:29:09 +00001991 compatible again.
1992 * Fixed vcprojects/extract_includes.bat to extract compiler/plugin.h.
1993
1994 Java
1995 * Removed usages of JDK 1.6 only features to make the library now JDK 1.5
1996 compatible again.
1997 * Fixed a bug about negative enum values.
1998 * serialVersionUID is now defined in generated messages for java serializing.
1999 * Fixed protoc to use java.lang.Object, which makes "Object" now a valid
2000 message name again.
2001
2002 Python
2003 * Experimental C++ implementation now requires C++ protobuf library installed.
2004 See the README.txt in the python directory for details.
2005
liujisi@google.com7a261472011-02-02 14:04:22 +000020062011-02-02 version 2.4.0:
liujisi@google.com33165fe2010-11-02 13:14:58 +00002007
2008 General
2009 * The RPC (cc|java|py)_generic_services default value is now false instead of
2010 true.
2011 * Custom options can have aggregate types. For example,
2012 message MyOption {
2013 optional string comment = 1;
2014 optional string author = 2;
2015 }
2016 extend google.protobuf.FieldOptions {
2017 optional MyOption myoption = 12345;
2018 }
2019 This option can now be set as follows:
2020 message SomeType {
2021 optional int32 field = 1 [(myoption) = { comment:'x' author:'y' }];
2022 }
2023
2024 C++
2025 * Various speed and code size optimizations.
2026 * Added a release_foo() method on string and message fields.
2027 * Fixed gzip_output_stream sub-stream handling.
2028
2029 Java
2030 * Builders now maintain sub-builders for sub-messages. Use getFooBuilder() to
2031 get the builder for the sub-message "foo". This allows you to repeatedly
2032 modify deeply-nested sub-messages without rebuilding them.
2033 * Builder.build() no longer invalidates the Builder for generated messages
2034 (You may continue to modify it and then build another message).
2035 * Code generator will generate efficient equals() and hashCode()
2036 implementations if new option java_generate_equals_and_hash is enabled.
2037 (Otherwise, reflection-based implementations are used.)
2038 * Generated messages now implement Serializable.
2039 * Fields with [deprecated=true] will be marked with @Deprecated in Java.
2040 * Added lazy conversion of UTF-8 encoded strings to String objects to improve
2041 performance.
2042 * Various optimizations.
2043 * Enum value can be accessed directly, instead of calling getNumber() on the
2044 enum member.
2045 * For each enum value, an integer constant is also generated with the suffix
2046 _VALUE.
2047
2048 Python
2049 * Added an experimental C++ implementation for Python messages via a Python
2050 extension. Implementation type is controlled by an environment variable
2051 PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION (valid values: "cpp" and "python")
2052 The default value is currently "python" but will be changed to "cpp" in
2053 future release.
2054 * Improved performance on message instantiation significantly.
2055 Most of the work on message instantiation is done just once per message
2056 class, instead of once per message instance.
2057 * Improved performance on text message parsing.
2058 * Allow add() to forward keyword arguments to the concrete class.
2059 E.g. instead of
2060 item = repeated_field.add()
2061 item.foo = bar
2062 item.baz = quux
2063 You can do:
2064 repeated_field.add(foo=bar, baz=quux)
2065 * Added a sort() interface to the BaseContainer.
2066 * Added an extend() method to repeated composite fields.
2067 * Added UTF8 debug string support.
2068
temporald4e38c72010-01-09 07:35:50 +000020692010-01-08 version 2.3.0:
kenton@google.comfccb1462009-12-18 02:11:36 +00002070
2071 General
2072 * Parsers for repeated numeric fields now always accept both packed and
2073 unpacked input. The [packed=true] option only affects serializers.
2074 Therefore, it is possible to switch a field to packed format without
2075 breaking backwards-compatibility -- as long as all parties are using
2076 protobuf 2.3.0 or above, at least.
2077 * The generic RPC service code generated by the C++, Java, and Python
2078 generators can be disabled via file options:
2079 option cc_generic_services = false;
2080 option java_generic_services = false;
2081 option py_generic_services = false;
2082 This allows plugins to generate alternative code, possibly specific to some
2083 particular RPC implementation.
2084
2085 protoc
2086 * Now supports a plugin system for code generators. Plugins can generate
2087 code for new languages or inject additional code into the output of other
2088 code generators. Plugins are just binaries which accept a protocol buffer
2089 on stdin and write a protocol buffer to stdout, so they may be written in
2090 any language. See src/google/protobuf/compiler/plugin.proto.
kenton@google.com7f4938b2009-12-22 22:57:39 +00002091 **WARNING**: Plugins are experimental. The interface may change in a
2092 future version.
kenton@google.com0225b352010-01-04 22:07:09 +00002093 * If the output location ends in .zip or .jar, protoc will write its output
2094 to a zip/jar archive instead of a directory. For example:
2095 protoc --java_out=myproto_srcs.jar --python_out=myproto.zip myproto.proto
2096 Currently the archive contents are not compressed, though this could change
2097 in the future.
kenton@google.comfccb1462009-12-18 02:11:36 +00002098 * inf, -inf, and nan can now be used as default values for float and double
2099 fields.
2100
2101 C++
2102 * Various speed and code size optimizations.
2103 * DynamicMessageFactory is now fully thread-safe.
2104 * Message::Utf8DebugString() method is like DebugString() but avoids escaping
2105 UTF-8 bytes.
2106 * Compiled-in message types can now contain dynamic extensions, through use
2107 of CodedInputStream::SetExtensionRegistry().
kenton@google.comc0ee4d22009-12-22 02:05:33 +00002108 * Now compiles shared libraries (DLLs) by default on Cygwin and MinGW, to
2109 match other platforms. Use --disable-shared to avoid this.
kenton@google.comfccb1462009-12-18 02:11:36 +00002110
2111 Java
2112 * parseDelimitedFrom() and mergeDelimitedFrom() now detect EOF and return
2113 false/null instead of throwing an exception.
2114 * Fixed some initialization ordering bugs.
2115 * Fixes for OpenJDK 7.
2116
2117 Python
2118 * 10-25 times faster than 2.2.0, still pure-Python.
2119 * Calling a mutating method on a sub-message always instantiates the message
2120 in its parent even if the mutating method doesn't actually mutate anything
2121 (e.g. parsing from an empty string).
2122 * Expanded descriptors a bit.
2123
kenton@google.com201b9be2009-08-12 00:23:05 +000021242009-08-11 version 2.2.0:
kenton@google.comceb561d2009-06-25 19:05:36 +00002125
2126 C++
kenton@google.com80b1d622009-07-29 01:13:20 +00002127 * Lite mode: The "optimize_for = LITE_RUNTIME" option causes the compiler
2128 to generate code which only depends libprotobuf-lite, which is much smaller
2129 than libprotobuf but lacks descriptors, reflection, and some other features.
kenton@google.comceb561d2009-06-25 19:05:36 +00002130 * Fixed bug where Message.Swap(Message) was only implemented for
2131 optimize_for_speed. Swap now properly implemented in both modes
2132 (Issue 91).
2133 * Added RemoveLast and SwapElements(index1, index2) to Reflection
2134 interface for repeated elements.
2135 * Added Swap(Message) to Reflection interface.
kenton@google.comd2fd0632009-07-24 01:00:35 +00002136 * Floating-point literals in generated code that are intended to be
2137 single-precision now explicitly have 'f' suffix to avoid pedantic warnings
2138 produced by some compilers.
kenton@google.com80b1d622009-07-29 01:13:20 +00002139 * The [deprecated=true] option now causes the C++ code generator to generate
2140 a GCC-style deprecation annotation (no-op on other compilers).
2141 * google::protobuf::GetEnumDescriptor<SomeGeneratedEnumType>() returns the
2142 EnumDescriptor for that type -- useful for templates which cannot call
2143 SomeGeneratedEnumType_descriptor().
2144 * Various optimizations and obscure bug fixes.
2145
2146 Java
2147 * Lite mode: The "optimize_for = LITE_RUNTIME" option causes the compiler
2148 to generate code which only depends libprotobuf-lite, which is much smaller
2149 than libprotobuf but lacks descriptors, reflection, and some other features.
kenton@google.com80b1d622009-07-29 01:13:20 +00002150 * Lots of style cleanups.
2151
2152 Python
2153 * Fixed endianness bug with floats and doubles.
2154 * Text format parsing support.
2155 * Fix bug with parsing packed repeated fields in embedded messages.
2156 * Ability to initialize fields by passing keyword args to constructor.
2157 * Support iterators in extend and __setslice__ for containers.
kenton@google.comceb561d2009-06-25 19:05:36 +00002158
kenton@google.com1fb3d392009-05-13 23:20:03 +000021592009-05-13 version 2.1.0:
kenton@google.com2d6daa72009-01-22 01:27:00 +00002160
2161 General
2162 * Repeated fields of primitive types (types other that string, group, and
2163 nested messages) may now use the option [packed = true] to get a more
2164 efficient encoding. In the new encoding, the entire list is written
2165 as a single byte blob using the "length-delimited" wire type. Within
2166 this blob, the individual values are encoded the same way they would
2167 be normally except without a tag before each value (thus, they are
2168 tightly "packed").
kenton@google.comcfa2d8a2009-04-18 00:02:12 +00002169 * For each field, the generated code contains an integer constant assigned
2170 to the field number. For example, the .proto file:
2171 message Foo { optional int bar_baz = 123; }
2172 would generate the following constants, all with the integer value 123:
2173 C++: Foo::kBarBazFieldNumber
2174 Java: Foo.BAR_BAZ_FIELD_NUMBER
2175 Python: Foo.BAR_BAZ_FIELD_NUMBER
2176 Constants are also generated for extensions, with the same naming scheme.
2177 These constants may be used as switch cases.
kenton@google.com37ad00d2009-04-21 21:00:39 +00002178 * Updated bundled Google Test to version 1.3.0. Google Test is now bundled
2179 in its verbatim form as a nested autoconf package, so you can drop in any
2180 other version of Google Test if needed.
kenton@google.comd37d46d2009-04-25 02:53:47 +00002181 * optimize_for = SPEED is now the default, by popular demand. Use
2182 optimize_for = CODE_SIZE if code size is more important in your app.
2183 * It is now an error to define a default value for a repeated field.
2184 Previously, this was silently ignored (it had no effect on the generated
2185 code).
2186 * Fields can now be marked deprecated like:
2187 optional int32 foo = 1 [deprecated = true];
2188 Currently this does not have any actual effect, but in the future the code
2189 generators may generate deprecation annotations in each language.
kenton@google.com9824eda2009-05-06 17:49:37 +00002190 * Cross-compiling should now be possible using the --with-protoc option to
2191 configure. See README.txt for more info.
kenton@google.com2d6daa72009-01-22 01:27:00 +00002192
kenton@google.comf663b162009-04-15 19:50:54 +00002193 protoc
2194 * --error_format=msvs option causes errors to be printed in Visual Studio
2195 format, which should allow them to be clicked on in the build log to go
kenton@google.comd37d46d2009-04-25 02:53:47 +00002196 directly to the error location.
2197 * The type name resolver will no longer resolve type names to fields. For
2198 example, this now works:
2199 message Foo {}
2200 message Bar {
2201 optional int32 Foo = 1;
2202 optional Foo baz = 2;
2203 }
2204 Previously, the type of "baz" would resolve to "Bar.Foo", and you'd get
2205 an error because Bar.Foo is a field, not a type. Now the type of "baz"
2206 resolves to the message type Foo. This change is unlikely to make a
2207 difference to anyone who follows the Protocol Buffers style guide.
kenton@google.comf663b162009-04-15 19:50:54 +00002208
kenton@google.com2d6daa72009-01-22 01:27:00 +00002209 C++
kenton@google.comd37d46d2009-04-25 02:53:47 +00002210 * Several optimizations, including but not limited to:
2211 - Serialization, especially to flat arrays, is 10%-50% faster, possibly
2212 more for small objects.
2213 - Several descriptor operations which previously required locking no longer
2214 do.
2215 - Descriptors are now constructed lazily on first use, rather than at
2216 process startup time. This should save memory in programs which do not
2217 use descriptors or reflection.
2218 - UnknownFieldSet completely redesigned to be more efficient (especially in
2219 terms of memory usage).
2220 - Various optimizations to reduce code size (though the serialization speed
2221 optimizations increased code size).
kenton@google.com2d6daa72009-01-22 01:27:00 +00002222 * Message interface has method ParseFromBoundedZeroCopyStream() which parses
2223 a limited number of bytes from an input stream rather than parsing until
2224 EOF.
kenton@google.come59427a2009-04-16 22:30:56 +00002225 * GzipInputStream and GzipOutputStream support reading/writing gzip- or
2226 zlib-compressed streams if zlib is available.
2227 (google/protobuf/io/gzip_stream.h)
kenton@google.comd37d46d2009-04-25 02:53:47 +00002228 * DescriptorPool::FindAllExtensions() and corresponding
2229 DescriptorDatabase::FindAllExtensions() can be used to enumerate all
2230 extensions of a given type.
2231 * For each enum type Foo, protoc will generate functions:
2232 const string& Foo_Name(Foo value);
2233 bool Foo_Parse(const string& name, Foo* result);
2234 The former returns the name of the enum constant corresponding to the given
2235 value while the latter finds the value corresponding to a name.
2236 * RepeatedField and RepeatedPtrField now have back-insertion iterators.
2237 * String fields now have setters that take a char* and a size, in addition
2238 to the existing ones that took char* or const string&.
2239 * DescriptorPool::AllowUnknownDependencies() may be used to tell
2240 DescriptorPool to create placeholder descriptors for unknown entities
2241 referenced in a FileDescriptorProto. This can allow you to parse a .proto
2242 file without having access to other .proto files that it imports, for
2243 example.
2244 * Updated gtest to latest version. The gtest package is now included as a
2245 nested autoconf package, so it should be able to drop new versions into the
2246 "gtest" subdirectory without modification.
kenton@google.com2d6daa72009-01-22 01:27:00 +00002247
2248 Java
2249 * Fixed bug where Message.mergeFrom(Message) failed to merge extensions.
2250 * Message interface has new method toBuilder() which is equivalent to
2251 newBuilderForType().mergeFrom(this).
2252 * All enums now implement the ProtocolMessageEnum interface.
2253 * Setting a field to null now throws NullPointerException.
2254 * Fixed tendency for TextFormat's parsing to overflow the stack when
2255 parsing large string values. The underlying problem is with Java's
2256 regex implementation (which unfortunately uses recursive backtracking
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08002257 rather than building an NFA). Worked around by making use of possessive
kenton@google.com2d6daa72009-01-22 01:27:00 +00002258 quantifiers.
kenton@google.comd37d46d2009-04-25 02:53:47 +00002259 * Generated service classes now also generate pure interfaces. For a service
2260 Foo, Foo.Interface is a pure interface containing all of the service's
2261 defined methods. Foo.newReflectiveService() can be called to wrap an
2262 instance of this interface in a class that implements the generic
2263 RpcService interface, which provides reflection support that is usually
2264 needed by RPC server implementations.
2265 * RPC interfaces now support blocking operation in addition to non-blocking.
2266 The protocol compiler generates separate blocking and non-blocking stubs
2267 which operate against separate blocking and non-blocking RPC interfaces.
2268 RPC implementations will have to implement the new interfaces in order to
2269 support blocking mode.
2270 * New I/O methods parseDelimitedFrom(), mergeDelimitedFrom(), and
Dongjoon Hyun7b08d492016-01-11 14:52:01 -08002271 writeDelimitedTo() read and write "delimited" messages from/to a stream,
kenton@google.comd37d46d2009-04-25 02:53:47 +00002272 meaning that the message size precedes the data. This way, you can write
2273 multiple messages to a stream without having to worry about delimiting
2274 them yourself.
2275 * Throw a more descriptive exception when build() is double-called.
2276 * Add a method to query whether CodedInputStream is at the end of the input
2277 stream.
2278 * Add a method to reset a CodedInputStream's size counter; useful when
2279 reading many messages with the same stream.
2280 * equals() and hashCode() now account for unknown fields.
pesho.petrov87e64e12008-12-24 01:07:22 +00002281
2282 Python
2283 * Added slicing support for repeated scalar fields. Added slice retrieval and
2284 removal of repeated composite fields.
kenton@google.com2d6daa72009-01-22 01:27:00 +00002285 * Updated RPC interfaces to allow for blocking operation. A client may
2286 now pass None for a callback when making an RPC, in which case the
2287 call will block until the response is received, and the response
2288 object will be returned directly to the caller. This interface change
2289 cannot be used in practice until RPC implementations are updated to
2290 implement it.
kenton@google.comd37d46d2009-04-25 02:53:47 +00002291 * Changes to input_stream.py should make protobuf compatible with appengine.
pesho.petrov87e64e12008-12-24 01:07:22 +00002292
kenton@google.com9f175282008-11-25 19:37:10 +000022932008-11-25 version 2.0.3:
2294
2295 protoc
2296 * Enum values may now have custom options, using syntax similar to field
2297 options.
2298 * Fixed bug where .proto files which use custom options but don't actually
2299 define them (i.e. they import another .proto file defining the options)
2300 had to explicitly import descriptor.proto.
2301 * Adjacent string literals in .proto files will now be concatenated, like in
2302 C.
kenton@google.com2f669cb2008-12-02 05:59:15 +00002303 * If an input file is a Windows absolute path (e.g. "C:\foo\bar.proto") and
2304 the import path only contains "." (or contains "." but does not contain
2305 the file), protoc incorrectly thought that the file was under ".", because
2306 it thought that the path was relative (since it didn't start with a slash).
2307 This has been fixed.
kenton@google.com9f175282008-11-25 19:37:10 +00002308
2309 C++
2310 * Generated message classes now have a Swap() method which efficiently swaps
2311 the contents of two objects.
2312 * All message classes now have a SpaceUsed() method which returns an estimate
2313 of the number of bytes of allocated memory currently owned by the object.
2314 This is particularly useful when you are reusing a single message object
2315 to improve performance but want to make sure it doesn't bloat up too large.
2316 * New method Message::SerializeAsString() returns a string containing the
2317 serialized data. May be more convenient than calling
2318 SerializeToString(string*).
2319 * In debug mode, log error messages when string-type fields are found to
2320 contain bytes that are not valid UTF-8.
2321 * Fixed bug where a message with multiple extension ranges couldn't parse
2322 extensions.
2323 * Fixed bug where MergeFrom(const Message&) didn't do anything if invoked on
2324 a message that contained no fields (but possibly contained extensions).
2325 * Fixed ShortDebugString() to not be O(n^2). Durr.
2326 * Fixed crash in TextFormat parsing if the first token in the input caused a
2327 tokenization error.
2328 * Fixed obscure bugs in zero_copy_stream_impl.cc.
2329 * Added support for HP C++ on Tru64.
2330 * Only build tests on "make check", not "make".
2331 * Fixed alignment issue that caused crashes when using DynamicMessage on
2332 64-bit Sparc machines.
2333 * Simplify template usage to work with MSVC 2003.
2334 * Work around GCC 4.3.x x86_64 compiler bug that caused crashes on startup.
2335 (This affected Fedora 9 in particular.)
kenton@google.com25bc5cd2008-12-04 20:34:50 +00002336 * Now works on "Solaris 10 using recent Sun Studio".
kenton@google.com9f175282008-11-25 19:37:10 +00002337
2338 Java
2339 * New overload of mergeFrom() which parses a slice of a byte array instead
2340 of the whole thing.
2341 * New method ByteString.asReadOnlyByteBuffer() does what it sounds like.
2342 * Improved performance of isInitialized() when optimizing for code size.
2343
2344 Python
2345 * Corrected ListFields() signature in Message base class to match what
2346 subclasses actually implement.
2347 * Some minor refactoring.
kenton@google.com2f669cb2008-12-02 05:59:15 +00002348 * Don't pass self as first argument to superclass constructor (no longer
2349 allowed in Python 2.6).
kenton@google.com9f175282008-11-25 19:37:10 +00002350
kenton@google.com9b10f582008-09-30 00:09:40 +000023512008-09-29 version 2.0.2:
2352
kenton@google.com24bf56f2008-09-24 20:31:01 +00002353 General
Sebastian Schuberth902af082017-02-28 09:58:24 +01002354 * License changed from Apache 2.0 to 3-Clause BSD.
kenton@google.com24bf56f2008-09-24 20:31:01 +00002355 * It is now possible to define custom "options", which are basically
2356 annotations which may be placed on definitions in a .proto file.
2357 For example, you might define a field option called "foo" like so:
2358 import "google/protobuf/descriptor.proto"
2359 extend google.protobuf.FieldOptions {
2360 optional string foo = 12345;
2361 }
2362 Then you annotate a field using the "foo" option:
2363 message MyMessage {
2364 optional int32 some_field = 1 [(foo) = "bar"]
2365 }
2366 The value of this option is then visible via the message's
2367 Descriptor:
2368 const FieldDescriptor* field =
2369 MyMessage::descriptor()->FindFieldByName("some_field");
2370 assert(field->options().GetExtension(foo) == "bar");
2371 This feature has been implemented and tested in C++ and Java.
2372 Other languages may or may not need to do extra work to support
2373 custom options, depending on how they construct descriptors.
2374
2375 C++
2376 * Fixed some GCC warnings that only occur when using -pedantic.
2377 * Improved static initialization code, making ordering more
2378 predictable among other things.
2379 * TextFormat will no longer accept messages which contain multiple
2380 instances of a singular field. Previously, the latter instance
kenton@google.com9b10f582008-09-30 00:09:40 +00002381 would overwrite the former.
kenton@google.com24bf56f2008-09-24 20:31:01 +00002382 * Now works on systems that don't have hash_map.
2383
kenton@google.com9b10f582008-09-30 00:09:40 +00002384 Java
2385 * Print @Override annotation in generated code where appropriate.
2386
kenton@google.com24bf56f2008-09-24 20:31:01 +00002387 Python
2388 * Strings now use the "unicode" type rather than the "str" type.
2389 String fields may still be assigned ASCII "str" values; they will
2390 automatically be converted.
2391 * Adding a property to an object representing a repeated field now
2392 raises an exception. For example:
2393 # No longer works (and never should have).
2394 message.some_repeated_field.foo = 1
kenton@google.com9b10f582008-09-30 00:09:40 +00002395
2396 Windows
2397 * We now build static libraries rather than DLLs by default on MSVC.
2398 See vsprojects/readme.txt for more information.
2399
temporala44f3c32008-08-15 18:32:02 +000024002008-08-15 version 2.0.1:
kenton@google.com9b10f582008-09-30 00:09:40 +00002401
2402 protoc
2403 * New flags --encode and --decode can be used to convert between protobuf text
2404 format and binary format from the command-line.
2405 * New flag --descriptor_set_out can be used to write FileDescriptorProtos for
2406 all parsed files directly into a single output file. This is particularly
2407 useful if you wish to parse .proto files from programs written in languages
2408 other than C++: just run protoc as a background process and have it output
2409 a FileDescriptorList, then parse that natively.
2410 * Improved error message when an enum value's name conflicts with another
2411 symbol defined in the enum type's scope, e.g. if two enum types declared
2412 in the same scope have values with the same name. This is disallowed for
temporala44f3c32008-08-15 18:32:02 +00002413 compatibility with C++, but this wasn't clear from the error.
kenton@google.com9b10f582008-09-30 00:09:40 +00002414 * Fixed absolute output paths on Windows.
temporala44f3c32008-08-15 18:32:02 +00002415 * Allow trailing slashes in --proto_path mappings.
kenton@google.com9b10f582008-09-30 00:09:40 +00002416
2417 C++
2418 * Reflection objects are now per-class rather than per-instance. To make this
2419 possible, the Reflection interface had to be changed such that all methods
2420 take the Message instance as a parameter. This change improves performance
2421 significantly in memory-bandwidth-limited use cases, since it makes the
2422 message objects smaller. Note that source-incompatible interface changes
2423 like this will not be made again after the library leaves beta.
temporala44f3c32008-08-15 18:32:02 +00002424 * Heuristically detect sub-messages when printing unknown fields.
kenton@google.com9b10f582008-09-30 00:09:40 +00002425 * Fix static initialization ordering bug that caused crashes at startup when
temporala44f3c32008-08-15 18:32:02 +00002426 compiling on Mac with static linking.
kenton@google.com9b10f582008-09-30 00:09:40 +00002427 * Fixed TokenizerTest when compiling with -DNDEBUG on Linux.
2428 * Fixed incorrect definition of kint32min.
temporala44f3c32008-08-15 18:32:02 +00002429 * Fix bytes type setter to work with byte sequences with embedded NULLs.
2430 * Other irrelevant tweaks.
2431
kenton@google.com9b10f582008-09-30 00:09:40 +00002432 Java
2433 * Fixed UnknownFieldSet's parsing of varints larger than 32 bits.
2434 * Fixed TextFormat's parsing of "inf" and "nan".
2435 * Fixed TextFormat's parsing of comments.
2436 * Added info to Java POM that will be required when we upload the
temporala44f3c32008-08-15 18:32:02 +00002437 package to a Maven repo.
2438
kenton@google.com9b10f582008-09-30 00:09:40 +00002439 Python
2440 * MergeFrom(message) and CopyFrom(message) are now implemented.
2441 * SerializeToString() raises an exception if the message is missing required
2442 fields.
2443 * Code organization improvements.
2444 * Fixed doc comments for RpcController and RpcChannel, which had somehow been
temporala44f3c32008-08-15 18:32:02 +00002445 swapped.
kenton@google.com9b10f582008-09-30 00:09:40 +00002446 * Fixed text_format_test on Windows where floating-point exponents sometimes
2447 contain extra zeros.
temporala44f3c32008-08-15 18:32:02 +00002448 * Fix Python service CallMethod() implementation.
2449
2450 Other
2451 * Improved readmes.
2452 * VIM syntax highlighting improvements.
2453
temporal40ee5512008-07-10 02:12:20 +000024542008-07-07 version 2.0.0:
2455
2456 * First public release.