Allow RawValue deserialization to propagate \u escapes for unmatched surrogates, which can later by deserialized to Vec<u8> (#830, thanks @lucacasonato)
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.78&new-version=1.0.79)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
---
Cargo.lock | 4 ++--
boa/Cargo.toml | 2 +-
boa_cli/Cargo.toml | 2 +-
boa_tester/Cargo.toml | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index a32f962179..6ddf84f96b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1314,9 +1314,9 @@ dependencies = [
[[package]]
name = "serde_json"
-version = "1.0.78"
+version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d23c1ba4cf0efd44be32017709280b32d1cea5c3f1275c3b6d9e8bc54f758085"
+checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
dependencies = [
"itoa 1.0.1",
"ryu",
diff --git a/boa/Cargo.toml b/boa/Cargo.toml
index 0c62fb3d17..14e083372d 100644
--- a/boa/Cargo.toml
+++ b/boa/Cargo.toml
@@ -23,7 +23,7 @@ boa_unicode = { path = "../boa_unicode", version = "0.13.0" }
boa_interner = { path = "../boa_interner", version = "0.13.0" }
gc = { version = "0.4.1", features = ["derive"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
-serde_json = "1.0.78"
+serde_json = "1.0.79"
rand = "0.8.5"
num-traits = "0.2.14"
regress = "0.4.1"
diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml
index aec3e1083b..e3b01cab3c 100644
--- a/boa_cli/Cargo.toml
+++ b/boa_cli/Cargo.toml
@@ -17,7 +17,7 @@ Boa = { path = "../boa", features = ["deser", "console"] }
rustyline = "9.1.2"
rustyline-derive = "0.6.0"
structopt = "0.3.26"
-serde_json = "1.0.78"
+serde_json = "1.0.79"
colored = "2.0.0"
regex = "1.5.4"
phf = { version = "0.10.1", features = ["macros"] }
diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml
index 84e66406a8..5e57bcc97e 100644
--- a/boa_tester/Cargo.toml
+++ b/boa_tester/Cargo.toml
@@ -16,7 +16,7 @@ Boa = { path = "../boa" }
structopt = "0.3.26"
serde = { version = "1.0.136", features = ["derive"] }
serde_yaml = "0.8.23"
-serde_json = "1.0.78"
+serde_json = "1.0.79"
bitflags = "1.3.2"
regex = "1.5.4"
once_cell = "1.9.0"