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

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


 discard 07d939d  fix tests
 discard cb2b76c  wip: Full enum support
    omit 28ebd24  Merge branch 'main' into feat/avro_schema_default
    omit 3915546  fix: Only implement field default for `Option<T>`
    omit c5ade47  fix: Improve documentation
    omit 40a4506  fix: Apply suggestions from code review
    omit 13b4e53  feat: Allow types to provide default values
     add 0a8f331  chore(deps): Bump wasm-bindgen-test from 0.3.62 to 0.3.63 
(#485)
     add 62ad6dd  feat: Allow types to provide default values (#477)
     add d7f2ead  fix!: Small things (#486)
     add 92f879a  feat: Custom `Debug` implementation for `*Schema` types (#488)
     add 89403dc  chore: Move enum derive to `enums::plain` in `avro_derive` 
(#487)
     add 7205975  feat: Add a `UnionSchemaBuilder`
     new fef7aa9  wip: Full enum support

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   (07d939d)
            \
             N -- N -- N   refs/heads/feat/enums (fef7aa9)

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:
 Cargo.lock                              |  40 +--
 avro/Cargo.toml                         |   1 -
 avro/src/bigdecimal.rs                  |   3 -
 avro/src/error.rs                       |   2 +-
 avro/src/schema/mod.rs                  |   2 +-
 avro/src/schema/name.rs                 |   2 +-
 avro/src/schema/record/field.rs         |   3 +
 avro/src/schema/record/schema.rs        |   3 +-
 avro/src/schema/union.rs                | 470 ++++++++++++++++++++++++--------
 avro/src/serde/derive.rs                |  82 ++----
 avro/src/serde/ser_schema/mod.rs        |  19 ++
 avro/src/serde/with.rs                  |   8 +-
 avro/src/types.rs                       |  17 +-
 avro/tests/serde_human_readable_true.rs | 238 ++++++++--------
 avro_derive/src/enums/mod.rs            |  31 ++-
 avro_derive/src/enums/plain.rs          |  23 +-
 avro_derive/src/lib.rs                  |  47 ++--
 avro_derive/tests/derive.rs             |  32 +++
 avro_test_helper/src/logger.rs          |   1 +
 wasm-demo/Cargo.toml                    |   2 +-
 20 files changed, 644 insertions(+), 382 deletions(-)

Reply via email to