This is an automated email from the ASF dual-hosted git repository.
kriskras99 pushed a change to branch schema_compatibility2
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
omit 61b9a7c feat: Bump MSRV to 1.88
omit d953250 feat!: Rework schema compatibility
omit 19b366b fix: small fixed for uuid and schema compatibility
omit 6924025 feat!: Rework `Schema::Uuid` to support `fixed` as the base
type
omit 29bbc89 feat!: Rework `Schema::Decimal` to not require a `Box<Schema>`
add 13625ab test: uncomment attribute test and delete commented outdated
test (#362)
add 2019363 feat: Implement support for `#[serde(flatten)]` (#359)
add 5ba61cc chore(deps): Bump actions/cache from 4 to 5 (#367)
add b53cccf fix: Enable `std` feature for Serde (#364)
add 80be33c feat!: Rework `Schema::Decimal` to not require a `Box<Schema>`
add 19bda15 feat!: Rework `Schema::Uuid` to support `fixed` as the base
type
add c64a724 fix: small fixed for uuid and schema compatibility
add fdbf89f feat!: Rework schema compatibility
add 6d70a2a feat: Bump MSRV to 1.88
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (61b9a7c)
\
N -- N -- N refs/heads/schema_compatibility2 (6d70a2a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/test-lang-rust-ci.yml | 16 +-
Cargo.toml | 2 +-
avro/src/error.rs | 6 +
avro/src/lib.rs | 7 +-
avro/src/{ => serde}/de.rs | 0
avro/src/serde/mod.rs | 4 +
avro/src/{ => serde}/ser.rs | 7 +-
avro/src/{ => serde}/ser_schema.rs | 136 +++++++++++++--
avro/src/serde/util.rs | 300 ++++++++++++++++++++++++++++++++
avro/src/types.rs | 6 +-
avro/src/writer.rs | 2 +-
avro/tests/schema.rs | 62 +++----
avro_derive/src/lib.rs | 68 +++++---
avro_derive/tests/derive.rs | 164 +++++++++++++++++
avro_test_helper/src/data.rs | 5 +-
15 files changed, 685 insertions(+), 100 deletions(-)
rename avro/src/{ => serde}/de.rs (100%)
create mode 100644 avro/src/serde/mod.rs
rename avro/src/{ => serde}/ser.rs (99%)
rename avro/src/{ => serde}/ser_schema.rs (96%)
create mode 100644 avro/src/serde/util.rs