This is an automated email from the ASF dual-hosted git repository.
Kriskras99 pushed a change to branch feat/namespace_for_named_types
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
discard 6f2a27b wip: Namespace for named types defined by this library
add e67c19d chore(deps): Bump rand from 0.10.0 to 0.10.1 (#535)
add b00cd1a chore(deps): Bump ctor from 0.8.0 to 0.10.0 (#534)
add 5fb7681 chore(deps): Bump uuid from 1.23.0 to 1.23.1 (#537)
add a682d05 chore(deps): Bump ctor from 0.10.0 to 0.10.1 (#538)
add 19e284c chore(deps): Bump ctor from 0.10.1 to 0.11.1 (#539)
add 27af3cf chore(deps): Bump digest from 0.11.2 to 0.11.3 (#540)
add 821f26a Remove CHANGELOG.md (#541)
add f8f87bc Set up default protection ruleset for default and release
branches (#544)
add bf83d63 Deserializer support for BigDecimal when using
apache_avro::serde::bigdecimal (#543)
add fa40e21 chore(deps): Bump serde_json from 1.0.149 to 1.0.150 (#545)
add 4edb1ce chore(deps): Bump log from 0.4.29 to 0.4.30 (#546)
add 19780d6 chore(deps): Bump uuid from 1.23.1 to 1.23.2 (#549)
add 38cb929 chore(deps): Bump log from 0.4.30 to 0.4.31 (#550)
add 7dd1d33 chore(deps): Bump log from 0.4.31 to 0.4.32 (#551)
add 626f22d fix(schema): return Err instead of panicking on invalid
name/alias/type-ref (#547) (#548)
add b900fc5 chore(deps): Bump uuid from 1.23.2 to 1.23.3 (#552)
add 8078c06 chore(deps): Bump bon from 3.9.1 to 3.9.2 (#553)
add bd30bbb chore(deps): Bump bon from 3.9.2 to 3.9.3 (#555)
add 9c6a390 chore(deps): Bump syn from 2.0.117 to 2.0.118 (#556)
new 51aa528 feat: Namespace for named types defined by this library
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 (6f2a27b)
\
N -- N -- N refs/heads/feat/namespace_for_named_types (51aa528)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.asf.yaml | 13 ++
CHANGELOG.md | 166 ---------------------
Cargo.lock | 50 +++----
Cargo.toml | 6 +-
avro/Cargo.toml | 4 +-
avro/src/documentation/serde_data_model_to_avro.rs | 6 +-
avro/src/schema/parser.rs | 62 ++++----
avro/src/serde/de.rs | 33 +++-
avro/src/serde/derive.rs | 31 ++--
avro/src/serde/deser_schema/mod.rs | 1 +
avro/src/serde/ser_schema/mod.rs | 14 +-
avro/src/serde/with.rs | 2 +-
avro/tests/avro-rs-547.rs | 71 +++++++++
avro/tests/serde_human_readable_false.rs | 2 +-
avro/tests/serde_human_readable_true.rs | 2 +-
avro_test_helper/Cargo.toml | 2 +-
avro_test_helper/src/lib.rs | 4 +-
17 files changed, 210 insertions(+), 259 deletions(-)
delete mode 100644 CHANGELOG.md
create mode 100644 avro/tests/avro-rs-547.rs