This repository was archived by the owner on Jan 13, 2026. It is now read-only.
Commit a2ab4a7
authored
Bump serde from 1.0.160 to 1.0.162 in /cmd/pinniped-proxy (#6245)
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.160 to
1.0.162.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>1.0.162</h2>
<ul>
<li>
<p>Support deserializing flattened adjacently tagged enums from data
formats which represent fields as bytes, such as the <code>csv</code>
crate (<a
href="https://redirect.github.com/serde-rs/serde/issues/2377">#2377</a>,
thanks <a href="https://github.com/mfro"><code>@mfro</code></a>)</p>
<pre lang="rust"><code>#[derive(Deserialize)]
pub struct Record {
common: u64,
#[serde(flatten)]
kind: Kind,
}
<p>#[derive(Deserialize)]
#[serde(tag = "kind", content = "parameter",
rename_all = "lowercase")]
enum Kind {
Foo(u64),
Bar(bool),
}
</code></pre></p>
<pre lang="csv"><code>common,kind,parameter
1,foo,42
2,bar,true
</code></pre>
</li>
</ul>
<h2>v1.0.161</h2>
<ul>
<li>Improve error messages produced by serde_test on test failure (<a
href="https://redirect.github.com/serde-rs/serde/issues/2435">#2435</a>,
thanks <a
href="https://github.com/Mingun"><code>@Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/99f165b45abc05b6104c4eb0dcbc7a2e2c3d821a"><code>99f165b</code></a>
Release 1.0.162</li>
<li><a
href="https://github.com/serde-rs/serde/commit/2fb556074625fc3c97d8fabe026936c0c04e5b6e"><code>2fb5560</code></a>
Attempt to generate just one copy of TagContentOtherFieldVisitor's field
matc...</li>
<li><a
href="https://github.com/serde-rs/serde/commit/bd653ab30cca7c362660a1f6bb069b7b2a891115"><code>bd653ab</code></a>
Format PR 2377 with rustfmt</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b5d68aedaa85edea926c882df6d3cb9346de9d98"><code>b5d68ae</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2377">#2377</a>
from mfro/master</li>
<li><a
href="https://github.com/serde-rs/serde/commit/624879c4c690217101adc9e10fd9ecc5d9ee9708"><code>624879c</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2441">#2441</a>
from dtolnay/test</li>
<li><a
href="https://github.com/serde-rs/serde/commit/bd9e9abf352f8cc31cf69309455aa970ab04275a"><code>bd9e9ab</code></a>
Reimplement tests that touched serde_test internal API</li>
<li><a
href="https://github.com/serde-rs/serde/commit/3e4a23cbd064f983e0029404e69b1210d232f94f"><code>3e4a23c</code></a>
Release 1.0.161</li>
<li><a
href="https://github.com/serde-rs/serde/commit/6326ceec3f18fc030f19f5300df18f2a8265df3d"><code>6326cee</code></a>
Don't panic in serde_test on running out of tokens</li>
<li><a
href="https://github.com/serde-rs/serde/commit/8f4d37c7ec696ec5a04202ab14e14b292cc7c8b1"><code>8f4d37c</code></a>
Convert serde_test's assert_next_token from macro to function</li>
<li><a
href="https://github.com/serde-rs/serde/commit/1b8290b3185e0ffff0769cbca2abe695aafed153"><code>1b8290b</code></a>
Convert serde_test's unexpected from macro to function</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.160...1.0.162">compare
view</a></li>
</ul>
</details>
<br />
[](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>1 parent 9cb4c74 commit a2ab4a7
1 file changed
Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments