Note: this version requires protobuf 6.0.0.
- Handle importing well-known protos. (#1081)
Unclaimed project
Are you a maintainer of protobuf.dart? Claim this project to take control of your public changelog and roadmap.
Note: this version requires protobuf 6.0.0.
New GeneratedMessage extension methods toTextFormat and writeTextFormat added to convert the message into the [official protocol buffers text format][text format]. ([#1080], [#125])
Add [well-known proto types][wkts] as libraries. This change is required for protoc_plugin-25.0.0. ([#1081])
Breaking: Hide PbList and PbMap constructors. It is not possible to construct these...
Update default size limit of CodedBufferReader from 67,108,864 bytes to 2,147,483,647 bytes, and default recursion limit from 64 to 100.
The new limits are consistent with the Java and C++ implementations. ([#1060])
Fix GeneratedMessage.addExtension returning non-frozen and GeneratedMessage.getExtension allowing modifying an extension when the message is frozen before initializin...
Breaking: Don't generate createRepeated methods.
These methods are not too useful as there isn't much you can do with a PbList that you can't do with a List.
To migrate, replace MyMessage.createRepeated() with <MyMessage>[].
Note: this version requires protobuf 5.0.0.