Releases: kafkajs/confluent-schema-registry
v3.3.0
v3.2.1
v3.2.0
v3.1.1
v3.1.0
v3.0.1
v3.0.0
This version is non-breaking for the overwhelming majority of users.
When creating an instance of SchemaRegistry for Protobuf without the messageName
parameter confluent-schema-registry would, under certain circumstances, default to the wrong message type in the schema. Specifically, instead of defaulting to the first message type in the schema it would erroneously default to the first message type that did not define a nested type.
If you were relying on this behavior may need to either:
- Start passing the
messageName
parameter instead of relying on the default behavior - Update your schemas and re-ingest messages accordingly
See issue #112 for more info
Added
- Allow setting HTTP agent #108
Fixed
- Fix default nested Protobuf type #113
v2.0.1
v2.0.0
[2.0.0] - 2021-02-28
This version adds support for Protobuf and JSON Schema, in addition to the already
supported Avro format!
See Migrating to v2
for information on how to adapt your application to the new API. For most users,
the change should be rather minor.
Big thanks to @dskatz22 and @Malkiz for their significant contributions!
Added
- Support Protobuf and JSON Schema #93