Skip to content

Commit

Permalink
Bump serde_json from 1.0.86 to 1.0.87 (#2355)
Browse files Browse the repository at this point in the history
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.86 to 1.0.87.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/serde-rs/json/releases">serde_json's releases</a>.</em></p>
<blockquote>
<h2>v1.0.87</h2>
<ul>
<li>Add <code>write_i128</code> and <code>write_u128</code> methods to <code>serde_json::Formatter</code> to control the formatting of 128-bit integers (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/940">#940</a>, thanks <a href="https://github.com/Lucretiel"><code>@​Lucretiel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/serde-rs/json/commit/993e7a6eeaa89b39329d245e63879d7913ed1a41"><code>993e7a6</code></a> Release 1.0.87</li>
<li><a href="https://github.com/serde-rs/json/commit/31070349afe65bd2418450184a88a1463579f0af"><code>3107034</code></a> Eliminate needless 'tri!' from Serializer impl</li>
<li><a href="https://github.com/serde-rs/json/commit/46c9778ce158347069b3b971cd4f459183133370"><code>46c9778</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/942">#942</a> from serde-rs/integer128</li>
<li><a href="https://github.com/serde-rs/json/commit/37e76e0f8552260079ee4aad8fd569a48eeaf02f"><code>37e76e0</code></a> Assume serde_if_integer128 is true</li>
<li><a href="https://github.com/serde-rs/json/commit/ec0456ad7b2bf1c6c54cf966364f70d5a67f659f"><code>ec0456a</code></a> Use existing macros to implement 128-bit From impls</li>
<li><a href="https://github.com/serde-rs/json/commit/c183125e0417b69ac88b1313213bfb18f21e5361"><code>c183125</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/941">#941</a> from serde-rs/alloc</li>
<li><a href="https://github.com/serde-rs/json/commit/ab0f884fb63a20e7797501101351d8d9c6b25a1f"><code>ab0f884</code></a> Delete 1.36+ caveat from descriptions of alloc feature</li>
<li><a href="https://github.com/serde-rs/json/commit/486598bbef921d7afc32728b9011cbbdc4b29327"><code>486598b</code></a> Merge pull request 940 from Lucretiel/int128</li>
<li><a href="https://github.com/serde-rs/json/commit/84d6d95e01621281f3e1228a9b35c66086b5fa9e"><code>84d6d95</code></a> Add direct support for i128 and u128 via itoa</li>
<li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.86...v1.0.87">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.86&new-version=1.0.87)](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)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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)


</details>
  • Loading branch information
dependabot[bot] committed Oct 20, 2022
1 parent dc9c1cb commit d51fee7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion boa_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ boa_interner.workspace = true
rustyline = "10.0.0"
rustyline-derive = "0.7.0"
clap = { version = "4.0.17", features = ["derive"] }
serde_json = "1.0.86"
serde_json = "1.0.87"
colored = "2.0.0"
regex = "1.6.0"
phf = { version = "0.11.1", features = ["macros"] }
Expand Down
2 changes: 1 addition & 1 deletion boa_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ boa_profiler.workspace = true
boa_macros.workspace = true
gc = "0.4.1"
serde = { version = "1.0.145", features = ["derive", "rc"] }
serde_json = "1.0.86"
serde_json = "1.0.87"
rand = "0.8.5"
num-traits = "0.2.15"
regress = "0.4.1"
Expand Down
2 changes: 1 addition & 1 deletion boa_tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ boa_gc.workspace = true
clap = { version = "4.0.17", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_yaml = "0.9.13"
serde_json = "1.0.86"
serde_json = "1.0.87"
bitflags = "1.3.2"
regex = "1.6.0"
once_cell = "1.15.0"
Expand Down

0 comments on commit d51fee7

Please sign in to comment.