Skip to content

Commit

Permalink
build(deps): bump smallvec from 1.11.0 to 1.13.2 (#104)
Browse files Browse the repository at this point in the history
Bumps [smallvec](https://github.com/servo/rust-smallvec) from 1.11.0 to
1.13.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/servo/rust-smallvec/releases">smallvec's
releases</a>.</em></p>
<blockquote>
<h2>v1.13.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Add more tests for UB by <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/346">servo/rust-smallvec#346</a></li>
<li>Fix UB on out-of-bounds insert() by <a
href="https://github.com/mbrubeck"><code>@​mbrubeck</code></a> in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/345">servo/rust-smallvec#345</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/servo/rust-smallvec/compare/v1.13.1...v1.13.2">https://github.com/servo/rust-smallvec/compare/v1.13.1...v1.13.2</a></p>
<h2>v1.13.1</h2>
<ul>
<li>Remove the optional <code>get-size</code> feature, to avoid a cyclic
dependency (<a
href="https://redirect.github.com/servo/rust-smallvec/issues/335">#335</a>).</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/servo/rust-smallvec/compare/v1.13.0...v1.13.1">https://github.com/servo/rust-smallvec/compare/v1.13.0...v1.13.1</a></p>
<h2>v1.13.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Impl get_size::GetSize (behind feature flag) by <a
href="https://github.com/amandasaurus"><code>@​amandasaurus</code></a>
in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/335">servo/rust-smallvec#335</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/servo/rust-smallvec/compare/v1.12.0...v1.13.0">https://github.com/servo/rust-smallvec/compare/v1.12.0...v1.13.0</a></p>
<h2>v1.12.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Add <code>from_const_with_len_unchecked</code> by <a
href="https://github.com/Expyron"><code>@​Expyron</code></a> in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/329">servo/rust-smallvec#329</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/Expyron"><code>@​Expyron</code></a> made
their first contribution in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/329">servo/rust-smallvec#329</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/servo/rust-smallvec/compare/v1.11.2...v1.12.0">https://github.com/servo/rust-smallvec/compare/v1.11.2...v1.12.0</a></p>
<h2>v1.11.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Automated testing improvements by <a
href="https://github.com/waywardmonkeys"><code>@​waywardmonkeys</code></a>
in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/322">servo/rust-smallvec#322</a>
and <a
href="https://redirect.github.com/servo/rust-smallvec/pull/326">servo/rust-smallvec#326</a></li>
<li>fix: don't special-case <code>doc</code> for <code>feature =
&quot;const_generics&quot;</code> by <a
href="https://github.com/mkroening"><code>@​mkroening</code></a> in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/328">servo/rust-smallvec#328</a></li>
<li>Code cleanup by <a
href="https://github.com/emilio"><code>@​emilio</code></a> in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/316">servo/rust-smallvec#316</a>
and <a
href="https://github.com/waywardmonkeys"><code>@​waywardmonkeys</code></a>
in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/323">servo/rust-smallvec#323</a></li>
<li>Minor tweaks to doc formatting. by <a
href="https://github.com/waywardmonkeys"><code>@​waywardmonkeys</code></a>
in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/318">servo/rust-smallvec#318</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/mkroening"><code>@​mkroening</code></a>
made their first contribution in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/328">servo/rust-smallvec#328</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/servo/rust-smallvec/compare/v1.11.1...v1.11.2">https://github.com/servo/rust-smallvec/compare/v1.11.1...v1.11.2</a></p>
<h2>v1.11.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Annotate SmallVec::insert_from_slice with <code>#[inline]</code> by
<a href="https://github.com/sffc"><code>@​sffc</code></a> in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/312">servo/rust-smallvec#312</a></li>
<li>Micro-optimize <code>push</code> and <code>insert</code> b <a
href="https://github.com/emilio"><code>@​emilio</code></a> in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/315">servo/rust-smallvec#315</a></li>
<li>Add <code>--generate-link-to-definition</code> option when building
on docs.rs by <a
href="https://github.com/GuillaumeGomez"><code>@​GuillaumeGomez</code></a>
in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/304">servo/rust-smallvec#304</a></li>
<li>Testing fixes by <a
href="https://github.com/mrobinson"><code>@​mrobinson</code></a> and <a
href="https://github.com/waywardmonkeys"><code>@​waywardmonkeys</code></a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/mrobinson"><code>@​mrobinson</code></a>
made their first contribution in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/303">servo/rust-smallvec#303</a></li>
<li><a
href="https://github.com/GuillaumeGomez"><code>@​GuillaumeGomez</code></a>
made their first contribution in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/304">servo/rust-smallvec#304</a></li>
<li><a href="https://github.com/sffc"><code>@​sffc</code></a> made their
first contribution in <a
href="https://redirect.github.com/servo/rust-smallvec/pull/312">servo/rust-smallvec#312</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/servo/rust-smallvec/commit/0089d0a15bee4792a575b9c51e9d7ace39b3957c"><code>0089d0a</code></a>
Bump version to 1.13.2</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/b1d2814a3d717d79c06159e66dcd14a186d88d71"><code>b1d2814</code></a>
Fix UB on out-of-bounds insert()</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/30573623ed8d40800098ecad415e8c23e38abe67"><code>3057362</code></a>
Stop passing tag-raw-ptrs to MIRIFLAGS</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/f6665a5e7e30bf9b684f8cd3054cba7e8b18b5f2"><code>f6665a5</code></a>
Add more tests for UB</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/f8136b8b208f028be1783f0842faea91c2f913fd"><code>f8136b8</code></a>
Version 1.13.1</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/25f5d910349d7a07a7c60729af22365e17313632"><code>25f5d91</code></a>
Revert &quot;Impl get_size::GetSize (behind feature flag)&quot;</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/ff0544479f24899c1ae41e39f987ac7cd824f7a3"><code>ff05444</code></a>
Version 1.13.0</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/38863e83dbc84fc289a7f93c89e091ab454498c3"><code>38863e8</code></a>
Impl get_size::GetSize (behind feature flag)</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/93b0e20e7cecff656ad4884b0a1dfecbff8f2b7a"><code>93b0e20</code></a>
Version 1.12.0</li>
<li><a
href="https://github.com/servo/rust-smallvec/commit/c638a0b91faabdf78eb0c3dbb2bb826791f96be8"><code>c638a0b</code></a>
Add <code>from_const_with_len_unchecked</code></li>
<li>Additional commits viewable in <a
href="https://github.com/servo/rust-smallvec/compare/v1.11.0...v1.13.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=smallvec&package-manager=cargo&previous-version=1.11.0&new-version=1.13.2)](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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored May 7, 2024
1 parent 42ed1c1 commit ab431d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ring = "0.16.20"
serde = "1.0.158"
sha2 = "0.10.8"
simple-dns = "0.5.3"
smallvec = "1.10.0"
smallvec = "1.13.2"
snow = { version = "0.9.3", features = ["ring-resolver"], default-features = false }
socket2 = { version = "0.5.5", features = ["all"] }
str0m = "0.4.1"
Expand Down

0 comments on commit ab431d8

Please sign in to comment.