This is an automated email from the ASF dual-hosted git repository.

kriskras99 pushed a change to branch feat/schema_aware_ser_and_deser
in repository https://gitbox.apache.org/repos/asf/avro-rs.git


    omit 661157d  fix: Enable `rustdoc_internal` feature when `cfg(docsrs)` so 
we can use `fake_variadic`
    omit 80a1d88  fix: Don't call `T::field_default()` if the schema is 
overwritten using `#[avro(with)]`
     add e2055f5  fix: Don't call `T::field_default()` if the schema is 
overwritten using `#[avro(with)]`
     add 3d03097  fix: Enable `rustdoc_internal` feature when `cfg(docsrs)` so 
we can use `fake_variadic`
     add 669a907  fix: Review feedback

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   (661157d)
            \
             N -- N -- N   refs/heads/feat/schema_aware_ser_and_deser (669a907)

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:
 avro/src/documentation/avro_data_model_to_serde.rs |   6 +-
 avro/src/documentation/serde_data_model_to_avro.rs |   6 +-
 avro/src/error.rs                                  |  14 +-
 avro/src/reader/block.rs                           |   3 +-
 avro/src/reader/datum.rs                           |   3 +-
 avro/src/reader/mod.rs                             |  10 +
 avro/src/schema/mod.rs                             |  26 +++
 avro/src/serde/deser_schema/map.rs                 |   2 +-
 avro/src/serde/deser_schema/mod.rs                 | 236 ++++++++++++++++-----
 avro/src/serde/deser_schema/tuple.rs               |   2 +-
 avro/src/serde/mod.rs                              |   2 +-
 avro/src/serde/ser_schema/block.rs                 |   4 +-
 avro/src/serde/ser_schema/record/field_default.rs  |  44 ++--
 avro/src/serde/ser_schema/record/mod.rs            |   4 +-
 avro/src/serde/ser_schema/tuple.rs                 |  11 +-
 avro/src/serde/ser_schema/union.rs                 |   2 +-
 avro/src/writer/datum.rs                           |   2 +-
 avro/src/writer/mod.rs                             |   2 +-
 avro/src/writer/single_object.rs                   |   2 +-
 19 files changed, 292 insertions(+), 89 deletions(-)

Reply via email to