[PR #254] [MERGED] chore(deps): bump tracing from 0.1.36 to 0.1.37 #824

Closed
opened 2026-01-05 14:53:06 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/254
Author: @dependabot[bot]
Created: 10/10/2022
Status: Merged
Merged: 10/10/2022
Merged by: @LGUG2Z

Base: masterHead: dependabot/cargo/tracing-0.1.37


📝 Commits (1)

  • c256a56 chore(deps): bump tracing from 0.1.36 to 0.1.37

📊 Changes

1 file changed (+6 additions, -6 deletions)

View changed files

📝 Cargo.lock (+6 -6)

📄 Description

Bumps tracing from 0.1.36 to 0.1.37.

Release notes

Sourced from tracing's releases.

tracing 0.1.37

This release of tracing incorporates changes from tracing-core v0.1.30 and tracing-attributes v0.1.23, including the new Subscriber::on_register_dispatch method for performing late initialization after a Subscriber is registered as a Dispatch, and bugfixes for the #[instrument] attribute. Additionally, it fixes instances of the bare_trait_objects lint, which is now a warning on tracing's MSRV and will become an error in the next edition.

Fixed

  • attributes: Incorrect handling of inner attributes in #[instrument]ed functions (#2307)
  • attributes: Incorrect location of compiler diagnostic spans generated for type errors in #[instrument]ed async fns (#2270)
  • attributes: Updated syn dependency to fix compilation with -Z minimal-versions (#2246)
  • bare_trait_objects warning in valueset! macro expansion (#2308)

Added

  • core: Subscriber::on_register_dispatch method (#2269)
  • core: WeakDispatch type and Dispatch::downgrade() function (#2293)

Changed

  • tracing-core: updated to 0.1.30
  • tracing-attributes: updated to 0.1.23

Documented

Thanks to new contributors @​compiler-errors, @​e-nomem, @​WorldSEnder, @​Xiami2012, and @​tl-rodrigo-gryzinski, as well as @​jswrenn and @​CAD97, for contributing to this release!

#2246: tokio-rs/tracing#2246 #2269: tokio-rs/tracing#2269 #2283: tokio-rs/tracing#2283 #2270: tokio-rs/tracing#2270 #2293: tokio-rs/tracing#2293 #2307: tokio-rs/tracing#2307 #2308: tokio-rs/tracing#2308 #2331: tokio-rs/tracing#2331

Commits
  • 8e35927 tracing: prepare to release v0.1.37 (#2341)
  • 64b221d attributes: prepare to release v0.1.23 (#2340)
  • 92cb2f0 attributes: fix handling of inner attributes (#2307)
  • 8b01ea9 core: prepare to release v0.1.30 (#2339)
  • d7372d7 tracing: add reqwest-tracing to related crates in README (#2331)
  • 257f86f opentelemetry: fix metrics docs using value. instead of histogram. (#2326)
  • 130c499 subscriber: fix None layers setting the max level to OFF (#2321)
  • c542120 appender: add option to automatically delete old log files (#2323)
  • 37c2434 core: add Dispatch::downgrade() and WeakDispatch (#2293)
  • b740179 attributes: suppress dead code warnings for compile tests (#2322)
  • 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/LGUG2Z/komorebi/pull/254 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/10/2022 **Status:** ✅ Merged **Merged:** 10/10/2022 **Merged by:** [@LGUG2Z](https://github.com/LGUG2Z) **Base:** `master` ← **Head:** `dependabot/cargo/tracing-0.1.37` --- ### 📝 Commits (1) - [`c256a56`](https://github.com/LGUG2Z/komorebi/commit/c256a56477d9f2430e6cab31e9130e60306f3784) chore(deps): bump tracing from 0.1.36 to 0.1.37 ### 📊 Changes **1 file changed** (+6 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+6 -6) </details> ### 📄 Description Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.36 to 0.1.37. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tracing/releases">tracing's releases</a>.</em></p> <blockquote> <h2>tracing 0.1.37</h2> <p>This release of <code>tracing</code> incorporates changes from <code>tracing-core</code> <a href="https://github.com/tokio-rs/tracing/releases/tag/tracing-core-0.1.30">v0.1.30</a> and <code>tracing-attributes</code> <a href="https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.23">v0.1.23</a>, including the new <code>Subscriber::on_register_dispatch</code> method for performing late initialization after a <code>Subscriber</code> is registered as a <code>Dispatch</code>, and bugfixes for the <code>#[instrument]</code> attribute. Additionally, it fixes instances of the <code>bare_trait_objects</code> lint, which is now a warning on <code>tracing</code>'s MSRV and will become an error in the next edition.</p> <h3>Fixed</h3> <ul> <li><strong>attributes</strong>: Incorrect handling of inner attributes in <code>#[instrument]</code>ed functions (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2307">#2307</a>)</li> <li><strong>attributes</strong>: Incorrect location of compiler diagnostic spans generated for type errors in <code>#[instrument]</code>ed <code>async fn</code>s (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2270">#2270</a>)</li> <li><strong>attributes</strong>: Updated <code>syn</code> dependency to fix compilation with <code>-Z minimal-versions</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2246">#2246</a>)</li> <li><code>bare_trait_objects</code> warning in <code>valueset!</code> macro expansion (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2308">#2308</a>)</li> </ul> <h3>Added</h3> <ul> <li><strong>core</strong>: <code>Subscriber::on_register_dispatch</code> method (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2269">#2269</a>)</li> <li><strong>core</strong>: <code>WeakDispatch</code> type and <code>Dispatch::downgrade()</code> function (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2293">#2293</a>)</li> </ul> <h3>Changed</h3> <ul> <li><code>tracing-core</code>: updated to <a href="https://github.com/tokio-rs/tracing/releases/tag/tracing-core-0.1.30">0.1.30</a></li> <li><code>tracing-attributes</code>: updated to <a href="https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.23">0.1.23</a></li> </ul> <h3>Documented</h3> <ul> <li>Added <a href="https://crates.io/crates/tracing-web/"><code>tracing-web</code></a> and <a href="https://crates.io/crates/reqwest-tracing/"><code>reqwest-tracing</code></a> to related crates (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2283">#2283</a>, <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2331">#2331</a>)</li> </ul> <p>Thanks to new contributors <a href="https://github.com/compiler-errors"><code>@​compiler-errors</code></a>, <a href="https://github.com/e-nomem"><code>@​e-nomem</code></a>, <a href="https://github.com/WorldSEnder"><code>@​WorldSEnder</code></a>, <a href="https://github.com/Xiami2012"><code>@​Xiami2012</code></a>, and <a href="https://github.com/tl-rodrigo-gryzinski"><code>@​tl-rodrigo-gryzinski</code></a>, as well as <a href="https://github.com/jswrenn"><code>@​jswrenn</code></a> and <a href="https://github.com/CAD97"><code>@​CAD97</code></a>, for contributing to this release!</p> <p><a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2246">#2246</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/2246">tokio-rs/tracing#2246</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2269">#2269</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/2269">tokio-rs/tracing#2269</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2283">#2283</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/2283">tokio-rs/tracing#2283</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2270">#2270</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/2270">tokio-rs/tracing#2270</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2293">#2293</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/2293">tokio-rs/tracing#2293</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2307">#2307</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/2307">tokio-rs/tracing#2307</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2308">#2308</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/2308">tokio-rs/tracing#2308</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2331">#2331</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/2331">tokio-rs/tracing#2331</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tracing/commit/8e35927d7ef5bad3b20fd53592ddb951ae7bec91"><code>8e35927</code></a> tracing: prepare to release v0.1.37 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2341">#2341</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/64b221dc6485faec054ae740815130aa22708aba"><code>64b221d</code></a> attributes: prepare to release v0.1.23 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2340">#2340</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/92cb2f030029951032c4601b6396f42f633e3118"><code>92cb2f0</code></a> attributes: fix handling of inner attributes (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2307">#2307</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/8b01ea9b9c0dfc06ab101940c94e23934c4d4cc8"><code>8b01ea9</code></a> core: prepare to release v0.1.30 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2339">#2339</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/d7372d76b1f09057ab7401517eeaae744e65b4c7"><code>d7372d7</code></a> tracing: add <code>reqwest-tracing</code> to related crates in README (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2331">#2331</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/257f86f0920c52a58c25da60e6f0b7e8324da487"><code>257f86f</code></a> opentelemetry: fix metrics docs using <code>value.</code> instead of <code>histogram.</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2326">#2326</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/130c499b7c7db95da05b00b034224392ac6bdce5"><code>130c499</code></a> subscriber: fix <code>None</code> layers setting the max level to <code>OFF</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2321">#2321</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/c542120055d247950579a99963a91faba1af78b5"><code>c542120</code></a> appender: add option to automatically delete old log files (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2323">#2323</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/37c2434f214dc7cf6e526c306ded3263fe8a345b"><code>37c2434</code></a> core: add <code>Dispatch::downgrade()</code> and <code>WeakDispatch</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2293">#2293</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/b740179fc63a0638f5f4ea82c839000f101d1718"><code>b740179</code></a> attributes: suppress dead code warnings for compile tests (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/2322">#2322</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tracing/compare/tracing-0.1.36...tracing-0.1.37">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tracing&package-manager=cargo&previous-version=0.1.36&new-version=0.1.37)](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>
adam added the pull-request label 2026-01-05 14:53:06 +01:00
adam closed this issue 2026-01-05 14:53:06 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#824