protobuf 3.1.0 protobuf: ^3.1.0 copied to clipboard
Runtime library for protocol buffers support. Use with package:protoc_plugin to generate dart code for your '.proto' files.
3.1.0 #
3.0.0 #
- Require Dart
2.19
. - Remove
ReadonlyMessageMixin
(#183, #644) - Remove
frozenMessageModificationHandler
(#175, #643) - Remove
PbListBase
andFrozenPbList
types. All proto repeated fields now usePbList
. To check if a list is frozen, useisFrozen
getter. (#624, #626) - Initialize map fields in
GeneratedMessage.getField
. This behavior is consistent withgetField
called on repeated fields. (#373, #707) - Remove unused and optional
PbMap
constructor argumentBuilderInfo? info
. (d94d3f0) UnknownFieldSetField
methodshasRequiredFields
,isInitialized
and getterlength
removed. (#721)- Update library documentation to hide internals, add documentation for public types. (#681)
- Fix
PbMap._isReadonly
field initialization inPbMap.unmodifiable
. (#741, #754) - Fix decoding map fields when key or value (or both) fields of a map entry is missing. (#719, #745)
- Fix updating frozen (immutable) messages with merge methods
(
mergeFromBuffer
,mergeFromProto3Json
, ...). (#489, #727) - Fix handling
null
values in proto3 JSON deserializer. (#751, #760, #763) - Fix handling negative JSON values when parsing uint32 fields. (#839)
- Avoid serializing unknown fields twice in
reparseMessage
. (#840)
2.1.0 #
- Update READMEs of
protobuf
andprotoc_plugin
: - Update some of the documentation according to Effective Dart documentation guide (#664, #674)
- Improve runtime perf by removing some of the runtime type checks (#574, #573)
- Fix a bug when converting negative
Timestamp
to DartDateTime
(#580, #577) - Document
BuilderInfo
andFieldInfo
properties (#597) - Improve
BuilderInfo
initialization by doing some of the work lazily (#606) - Improve enum hash code generation (#556)
- Fix parsing nested
Any
messages from JSON (#568) - Improve message hash code generation performance (#554, #633)
- Fix reading uninitialized map fields changing equality and hash code of messages. (#638)
- Fix setting an extension field when there's an unknown field with the same tag. (#639)
- Fix sharing backing memory for
repeated bytes
andoptional bytes
fields. (#640) GeneratedMessage.rebuild
now generates a warning when the return value is not used. (#631)- Fix hash code of messages with empty unknown field set (#648)
- Show field tags with
protobuf.omit_field_names
, enum value tags withprotobuf.omit_enum_names
in debug strings (toString
methods) (#649) TimestampMixin.toDateTime
now takes an optional namedbool
argumenttoLocal
(defaults tofalse
) for generating aDateTime
in the local time zone (instead of UTC). (#653)- Fix serialization of
infinity
andnan
doubles in JSON serializers (#652) - Fix Dart generation for fields starting with underscore (#651)
- Fix proto3 JSON deserialization of fixed32 fields (#655)
- Fix uninitialized repeated field values runtime types for frozen messages (#654)
2.0.1 #
- Fix bug of parsing map-values with default values.
- Merge fixes from version
1.1.2
-1.1.4
into v2.
2.0.0 #
- Stable null safety release.
1.1.4 #
- Fix comparison of empty lists from frozen messages.
- Switch repo internals to use
dart format
instead ofdartfmt
.
1.1.3 #
- Fix that fixed32 int could be negative.
1.1.2 #
- Fix proto deserialization issue for repeated and map enum value fields where the enum value is unknown.
1.1.1 #
- Fix decoding of
oneof
fields from proto3 json. The 'whichFoo' state would not be set. - Fix the return type of
copyWith
.
1.1.0 #
- Require at least Dart SDK 2.7.0 to enable usage of extension methods.
- Introduce extension methods
GeneratedMessage.rebuild
andGeneratedMessage.deepCopy
replacingcopyWith
andclone
. Using these alternatives can result in smaller binaries, because it is defined once instead of once per class. Useprotoc_plugin
from 19.1.0 to generate deprecation warnings forcopyWith
andclone
methods. GeneratedMessage.getExtension
throws when reading trying to read an extension that is present in the unknown fields. We consider this change a bug-fix because depending on the old behavior is indicative of a bug in your program.
1.0.4 #
- Requires sdk 2.3.0
- Update pedantic to 1.9.2
1.0.3 #
- Enable hashCode memoization for frozen protos.
- Add
timeout
toClientContext
1.0.2 #
- Fix hashcode of bytes fields.
- Fix issue with the
permissiveEnums
option tomergeFromProto3Json
. The comparison did not work properly. - Fix binary representation of negative int32 values.
1.0.1 #
- Fix issue with
ExtensionRegistry.reparseMessage
not handling map fields with scalar value types correctly. - Fix issue with the non-json name of a field (
protoName
) not being set correctly. - Fix: Allow decoding tagnumbers of unknown fields of up to 29 bits.
1.0.0 #
- Graduate package to 1.0. No functional changes.
0.14.4 #
- Add
permissiveEnums
option tomergeFromProto3Json
. It will do a case-insensitive matching of enum values ignoring-
and_
. - Add support for 'ensureX' methods generated by
protoc_plugin
19.0.0. - Add specialized getters for
String
,int
, andbool
with usual default values. - Shrink dart2js generated code for
getDefault()
. - Added an annotation class
TagNumber
. This is used by code generated byprotoc_plugin
from version 19.0.0.
0.14.3 #
- Fix: Allow decoding tagnumbers of up to 29 bits. Would fail before with more than 28 bits.
0.14.2 #
- Expose
mapEntryBuilderInfo
inMapFieldInfo
.
0.14.1 #
-
Support for
import public
.The generated code for a protofile
a.proto
thatimport public "b.proto"
will export the generated code forb.proto
.See https://developers.google.com/protocol-buffers/docs/proto#importing-definitions.
0.14.0 #
-
Support for proto3 json (json with field names as keys)
- encoding and decoding.
- Support for well-known types.
- Use
GeneratedMessage.toProto3Json()
to encode andGeneratedMessage.mergeFromProto3Json(json)
to decode.
-
FieldInfo
objects have a new getter.protoName
that gives the non-camel-case name of the field as in the.proto
-file. -
Breaking: The field-adder methods on
BuilderInfo
now takes only named optional arguments. To migrate, updateprotoc_plugin
to version 18.0.0 or higher. -
The field-adder methods on
BuilderInfo
all take a new argumentprotoName
. -
Breaking: Changed
ExtensionRegistry.reparseMessage
to reparse extensions deeply, that is it looks at every nested message and tries to reparse extensions from its unknown fields.
0.13.16+1 #
- Reverts
0.13.16
which accidentally introduced a breaking change, #284. This release is identical to0.13.15
.
0.13.16 #
- Better handling of dummy calls to
BuilderInfo.add
with a tag number of 0. These would trigger assertions before.
0.13.15 #
- Add new getter
GeneratedMessage.isFrozen
to query if the message has been frozen.
0.13.14 #
- Avoid needless copy when reading from a Uint8List buffer.
0.13.13 #
Added
ExtensionRegistry.reparseMessage()` for decoding extensions from unknown fields after the initial decoding.
0.13.12 #
BuilderInfo.add
now ignores fields with tag number 0. These would never be generated by the protoc_plugin so this is not considered a breaking change.
0.13.11 #
- Save memory by only initializing
_FieldSet.oneofCases
if the message contains oneofs.
0.13.10 #
- Fix recursive merging of repeated elements.
0.13.9 #
- Move 'eventPlugin' callback when setting a field in order to notify observers about field updates in the correct order.
0.13.8 #
- Fix JSON serialization of unsigned 64-bit fields.
0.13.7 #
- Override
operator ==
andhashCode
inPbMap
so that twoPbMap
s are equal if they have equal key/value pairs.
0.13.6 #
- Fixed equality check between messages with and without extensions.
0.13.5 #
- Add new method
addAll
on ExtensionRegistry for more conveniently adding multiple extensions at once.
0.13.4 #
-
Add new method
pc
on BuilderInfo for adding repeated composite fields and remove redundant type check on items added to a PbList.Deprecated
BuilderInfo.pp
andPbList.forFieldType
.
0.13.3 #
-
Fix issue with parsing map field entries. The values for two different keys would sometimes be merged.
-
Deprecated
PBMap.add
.
0.13.2 #
- Include extension fields in GeneratedMessage.toString().
0.13.1 #
- Fix issue with not being able to read unknown fields after freezing.
Reading an unknown field set after freeze() now returns the existing field set before freezing instead of an empty UnknownFieldSet.
0.13.0 #
- Breaking change: Fix issue with not being able to read extensions after freezing.
Reading an extension field after freeze() now returns the value set before freezing instead of the default value.
0.12.0 #
-
Breaking change: Changed
BuilderInfo.m()
to take class and package name of the protobuf message representing the map entry. Also changedBuilderInfo.addMapField
as well as the constructorsPbMap
andMapFieldInfo.map
to take a map entry BuilderInfo object.This mostly affects generated code, which should now be built with protoc_plugin 15.0.0 or newer.
With this change we avoid creating a map entry BuilderInfo object for each PbMap instance, instead it is passed through the static BuilderInfo object in the generated subclasses of GeneratedMessage.
0.11.0 #
-
Breaking change: changed semantics of
GeneratedMessage.toBuilder()
to only make a shallow copy.GeneratedMessage
has a new abstract method:createEmptyInstance()
that subclasses must implement.Proto files must be rebuilt using protoc_plugin 14.0.0 or newer.
0.10.8 #
- Fix freezing of map fields.
0.10.7 #
- Fixed problem with recursive merging of sub messages.
0.10.5 #
- Added support for map fields. Map fields are now represented as Dart maps and are accessed through a getter with the same name as the map field. To use the map support, use Dart protoc_plugin version 11.0.0 or newer.
0.10.4 #
- Added separate getter for
BuilderInfo.qualifiedMessageName
.
0.10.3 #
- Added type argument to
ProtobufEnum.initByValue
which allows the return value to be fully typed.
0.10.2 #
- Added ProtobufEnum reserved names.
0.10.0 #
- Breaking change: Add
GeneratedMessage.freeze()
. A frozen message and its sub-messages cannot be changed.
0.9.1 #
- Fix problem with encoding negative enum values.
- Fix problem with encoding byte arrays.
0.9.0+1 #
- Dart SDK upper constraint raised to declare compatibility with Dart 2.0 stable.
0.9.0 #
- Breaking change: Changed signature of
CodedBufferWriter.writeTo
to requireUint8List
for performance. - More Dart 2 fixes.
0.8.0 #
- Breaking change: Added generics to RpcClient.invoke(). Proto files must be rebuilt using Dart protoc_plugin version 0.8.0 or newer to match.
- Dart 2 fixes.
0.7.2+1 #
- Updated SDK version to 2.0.0-dev.17.0
0.7.2 #
- Fix hashing for PbList.
0.7.1 #
- Fix type in PbList.fold() for Dart 2.
- Small performance tweaks for DDC.
0.7.0 #
- Added fast getters for common types.
- Only pass index instead of both tag and index to accessors.
- Delegate more methods to underlying list in PbList.
- Small fixes for Dart 2.0.
0.6.0 #
- Added enumValues to FieldInfo. Fixes #63.
- Small performance optimization when deserializing repeated messages from JSON.
- Type annotations for strong mode.
0.5.5 #
- Use real generic syntax instead of comment-based.
- Support v2 dev SDKs.
0.5.4 #
- Unknown enum values are ignored when parsing JSON, instead of throwing an exception.
0.5.3+2 #
- Resolved a strong-mode error.
0.5.3+1 #
- Performance: Avoid excessive cloning in merge.
- Performance: Use code patterns that dart2js handles better.
0.5.3 #
- fix zigzag function so all coded buffer reader tests work on dart2js.
0.5.2 #
- make PbMixin constructor public for use within protoc plugin.
0.5.1+5 #
- Revert previous change because it causes strong mode type error in the generated code. We will revisit this in a new version of mixin support.
0.5.1+4 #
- Use a more refined implementation of
Map
inPbMapMixin
0.5.1+3 #
- Performance: eliminate some dynamic calls.
0.5.1+2 #
- Bugfix: remove dependency on
pkg/crypto
for real.
0.5.1+1 #
-
Require at least Dart SDK 1.13.
-
Removed dependency on
pkg/crypto
.
0.5.1 #
- Experimental support for strong mode.
- Fixed an issue with GeneratedMessage operator== and Map mixins
- Added declaration of GeneratedMessage clone method
0.5.0+1 #
- Support the latest version of package
fixnum
.
0.5.0 #
- Reorganized internals to improve performance. We now store field values in a list instead of a map. Private properties and methods are all moved to the _FieldSet class. There are new entry points for generated getters, hazzers, and setters. Improved JSON decoding performance.
- Dropped compatibility with .pb.dart files before 0.4.2 by removing internal constants from GeneratedMessage. Also, protoc plugins before 0.5.0 won't work.
0.4.2 #
- Renamed FieldType to PbFieldType.
0.4.1 - DO NOT USE #
- added FieldType class. It turned out that FieldType is a commonly used name, even in .proto files. This is renamed to PbFieldType in 0.4.2.
- Added support for observing field changes. For now, this can only be enabled by using a mixin to override the eventPlugin getter.
- Removed optional third parameter from setField(). It was only intended for internal use, and could be used to defeat type checks on fields.
- clearExtension() removes the value and extension in all cases. (Before, the extension would be kept and the list cleared for repeated fields.)
- Upcoming: clearField() will require its argument to be a known tag number (which could be an extension). For now, this is only enforced when a mixin provides an eventPlugin.
0.4.0 #
- Add ReadonlyMessageMixin. The generated message classes use this to for the default values of message fields.
0.3.11 #
- Add meta.dart which declares reserved names for the plugin.
0.3.10 #
- Add GeneratedService and ProtobufClient interfaces.
0.3.9 #
- Add experimental mixins_meta library
- Add experimental PbMapMixin class (in a separate library).
- Fix bug where ExtensionRegistry would not be used for nested messages.
0.3.7 #
- More docs.
0.3.6 #
- Added mergeFromMap() and writeToJsonMap()
- Fixed an analyzer warning.
0.3.5+3 #
- Bugfix for
setRange()
: Do not assume Iterable has asublist()
method.
0.3.5+2 #
- Simplify some types used in is checks and correct PbList to match the
- signature of the List setRange method.
0.3.5+1 #
- Bugfix for incorrect decoding of protobuf messages: Uint8List views with non-zero offsets were handled incorrectly.
0.3.5 #
-
Allow constants as field initial values as well as creation thunks to reduce generated code size.
-
Improve the performance of reading a protobuf buffer.
-
Fixed truncation error in least significant bits with large Int64 constants.