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

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


 discard e4a43c7  docs: Continue working on moving documentation away from 
lib.rs and enable and fix some Clippy lints for documentation
 discard 7fe545c  docs: Move documentation away from lib.rs
 discard 8e466e9  feat(doc): Add documentation for the `AvroSchema` derive
     add a83f53c  chore(deps): Bump actions/setup-java from 5.1.0 to 5.2.0 
(#436)
     add 524e426  chore(deps): Bump uuid from 1.19.0 to 1.20.0 (#437)
     add 6218cd7  fix: Ensure SpecificSingleObjectWriter writes header on every 
call (#438)
     add 5e23188  fix: Don't allow serializing `bytes` as a `Uuid::String` 
(#441)
     add d4d062a  Improve resolving (#442)
     add cc37970  feat!: Rework `SpecificSingleObjectWriter` (#445)
     add f502392  fix: Don't allow resolving a schema that is already known 
(#444)
     add b6e157f  chore: Delete a benchmark test for serde_json (#446)
     add 5a553be  feat: Add posibility to append values to writer without 
validating (#447)
     add 7cff925  fix: `flatten` no longer causes duplicate names (#448)
     add 948706b  fix: Don't silently truncate numbers larger than `i64::MAX` 
when converting from JSON (#450)
     new 2a22649  feat(doc): Add documentation for the `AvroSchema` derive
     new f8b9ca9  docs: Move documentation away from lib.rs
     new ec18d63  docs: Continue working on moving documentation away from 
lib.rs and enable and fix some Clippy lints for documentation
     new 4d18e9f  docs: Further work

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   (e4a43c7)
            \
             N -- N -- N   refs/heads/feat/documentation (4d18e9f)

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            |    2 +-
 Cargo.lock                                         |   62 +-
 Cargo.toml                                         |    2 +-
 avro/Cargo.toml                                    |    6 +-
 avro/README.md                                     |    6 +-
 avro/benches/serde_json.rs                         |   77 --
 avro/examples/generate_interop_data.rs             |    2 +-
 avro/examples/specific_single_object.rs            |   40 +-
 .../test_interop_single_object_encoding.rs         |    2 +-
 avro/src/bigdecimal.rs                             |    2 +-
 avro/src/bytes.rs                                  |   91 +-
 avro/src/documentation/primer.rs                   |   28 +-
 avro/src/lib.rs                                    |  255 +----
 avro/src/reader.rs                                 |   21 +-
 avro/src/schema/mod.rs                             | 1033 +-------------------
 avro/src/schema/resolve.rs                         | 1028 +++++++++++++++++++
 avro/src/schema_compatibility.rs                   |   10 +-
 avro/src/schema_equality.rs                        |   34 +
 avro/src/serde/derive.rs                           |  350 +++++--
 avro/src/serde/mod.rs                              |   11 +
 avro/src/serde/ser_schema.rs                       |   26 +-
 avro/src/serde/with.rs                             |   82 +-
 avro/src/types.rs                                  |   11 +-
 avro/src/validator.rs                              |   33 +
 avro/src/writer.rs                                 |  315 ++++--
 avro/tests/append_to_existing.rs                   |    8 +-
 avro/tests/codecs.rs                               |    2 +-
 avro/tests/get_record_fields.rs                    |  149 +++
 avro/tests/io.rs                                   |    2 +-
 avro/tests/schema.rs                               |   28 +-
 avro/tests/serde_human_readable_false.rs           |   89 +-
 avro/tests/serde_human_readable_true.rs            |   81 +-
 avro/tests/shared.rs                               |    4 +-
 avro/tests/to_from_avro_datum_schemata.rs          |    2 +-
 avro_derive/src/attributes/mod.rs                  |    2 +-
 avro_derive/src/lib.rs                             |  157 ++-
 avro_derive/tests/derive.rs                        |  216 ++++
 avro_derive/tests/ui.rs                            |    2 +-
 wasm-demo/tests/demos.rs                           |    2 +-
 39 files changed, 2594 insertions(+), 1679 deletions(-)
 delete mode 100644 avro/benches/serde_json.rs
 create mode 100644 avro/src/schema/resolve.rs
 create mode 100644 avro/tests/get_record_fields.rs

Reply via email to