[PR #3301] [MERGED] build(deps): bump parking_lot from 0.12.4 to 0.12.5 #3725

Closed
opened 2026-03-16 11:59:24 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/3301
Author: @dependabot[bot]
Created: 10/6/2025
Status: Merged
Merged: 10/6/2025
Merged by: @divergentdave

Base: mainHead: dependabot/cargo/parking_lot-0.12.5


📝 Commits (1)

  • 431eee6 build(deps): bump parking_lot from 0.12.4 to 0.12.5

📊 Changes

1 file changed (+7 additions, -8 deletions)

View changed files

📝 Cargo.lock (+7 -8)

📄 Description

Bumps parking_lot from 0.12.4 to 0.12.5.

Changelog

Sourced from parking_lot's changelog.

parking_lot - 0.12.5 - 2025-09-30

  • Bumped MSRV to 1.71
  • Fixed Miri when the hardware-lock-elision feature is enabled (#491)
  • Added missing into_arc(_fair) methods (#472)
  • Fixed RawRwLock::bump_*() not releasing lock when there are multiple readers (#471)

parking_lot_core - 0.9.12 - 2025-09-30

  • Bumped MSRV to 1.71
  • Switched from windows-targets to windows-link. (#493)
  • Replaced thread-id dependency with std::thread::ThreadId (#483)
  • Added SGX implementation for ThreadParker.park_until (#481)

lock_api - 0.4.14 - 2025-09-30

  • Fixed use of doc_cfg when building on docs.rs.
  • Bumped MSRV to 1.71
  • Added #[track_caller] where locking implementations could feasibly need to panic
  • Added try_map_or_err to various mutex guards (#480)
  • Removed unnecessary build script and autocfg dependency (#474)
  • Added missing into_arc(_fair) methods (#472)
Commits
  • d7828ff chore: release
  • 73365ad Merge pull request #495 from mbrobbel/doc_auto_cfg
  • 0b5585a Replace doc_auto_cfg with doc_cfg
  • c7b7dc7 Merge pull request #493 from a1phyr/windows_link
  • 07c2d40 Update MSRV to 1.71
  • 345cf7a Switch from windows-targets to windows-link
  • eeb186c Merge pull request #491 from AaronKutch/fix_assembly_on_miri
  • a7d328e do not use elision on Miri even if feature is enabled
  • 739d370 Merge pull request #487 from sola-contrib/replace-winapi
  • ed4ae93 Replace winapi with windows-sys in benchmark crate
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
parking_lot [< 0.12, > 0.11.1]

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/hickory-dns/hickory-dns/pull/3301 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/6/2025 **Status:** ✅ Merged **Merged:** 10/6/2025 **Merged by:** [@divergentdave](https://github.com/divergentdave) **Base:** `main` ← **Head:** `dependabot/cargo/parking_lot-0.12.5` --- ### 📝 Commits (1) - [`431eee6`](https://github.com/hickory-dns/hickory-dns/commit/431eee6b66f863d08635f11c8930582f0cbb7a02) build(deps): bump parking_lot from 0.12.4 to 0.12.5 ### 📊 Changes **1 file changed** (+7 additions, -8 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+7 -8) </details> ### 📄 Description Bumps [parking_lot](https://github.com/Amanieu/parking_lot) from 0.12.4 to 0.12.5. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md">parking_lot's changelog</a>.</em></p> <blockquote> <h2><code>parking_lot</code> - <a href="https://github.com/Amanieu/parking_lot/compare/parking_lot-v0.12.4...parking_lot-v0.12.5">0.12.5</a> - 2025-09-30</h2> <ul> <li>Bumped MSRV to 1.71</li> <li>Fixed Miri when the <code>hardware-lock-elision</code> feature is enabled (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/491">#491</a>)</li> <li>Added missing <code>into_arc(_fair)</code> methods (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/472">#472</a>)</li> <li>Fixed <code>RawRwLock::bump_*()</code> not releasing lock when there are multiple readers (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/471">#471</a>)</li> </ul> <h2><code>parking_lot_core</code> - <a href="https://github.com/Amanieu/parking_lot/compare/parking_lot_core-v0.9.11...parking_lot_core-v0.9.12">0.9.12</a> - 2025-09-30</h2> <ul> <li>Bumped MSRV to 1.71</li> <li>Switched from <code>windows-targets</code> to <code>windows-link</code>. (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/493">#493</a>)</li> <li>Replaced <code>thread-id</code> dependency with <code>std::thread::ThreadId</code> (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/483">#483</a>)</li> <li>Added SGX implementation for <code>ThreadParker.park_until</code> (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/481">#481</a>)</li> </ul> <h2><code>lock_api</code> - <a href="https://github.com/Amanieu/parking_lot/compare/lock_api-v0.4.13...lock_api-v0.4.14">0.4.14</a> - 2025-09-30</h2> <ul> <li>Fixed use of <code>doc_cfg</code> when building on docs.rs.</li> <li>Bumped MSRV to 1.71</li> <li>Added <code>#[track_caller]</code> where locking implementations could feasibly need to panic</li> <li>Added <code>try_map_or_err</code> to various mutex guards (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/480">#480</a>)</li> <li>Removed unnecessary build script and <code>autocfg</code> dependency (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/474">#474</a>)</li> <li>Added missing <code>into_arc(_fair)</code> methods (<a href="https://redirect.github.com/Amanieu/parking_lot/issues/472">#472</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Amanieu/parking_lot/commit/d7828fff7b5d6327ae608e82db45f888b344449a"><code>d7828ff</code></a> chore: release</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/73365ad59b6425bf6afc5baa0c90afd11e8c02c3"><code>73365ad</code></a> Merge pull request <a href="https://redirect.github.com/Amanieu/parking_lot/issues/495">#495</a> from mbrobbel/doc_auto_cfg</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/0b5585a17f35be7ffc9e5fc332082258a9fff7d4"><code>0b5585a</code></a> Replace <code>doc_auto_cfg</code> with <code>doc_cfg</code></li> <li><a href="https://github.com/Amanieu/parking_lot/commit/c7b7dc730d31c0fb5471303a5231c07342ce61ee"><code>c7b7dc7</code></a> Merge pull request <a href="https://redirect.github.com/Amanieu/parking_lot/issues/493">#493</a> from a1phyr/windows_link</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/07c2d4020da52c0e6a424f099d7ca5855f1912aa"><code>07c2d40</code></a> Update MSRV to 1.71</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/345cf7a0eb7f0ac25e6e50679649d48a03f548a4"><code>345cf7a</code></a> Switch from <code>windows-targets</code> to <code>windows-link</code></li> <li><a href="https://github.com/Amanieu/parking_lot/commit/eeb186c48c8e6433c10f7552ef1cd1d56e5c83b1"><code>eeb186c</code></a> Merge pull request <a href="https://redirect.github.com/Amanieu/parking_lot/issues/491">#491</a> from AaronKutch/fix_assembly_on_miri</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/a7d328e9c40cfbcb6578977c40b531d21a1c3263"><code>a7d328e</code></a> do not use elision on Miri even if feature is enabled</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/739d370a809878e45021f6de21b32a0dba4520de"><code>739d370</code></a> Merge pull request <a href="https://redirect.github.com/Amanieu/parking_lot/issues/487">#487</a> from sola-contrib/replace-winapi</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/ed4ae932cef1fb9e6e84fb50358a2556c14c4fd5"><code>ed4ae93</code></a> Replace winapi with windows-sys in benchmark crate</li> <li>Additional commits viewable in <a href="https://github.com/Amanieu/parking_lot/compare/parking_lot-v0.12.4...parking_lot-v0.12.5">compare view</a></li> </ul> </details> <br /> <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | parking_lot | [< 0.12, > 0.11.1] | </details> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=parking_lot&package-manager=cargo&previous-version=0.12.4&new-version=0.12.5)](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>
kerem 2026-03-16 11:59:24 +03: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
starred/hickory-dns#3725
No description provided.