Skip to content

Commit

Permalink
[SchemaRegistry] update Avro version + changelog (#20624)
Browse files Browse the repository at this point in the history
fixes: #20606
  • Loading branch information
swathipil authored Sep 9, 2021
1 parent 3d29229 commit 28bb632
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

### Breaking Changes

- `schema_registry` parameter in the `SchemaRegistryAvroSerializer` constructor has been renamed `client`.
- `schema_group` parameter in the `SchemaRegistryAvroSerializer` constructor has been renamed `group_name`.
- `data` parameter in the `serialize` and `deserialize` methods on `SchemaRegistryAvroSerializer` has been renamed `value`.

### Bugs Fixed

### Other Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
#
# --------------------------------------------------------------------------

VERSION = "1.0.0b2"
VERSION = "1.0.0b3"
8 changes: 8 additions & 0 deletions sdk/schemaregistry/azure-schemaregistry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@

### Breaking Changes

- `get_schema_id` method on sync and async `SchemaRegistryClient` has been renamed `get_schema_properties`.
- `schema_id` parameter in `get_schema` method on sync and async `SchemaRegistryClient` has been renamed `id`.
- `register_schema` and `get_schema_properties` methods on sync and async `SchemaRegistryClient` now take in the following parameters in the given order:
- `group_name`, which has been renamed from `schema_group`
- `name`, which has been renamed from `schema_name`
- `content`, which has been renamed from `schema_content`
- `serialization_type`

### Bugs Fixed

### Other Changes
Expand Down

0 comments on commit 28bb632

Please sign in to comment.