Skip to content

Commit

Permalink
chore(deps): Bump serde_yaml from 0.9.24 to 0.9.25 (vectordotdev#18040)
Browse files Browse the repository at this point in the history
Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.24 to
0.9.25.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/serde-yaml/releases">serde_yaml's
releases</a>.</em></p>
<blockquote>
<h2>0.9.25</h2>
<ul>
<li>Serialize using quoted style around scalar that has digits with
leading zero (<a
href="https://redirect.github.com/dtolnay/serde-yaml/issues/347">#347</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/serde-yaml/commit/f26dac4b3af3b2b90881604f917f2a75c7f1de0b"><code>f26dac4</code></a>
Release 0.9.25</li>
<li><a
href="https://github.com/dtolnay/serde-yaml/commit/fda96c77ebc06ea8b6f55fe632a1713369a9d9e4"><code>fda96c7</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/serde-yaml/issues/383">#383</a>
from dtolnay/leadingzero</li>
<li><a
href="https://github.com/dtolnay/serde-yaml/commit/a38768fc522e6a5d89ecf0f59a5c5118ed403da5"><code>a38768f</code></a>
Quoted style for string consisting of digits with leading zero</li>
<li><a
href="https://github.com/dtolnay/serde-yaml/commit/cd1fd90f2318bd04c35cde4b50c50823c69c7f98"><code>cd1fd90</code></a>
Add test of quoting of number with leading zeros</li>
<li><a
href="https://github.com/dtolnay/serde-yaml/commit/c1b1eac970e6767e9084c156b6a34662b73e2a9d"><code>c1b1eac</code></a>
Resolve incorrect_partial_ord_impl_on_ord_type clippy lint</li>
<li>See full diff in <a
href="https://github.com/dtolnay/serde-yaml/compare/0.9.24...0.9.25">compare
view</a></li>
</ul>
</details>
<br />


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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Jul 20, 2023
1 parent b36c531 commit 7050b7e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 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 Cargo.toml
Expand Up @@ -199,7 +199,7 @@ serde-toml-merge = { version = "0.3.0", default-features = false }
serde_bytes = { version = "0.11.12", default-features = false, features = ["std"], optional = true }
serde_json = { version = "1.0.103", default-features = false, features = ["raw_value"] }
serde_with = { version = "3.1.0", default-features = false, features = ["macros", "std"] }
serde_yaml = { version = "0.9.24", default-features = false }
serde_yaml = { version = "0.9.25", default-features = false }

# Messagepack
rmp-serde = { version = "1.1.1", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion vdev/Cargo.toml
Expand Up @@ -34,7 +34,7 @@ regex = { version = "1.9.1", default-features = false, features = ["std", "perf"
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.103"
serde_yaml = "0.9.24"
serde_yaml = "0.9.25"
sha2 = "0.10.7"
tempfile = "3.6.0"
toml = { version = "0.7.6", default-features = false, features = ["parse"] }

0 comments on commit 7050b7e

Please sign in to comment.