This is an automated email from the ASF dual-hosted git repository.
Kriskras99 pushed a change to branch fix/dont_log_sensitive_value
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
discard 48ce12b feat: Display the full path of the Schema in `validate` error
messages
discard fbf48ff feat: Display the full path of the Value in `validate` error
messages
discard 856b136 fix!: Don't log potentially sensitive value in
`Value::validate`
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 3e0ab4b feat: Optimize UUID decoding in `decode.rs` (#663)
add b6db0e8 fix!: Don't log potentially sensitive value in
`Value::validate`
add 33b55c5 feat: Display the full path of the Value in `validate` error
messages
add f5fc0a5 feat: Display the full path of the Schema in `validate` error
messages
add 5db4927 fix: Show union variant type that does not exist in the schema
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 (48ce12b)
\
N -- N -- N refs/heads/fix/dont_log_sensitive_value (5db4927)
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 | 141 ++++++++------------
avro/src/error.rs | 33 +++++
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 | 18 +--
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, 498 insertions(+), 355 deletions(-)