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 6a5b20d  docs
 discard 101c8c3  more testing
 discard 7123747  more stuff
 discard 9340404  wip: Full enum support
     add 285f5c9  feat: Use `macrotest` to test the expanded macro code (#501)
     add bc20898  chore(deps): Bump uuid from 1.21.0 to 1.22.0 (#506)
     add a0f010b  fix: Fix links rustdoc (#505)
     add b020ea7  ci: Add a CI step for `cargo doc` (#507)
     new 1551ddd  wip: Full enum support
     new e9c13f2  more stuff
     new a52a089  more testing
     new 0812b8f  docs

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   (6a5b20d)
            \
             N -- N -- N   refs/heads/feat/enums (0812b8f)

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 4 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:
 .github/workflows/test-lang-rust-ci.yml            |  31 ++--
 Cargo.lock                                         |   4 +-
 Cargo.toml                                         |   2 +-
 avro/src/bytes.rs                                  |   4 +-
 avro/src/schema_compatibility.rs                   |   2 +-
 avro/src/writer/datum.rs                           |   6 +-
 avro_derive/Cargo.toml                             |   2 +-
 avro_derive/src/enums/bare_union.rs                |   4 +-
 avro_derive/src/enums/plain.rs                     |   4 +-
 avro_derive/src/enums/record_internally_tagged.rs  |  13 +-
 avro_derive/src/enums/record_tag_content.rs        |   6 +-
 avro_derive/src/enums/union_of_records.rs          |   4 +-
 avro_derive/src/lib.rs                             | 185 +++------------------
 avro_derive/src/tuple.rs                           |  14 +-
 avro_derive/tests/expand.rs                        |   7 +-
 .../avro_3687_basic_enum_with_default.expanded.rs  |   4 +-
 .../avro_3709_record_field_attributes.expanded.rs  | 149 +++++++++--------
 .../avro_rs_207_rename_all_attribute.expanded.rs   | 131 +++++++++------
 ...name_attr_over_rename_all_attribute.expanded.rs | 127 ++++++++------
 ...s.expanded.rs => avro_rs_501_basic.expanded.rs} | 163 +++++++++---------
 ...xxx_serde_from_into.rs => avro_rs_501_basic.rs} |   8 +-
 .../expanded/avro_rs_501_namespace.expanded.rs     | 158 ++++++++++++++++++
 ...ro_rs_xxx_basic.rs => avro_rs_501_namespace.rs} |   1 +
 .../expanded/avro_rs_501_reference.expanded.rs     | 164 ++++++++++++++++++
 .../avro_rs_501_reference.rs}                      |   7 +-
 ...> avro_rs_501_struct_with_optional.expanded.rs} | 117 +++++++------
 ...asic.rs => avro_rs_501_struct_with_optional.rs} |   5 +-
 .../expanded/avro_rs_xxx_bare_union.expanded.rs    | 113 +++++++------
 .../avro_rs_xxx_internally_tagged.expanded.rs      | 127 ++++++++------
 .../avro_rs_xxx_serde_from_into.expanded.rs        | 127 ++++++++------
 .../avro_rs_xxx_serde_transparent.expanded.rs      | 127 ++++++++------
 .../expanded/avro_rs_xxx_tag_content.expanded.rs   | 127 ++++++++------
 .../avro_rs_xxx_union_of_records.expanded.rs       | 127 ++++++++------
 avro_derive/tests/expanded/mod.rs                  |   8 +-
 .../avro_3687_basic_enum_with_default_twice.rs}    |   6 +-
 .../avro_3687_basic_enum_with_default_twice.stderr |  19 +++
 licenserc.toml                                     |   1 +
 37 files changed, 1280 insertions(+), 824 deletions(-)
 copy avro_derive/tests/expanded/{avro_3709_record_field_attributes.expanded.rs 
=> avro_rs_501_basic.expanded.rs} (54%)
 copy avro_derive/tests/expanded/{avro_rs_xxx_serde_from_into.rs => 
avro_rs_501_basic.rs} (94%)
 create mode 100644 avro_derive/tests/expanded/avro_rs_501_namespace.expanded.rs
 copy avro_derive/tests/expanded/{avro_rs_xxx_basic.rs => 
avro_rs_501_namespace.rs} (95%)
 create mode 100644 avro_derive/tests/expanded/avro_rs_501_reference.expanded.rs
 copy avro_derive/tests/{ui/avro_rs_401_ptr.rs => 
expanded/avro_rs_501_reference.rs} (93%)
 rename avro_derive/tests/expanded/{avro_rs_xxx_basic.expanded.rs => 
avro_rs_501_struct_with_optional.expanded.rs} (52%)
 rename avro_derive/tests/expanded/{avro_rs_xxx_basic.rs => 
avro_rs_501_struct_with_optional.rs} (95%)
 copy avro_derive/tests/{expanded/avro_3687_basic_enum_with_default.rs => 
ui/avro_3687_basic_enum_with_default_twice.rs} (94%)
 create mode 100644 
avro_derive/tests/ui/avro_3687_basic_enum_with_default_twice.stderr

Reply via email to