[PR #1070] [MERGED] build(deps): bump indexmap from 2.9.0 to 2.10.0 #5341

Closed
opened 2026-05-23 00:56:58 +01:00 by JakeStanger · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/1070
Author: @dependabot[bot]
Created: 6/30/2025
Status: Merged
Merged: 7/1/2025
Merged by: @JakeStanger

Base: masterHead: dependabot/cargo/indexmap-2.10.0


📝 Commits (1)

  • 4bc4141 build(deps): bump indexmap from 2.9.0 to 2.10.0

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 Cargo.lock (+2 -2)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps indexmap from 2.9.0 to 2.10.0.

Changelog

Sourced from indexmap's changelog.

2.10.0 (2025-06-26)

  • Added extract_if methods to IndexMap and IndexSet, similar to the methods for HashMap and HashSet with ranges like Vec::extract_if.
  • Added more #[track_caller] annotations to functions that may panic.
Commits
  • 91dbcc5 Merge pull request #399 from cuviper/release-2.10.0
  • 67a5a71 Release 2.10.0
  • 37e519a Merge pull request #308 from cuviper/extract_if
  • 4d7618f Merge pull request #398 from cuviper/bench-deps
  • 68201eb Drop lazy_static for LazyLock
  • eaaaa56 Switch to fastrand for bench shuffling
  • b19d84e Fix clippy::needless_lifetimes
  • 4f62778 impl FusedIterator for ExtractIf
  • e09eaaf Document and track extract_if panics
  • a8d7dc5 Add range support to extract_if
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/JakeStanger/ironbar/pull/1070 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 6/30/2025 **Status:** ✅ Merged **Merged:** 7/1/2025 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `dependabot/cargo/indexmap-2.10.0` --- ### 📝 Commits (1) - [`4bc4141`](https://github.com/JakeStanger/ironbar/commit/4bc41415fa01fdf4197597b8f53f9f0d9bc0cab2) build(deps): bump indexmap from 2.9.0 to 2.10.0 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [indexmap](https://github.com/indexmap-rs/indexmap) from 2.9.0 to 2.10.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md">indexmap's changelog</a>.</em></p> <blockquote> <h2>2.10.0 (2025-06-26)</h2> <ul> <li>Added <code>extract_if</code> methods to <code>IndexMap</code> and <code>IndexSet</code>, similar to the methods for <code>HashMap</code> and <code>HashSet</code> with ranges like <code>Vec::extract_if</code>.</li> <li>Added more <code>#[track_caller]</code> annotations to functions that may panic.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indexmap-rs/indexmap/commit/91dbcc55d2b6be52b7f99929aebb7204a6576189"><code>91dbcc5</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/399">#399</a> from cuviper/release-2.10.0</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/67a5a712fcb667aa7b11e9b19a33fad764ae712c"><code>67a5a71</code></a> Release 2.10.0</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/37e519a3be8666e251d96156baeb230a80f9ad1f"><code>37e519a</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/308">#308</a> from cuviper/extract_if</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/4d7618fbc919be41dd0307075ae7fc2df58ea746"><code>4d7618f</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/398">#398</a> from cuviper/bench-deps</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/68201eb0a389f6f96cafd7b3f887e013557be041"><code>68201eb</code></a> Drop lazy_static for LazyLock</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/eaaaa56e717e19d6904645927a771abbeb9ae257"><code>eaaaa56</code></a> Switch to fastrand for bench shuffling</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/b19d84edafdb50a7207e2ce237f39f11092409fb"><code>b19d84e</code></a> Fix <code>clippy::needless_lifetimes</code></li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/4f62778c866ac27c7e460fec78163188c8fb8e5f"><code>4f62778</code></a> <code>impl FusedIterator for ExtractIf</code></li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/e09eaaf8e547ec56e564980b20f62b7c4d459fdd"><code>e09eaaf</code></a> Document and track <code>extract_if</code> panics</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/a8d7dc50a250971fe2203bdf23c2b5a307db7c86"><code>a8d7dc5</code></a> Add range support to <code>extract_if</code></li> <li>Additional commits viewable in <a href="https://github.com/indexmap-rs/indexmap/compare/2.9.0...2.10.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=indexmap&package-manager=cargo&previous-version=2.9.0&new-version=2.10.0)](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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
JakeStanger 2026-05-23 00:56:58 +01:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
JakeStanger/ironbar#5341
No description provided.