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

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


    omit 1146996  feat: Use `#[avro(with)]` for `serde_avro_*`
    omit 3ee13c8  fix(derive): Clearer error messages and documentations
    omit 14fb9c9  feat!: Use the `Fixed` representation for `uuid::Uuid`
    omit 0556841  feat(derive): Allow overriding the schema used for a field
     add 31a36a2  chore(deps): Bump wasm-bindgen-test from 0.3.56 to 0.3.58 
(#404)
     add ac79ec6  fix(derive): do not match type by name (#401)
     add 1b456bf  feat(derive): Allow overriding the schema used for a field
     add 454d898  feat!: Use the `Fixed` representation for `uuid::Uuid`
     add 48bcbd3  fix(derive): Clearer error messages and documentations
     add c82ed2f  feat: Use `#[avro(with)]` for `serde_avro_*`
     add 21ba64b  feat(derive): Insert actual schema in `AvroSchemaComponent` 
`named_schemas`

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   (1146996)
            \
             N -- N -- N   refs/heads/feat/derive_with (21ba64b)

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:
 Cargo.lock                                         |  92 +++++++++---
 Cargo.toml                                         |   3 +-
 avro/Cargo.toml                                    |   2 +-
 avro/src/bytes.rs                                  |   5 +-
 avro/src/schema.rs                                 | 135 ++++++++++++++++--
 avro_derive/Cargo.toml                             |   1 +
 avro_derive/src/attributes/mod.rs                  |   2 +-
 avro_derive/src/lib.rs                             | 157 +++++++++------------
 avro_derive/tests/derive.rs                        | 124 +++++++++++++++-
 ...r_lambda.rs => avro_rs_397_with_expr_lambda.rs} |   0
 ....stderr => avro_rs_397_with_expr_lambda.stderr} |   2 +-
 ...r_string.rs => avro_rs_397_with_expr_string.rs} |   0
 ....stderr => avro_rs_397_with_expr_string.stderr} |   2 +-
 ..._expr_type.rs => avro_rs_397_with_expr_type.rs} |   0
 ...pe.stderr => avro_rs_397_with_expr_type.stderr} |   2 +-
 ...e.rs => avro_rs_397_with_word_without_serde.rs} |   0
 ... => avro_rs_397_with_word_without_serde.stderr} |   2 +-
 ...th_word_without_serde.rs => avro_rs_401_ptr.rs} |   4 +-
 avro_derive/tests/ui/avro_rs_401_ptr.stderr        |   5 +
 ..._word_without_serde.rs => avro_rs_401_tuple.rs} |   4 +-
 avro_derive/tests/ui/avro_rs_401_tuple.stderr      |   5 +
 ...erde.rs => avro_rs_401_unknown_type_variant.rs} |   4 +-
 .../ui/avro_rs_401_unknown_type_variant.stderr     |   5 +
 wasm-demo/Cargo.toml                               |   2 +-
 24 files changed, 415 insertions(+), 143 deletions(-)
 rename avro_derive/tests/ui/{avro_rs_396_with_expr_lambda.rs => 
avro_rs_397_with_expr_lambda.rs} (100%)
 rename avro_derive/tests/ui/{avro_rs_396_with_expr_lambda.stderr => 
avro_rs_397_with_expr_lambda.stderr} (81%)
 rename avro_derive/tests/ui/{avro_rs_396_with_expr_string.rs => 
avro_rs_397_with_expr_string.rs} (100%)
 rename avro_derive/tests/ui/{avro_rs_396_with_expr_string.stderr => 
avro_rs_397_with_expr_string.stderr} (82%)
 rename avro_derive/tests/ui/{avro_rs_396_with_expr_type.rs => 
avro_rs_397_with_expr_type.rs} (100%)
 rename avro_derive/tests/ui/{avro_rs_396_with_expr_type.stderr => 
avro_rs_397_with_expr_type.stderr} (82%)
 copy avro_derive/tests/ui/{avro_rs_396_with_word_without_serde.rs => 
avro_rs_397_with_word_without_serde.rs} (100%)
 rename avro_derive/tests/ui/{avro_rs_396_with_word_without_serde.stderr => 
avro_rs_397_with_word_without_serde.stderr} (76%)
 copy avro_derive/tests/ui/{avro_rs_396_with_word_without_serde.rs => 
avro_rs_401_ptr.rs} (95%)
 create mode 100644 avro_derive/tests/ui/avro_rs_401_ptr.stderr
 copy avro_derive/tests/ui/{avro_rs_396_with_word_without_serde.rs => 
avro_rs_401_tuple.rs} (95%)
 create mode 100644 avro_derive/tests/ui/avro_rs_401_tuple.stderr
 rename avro_derive/tests/ui/{avro_rs_396_with_word_without_serde.rs => 
avro_rs_401_unknown_type_variant.rs} (95%)
 create mode 100644 avro_derive/tests/ui/avro_rs_401_unknown_type_variant.stderr

Reply via email to