This is an automated email from the ASF dual-hosted git repository.
Kriskras99 pushed a change to branch opt/decode_uuid
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
discard 6e357c0 fix: Wrong error message
discard 10a4b34 feat: Optimize UUID decoding in `decode.rs`
add 6fcacd5 chore(ci): Bump the github-codeql group with 2 updates (#667)
add d72cf95 chore(ci): Bump taiki-e/install-action from 2.86.7 to 2.87.2
(#668)
add 2fbc535 chore(ci): Bump zizmorcore/zizmor-action from 0.6.2 to 0.6.3
(#669)
add 36a03d5 feat: Consume instead of reference the metadata in OCF header
(#665)
add c12ab35 fix: Don't return `Value::Null` on EOF in `decode.rs` (#664)
add 7801a9e fix: Lints for version 1.100 (#662)
add f48baf4 feat!: Make schema parser reuse the JSON allocations (#656)
add 739bc50 feat: Optimize UUID decoding in `decode.rs`
add a066cd0 fix: Wrong error message
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 (6e357c0)
\
N -- N -- N refs/heads/opt/decode_uuid (a066cd0)
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:
.github/workflows/codeql-analysis.yml | 4 +-
.github/workflows/test-lang-rust-ci.yml | 6 +-
.github/workflows/zizmor.yml | 2 +-
Cargo.lock | 1 -
avro/Cargo.toml | 1 -
avro/src/decode.rs | 69 ++++------
avro/src/error.rs | 27 ++++
avro/src/reader/block.rs | 66 ++++------
avro/src/schema/mod.rs | 205 ++++++++++++++++++++++++++---
avro/src/schema/name.rs | 22 ++--
avro/src/schema/parser.rs | 226 ++++++++++++++------------------
avro/src/schema/record/field.rs | 44 ++-----
avro/src/types.rs | 14 +-
avro/src/util.rs | 75 ++++++++---
avro_derive/Cargo.toml | 1 -
avro_test_helper/Cargo.toml | 1 -
wasm-demo/Cargo.toml | 5 +-
wasm-demo/src/lib.rs | 2 +
18 files changed, 459 insertions(+), 312 deletions(-)