Skip to content

Commit

Permalink
build(deps): update jsonschema requirement from 0.24.0 to 0.26.1
Browse files Browse the repository at this point in the history
Signed-off-by: Anand Krishnamoorthi <[email protected]>
  • Loading branch information
anakrish committed Nov 6, 2024
1 parent 1bfe38f commit 69f2139
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ semver = {version = "1.0.20", optional = true, default-features = false }
wax = { version = "0.6.0", features = [], default-features = false, optional = true }
url = { version = "2.5.0", optional = true }
uuid = { version = "1.6.1", default-features = false, features = ["v4", "fast-rng"], optional = true }
jsonschema = { version = "0.24.0", default-features = false, optional = true }
jsonschema = { version = "0.26.1", default-features = false, optional = true }
chrono = { version = "0.4.31", optional = true }
chrono-tz = { version = "0.10.0", optional = true }
jsonwebtoken = { version = "9.2.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/builtins/objects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ fn json_match_schema(
Ok(_) => [Value::Bool(true), Value::Null],
Err(e) => [
Value::Bool(false),
Value::from_array(e.map(|e| Value::String(e.to_string().into())).collect()),
Value::from(e.to_string())
],
},
Err(e) if strict => bail!(params[1]
Expand Down

0 comments on commit 69f2139

Please sign in to comment.