[PR #1621] [MERGED] Bump parking_lot from 0.11.1 to 0.12.0 #2463

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1621
Author: @dependabot[bot]
Created: 1/31/2022
Status: Merged
Merged: 1/31/2022
Merged by: @djc

Base: mainHead: dependabot/cargo/parking_lot-0.12.0


📝 Commits (1)

  • 515c24e Bump parking_lot from 0.11.1 to 0.12.0

📊 Changes

2 files changed (+51 additions, -10 deletions)

View changed files

📝 Cargo.lock (+50 -9)
📝 crates/resolver/Cargo.toml (+1 -1)

📄 Description

Bumps parking_lot from 0.11.1 to 0.12.0.

Changelog

Sourced from parking_lot's changelog.

parking_lot 0.12.0, parking_lot_core 0.9.0, lock_api 0.4.6 (2022-01-28)

  • The MSRV is bumped to 1.49.0.
  • Disabled eventual fairness on wasm32-unknown-unknown. (#302)
  • Added a rwlock method to report if lock is held exclusively. (#303)
  • Use new asm! macro. (#304)
  • Use windows-rs instead of winapi for faster builds. (#311)
  • Moved hardware lock elision support to a separate Cargo feature. (#313)
  • Removed used of deprecated spin_loop_hint. (#314)

parking_lot 0.11.2, parking_lot_core 0.8.4, lock_api 0.4.5 (2021-08-28)

  • Fixed incorrect memory orderings on RwLock and WordLock. (#294, #292)
  • Added Arc-based lock guards. (#291)
  • Added workaround for TSan's lack of support for fence. (#292)

lock_api 0.4.4 (2021-05-01)

  • Update for latest nightly. (#281)

lock_api 0.4.3 (2021-04-03)

  • Added [Raw]ReentrantMutex::is_owned. (#280)

parking_lot_core 0.8.3 (2021-02-12)

  • Updated smallvec to 1.6. (#276)

parking_lot_core 0.8.2 (2020-12-21)

  • Fixed assertion failure on OpenBSD. (#270)

parking_lot_core 0.8.1 (2020-12-04)

  • Removed deprecated CloudABI support. (#263)
  • Fixed build on wasm32-unknown-unknown. (#265)
  • Relaxed dependency on smallvec. (#266)
Commits
  • a75875b Release parking_lot 0.12.0, parking_lot_core 0.9.0, lock_api 0.4.6
  • 78a16dd Minor fixes
  • 4d64bc6 Merge pull request #314 from Amanieu/spin_loop
  • a4e4a02 Only run CI for bors and pull requests
  • 930caab Use core::hint::spin_loop instead of the deprecated spin_loop_hint.
  • b3c9290 Merge pull request #313 from Amanieu/hle_feature
  • b271f84 Move hardware lock elision support to a separate Cargo feature
  • 8019473 Merge pull request #311 from clemenswasser/adopt-windows-rs
  • 1f94288 Adopt windows-rs
  • c73dd43 Merge pull request #309 from Amanieu/stable_asm
  • 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 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/1621 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/31/2022 **Status:** ✅ Merged **Merged:** 1/31/2022 **Merged by:** [@djc](https://github.com/djc) **Base:** `main` ← **Head:** `dependabot/cargo/parking_lot-0.12.0` --- ### 📝 Commits (1) - [`515c24e`](https://github.com/hickory-dns/hickory-dns/commit/515c24efae4b74ecc2af814edbd9d209d8d99e18) Bump parking_lot from 0.11.1 to 0.12.0 ### 📊 Changes **2 files changed** (+51 additions, -10 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+50 -9) 📝 `crates/resolver/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [parking_lot](https://github.com/Amanieu/parking_lot) from 0.11.1 to 0.12.0. <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>parking_lot 0.12.0, parking_lot_core 0.9.0, lock_api 0.4.6 (2022-01-28)</h2> <ul> <li>The MSRV is bumped to 1.49.0.</li> <li>Disabled eventual fairness on wasm32-unknown-unknown. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/302">#302</a>)</li> <li>Added a rwlock method to report if lock is held exclusively. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/303">#303</a>)</li> <li>Use new <code>asm!</code> macro. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/304">#304</a>)</li> <li>Use windows-rs instead of winapi for faster builds. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/311">#311</a>)</li> <li>Moved hardware lock elision support to a separate Cargo feature. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/313">#313</a>)</li> <li>Removed used of deprecated <code>spin_loop_hint</code>. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/314">#314</a>)</li> </ul> <h2>parking_lot 0.11.2, parking_lot_core 0.8.4, lock_api 0.4.5 (2021-08-28)</h2> <ul> <li>Fixed incorrect memory orderings on <code>RwLock</code> and <code>WordLock</code>. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/294">#294</a>, <a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/292">#292</a>)</li> <li>Added <code>Arc</code>-based lock guards. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/291">#291</a>)</li> <li>Added workaround for TSan's lack of support for <code>fence</code>. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/292">#292</a>)</li> </ul> <h2>lock_api 0.4.4 (2021-05-01)</h2> <ul> <li>Update for latest nightly. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/281">#281</a>)</li> </ul> <h2>lock_api 0.4.3 (2021-04-03)</h2> <ul> <li>Added <code>[Raw]ReentrantMutex::is_owned</code>. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/280">#280</a>)</li> </ul> <h2>parking_lot_core 0.8.3 (2021-02-12)</h2> <ul> <li>Updated smallvec to 1.6. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/276">#276</a>)</li> </ul> <h2>parking_lot_core 0.8.2 (2020-12-21)</h2> <ul> <li>Fixed assertion failure on OpenBSD. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/270">#270</a>)</li> </ul> <h2>parking_lot_core 0.8.1 (2020-12-04)</h2> <ul> <li>Removed deprecated CloudABI support. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/263">#263</a>)</li> <li>Fixed build on wasm32-unknown-unknown. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/265">#265</a>)</li> <li>Relaxed dependency on <code>smallvec</code>. (<a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/266">#266</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Amanieu/parking_lot/commit/a75875b0bf904287a9749e8eabea919b5e9dd8a9"><code>a75875b</code></a> Release parking_lot 0.12.0, parking_lot_core 0.9.0, lock_api 0.4.6</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/78a16dd4d54cc4466c13f44b820eb3fff6ae7cfc"><code>78a16dd</code></a> Minor fixes</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/4d64bc6aac80bb997a995ee4efa2c7e096024b49"><code>4d64bc6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/314">#314</a> from Amanieu/spin_loop</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/a4e4a021dc4efe2c327777ef85c13f0716675766"><code>a4e4a02</code></a> Only run CI for bors and pull requests</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/930caab8f9857fd1965a6392378edc6967b5a355"><code>930caab</code></a> Use core::hint::spin_loop instead of the deprecated spin_loop_hint.</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/b3c929022ea4a535c67cede9d7ba54b72bfd6892"><code>b3c9290</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/313">#313</a> from Amanieu/hle_feature</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/b271f842b9de134eaab748edd8bc4c553ee0fea1"><code>b271f84</code></a> Move hardware lock elision support to a separate Cargo feature</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/80194730f2104fa5ca92fe17a619b57d0677ece7"><code>8019473</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/311">#311</a> from clemenswasser/adopt-windows-rs</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/1f942889c3df8d8007b3860d2bc2163575f1b520"><code>1f94288</code></a> Adopt windows-rs</li> <li><a href="https://github.com/Amanieu/parking_lot/commit/c73dd439ce9031c1aa4b6d4e1fbe79e2b902367a"><code>c73dd43</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/309">#309</a> from Amanieu/stable_asm</li> <li>Additional commits viewable in <a href="https://github.com/Amanieu/parking_lot/compare/0.11.1...0.12.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=parking_lot&package-manager=cargo&previous-version=0.11.1&new-version=0.12.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 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 08:55:11 +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#2463
No description provided.