[PR #409] [MERGED] chore(deps): bump tracing-subscriber from 0.3.16 to 0.3.17 #914

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

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/409
Author: @dependabot[bot]
Created: 4/24/2023
Status: Merged
Merged: 4/24/2023
Merged by: @LGUG2Z

Base: masterHead: dependabot/cargo/tracing-subscriber-0.3.17


📝 Commits (1)

  • 1bec80f chore(deps): bump tracing-subscriber from 0.3.16 to 0.3.17

📊 Changes

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

View changed files

📝 Cargo.lock (+2 -2)

📄 Description

Bumps tracing-subscriber from 0.3.16 to 0.3.17.

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.17

This release of tracing-subscriber fixes a build error when using env-filter with recent versions of the regex crate. It also introduces several minor API improvements.

Fixed

  • env-filter: Add "unicode-case" and "unicode-perl" to the regex dependency, fixing a build error with recent versions of regex (#2566)
  • A number of minor documentation typos and other fixes (#2384, #2378, #2368, #2548)

Added

  • filter: Add fmt::Display impl for filter::Targets (#2343)
  • fmt: Made with_ansi(false) no longer require the "ansi" feature, so that ANSI formatting escapes can be disabled without requiring ANSI-specific dependencies (#2532)

Changed

  • fmt: Dim targets in the Compact formatter, matching the default formatter (#2409)

Thanks to @​keepsimple1, @​andrewhalle, @​LeoniePhiline, @​LukeMathWalker, @​howardjohn, @​daxpedda, and @​dbidwell94 for contributing to this release!

#2566: tokio-rs/tracing#2566 #2384: tokio-rs/tracing#2384 #2378: tokio-rs/tracing#2378 #2368: tokio-rs/tracing#2368 #2548: tokio-rs/tracing#2548 #2343: tokio-rs/tracing#2343 #2532: tokio-rs/tracing#2532 #2409: tokio-rs/tracing#2409

Commits
  • 0114ec1 subscriber: prepare to release v0.3.17 (#2571)
  • 53989b4 chore: fix rustfmt
  • 2235570 subscriber: add "unicode-case" and "unicode-perl" features to regex depende...
  • b9becf9 attributes: update UI tests with the latest stable version of Rust (#2568)
  • 3a65354 tracing, tracing-futures: instrument Future inside Drop (#2562)
  • 29d85b1 mock: move layer mock from tracing-subscriber tests (#2369)
  • 049ad73 subscriber: add ability to disable ANSI without crate feature (#2532)
  • a066c36 attributes: update to syn 2.0 (#2516)
  • 27eecd5 attributes: remove unused syn's feature visit (#2530)
  • cbafd75 Remove dep cfg-if from tracing (#2553)
  • 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/409 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 4/24/2023 **Status:** ✅ Merged **Merged:** 4/24/2023 **Merged by:** [@LGUG2Z](https://github.com/LGUG2Z) **Base:** `master` ← **Head:** `dependabot/cargo/tracing-subscriber-0.3.17` --- ### 📝 Commits (1) - [`1bec80f`](https://github.com/LGUG2Z/komorebi/commit/1bec80fcd7e63deb34b892ed70bfe027e169e464) chore(deps): bump tracing-subscriber from 0.3.16 to 0.3.17 ### 📊 Changes **1 file changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) </details> ### 📄 Description Bumps [tracing-subscriber](https://github.com/tokio-rs/tracing) from 0.3.16 to 0.3.17. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tracing/releases">tracing-subscriber's releases</a>.</em></p> <blockquote> <h2>tracing-subscriber 0.3.17</h2> <p>This release of <code>tracing-subscriber</code> fixes a build error when using <code>env-filter</code> with recent versions of the <code>regex</code> crate. It also introduces several minor API improvements.</p> <h3>Fixed</h3> <ul> <li><strong>env-filter</strong>: Add &quot;unicode-case&quot; and &quot;unicode-perl&quot; to the <code>regex</code> dependency, fixing a build error with recent versions of <code>regex</code> (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2566">#2566</a>)</li> <li>A number of minor documentation typos and other fixes (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2384">#2384</a>, <a href="https://redirect.github.com/tokio-rs/tracing/issues/2378">#2378</a>, <a href="https://redirect.github.com/tokio-rs/tracing/issues/2368">#2368</a>, <a href="https://redirect.github.com/tokio-rs/tracing/issues/2548">#2548</a>)</li> </ul> <h3>Added</h3> <ul> <li><strong>filter</strong>: Add <code>fmt::Display</code> impl for <code>filter::Targets</code> (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2343">#2343</a>)</li> <li><strong>fmt</strong>: Made <code>with_ansi(false)</code> no longer require the &quot;ansi&quot; feature, so that ANSI formatting escapes can be disabled without requiring ANSI-specific dependencies (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2532">#2532</a>)</li> </ul> <h3>Changed</h3> <ul> <li><strong>fmt</strong>: Dim targets in the <code>Compact</code> formatter, matching the default formatter (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2409">#2409</a>)</li> </ul> <p>Thanks to <a href="https://github.com/keepsimple1"><code>@​keepsimple1</code></a>, <a href="https://github.com/andrewhalle"><code>@​andrewhalle</code></a>, <a href="https://github.com/LeoniePhiline"><code>@​LeoniePhiline</code></a>, <a href="https://github.com/LukeMathWalker"><code>@​LukeMathWalker</code></a>, <a href="https://github.com/howardjohn"><code>@​howardjohn</code></a>, <a href="https://github.com/daxpedda"><code>@​daxpedda</code></a>, and <a href="https://github.com/dbidwell94"><code>@​dbidwell94</code></a> for contributing to this release!</p> <p><a href="https://redirect.github.com/tokio-rs/tracing/issues/2566">#2566</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2566">tokio-rs/tracing#2566</a> <a href="https://redirect.github.com/tokio-rs/tracing/issues/2384">#2384</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2384">tokio-rs/tracing#2384</a> <a href="https://redirect.github.com/tokio-rs/tracing/issues/2378">#2378</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2378">tokio-rs/tracing#2378</a> <a href="https://redirect.github.com/tokio-rs/tracing/issues/2368">#2368</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2368">tokio-rs/tracing#2368</a> <a href="https://redirect.github.com/tokio-rs/tracing/issues/2548">#2548</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2548">tokio-rs/tracing#2548</a> <a href="https://redirect.github.com/tokio-rs/tracing/issues/2343">#2343</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2343">tokio-rs/tracing#2343</a> <a href="https://redirect.github.com/tokio-rs/tracing/issues/2532">#2532</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2532">tokio-rs/tracing#2532</a> <a href="https://redirect.github.com/tokio-rs/tracing/issues/2409">#2409</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2409">tokio-rs/tracing#2409</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tracing/commit/0114ec1cf56e01e79b2e429e77c660457711d263"><code>0114ec1</code></a> subscriber: prepare to release v0.3.17 (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2571">#2571</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/53989b422c25282dd6fb57d5f8364ae75d74e930"><code>53989b4</code></a> chore: fix rustfmt</li> <li><a href="https://github.com/tokio-rs/tracing/commit/22355704ea0a33300fb959669d76943762383165"><code>2235570</code></a> subscriber: add &quot;unicode-case&quot; and &quot;unicode-perl&quot; features to <code>regex</code> depende...</li> <li><a href="https://github.com/tokio-rs/tracing/commit/b9becf90fe29a72e21cc676e5ac1a57d8f71aab0"><code>b9becf9</code></a> attributes: update UI tests with the latest stable version of Rust (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2568">#2568</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/3a65354837a0f176178e15787fc700dd6fa11a92"><code>3a65354</code></a> tracing, tracing-futures: instrument <code>Future</code> inside <code>Drop</code> (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2562">#2562</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/29d85b1adbac6e2b2f8c2ab396f6ed18765d7d66"><code>29d85b1</code></a> mock: move layer mock from tracing-subscriber tests (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2369">#2369</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/049ad730c1baee8821ebfec45dda6f4a40a4ce4f"><code>049ad73</code></a> subscriber: add ability to disable ANSI without crate feature (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2532">#2532</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/a066c36729688133a5b4f04fa4e874a4b28343e6"><code>a066c36</code></a> attributes: update to syn 2.0 (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2516">#2516</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/27eecd5fd718c140da85c214021937caf25b2a06"><code>27eecd5</code></a> attributes: remove unused syn's feature visit (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2530">#2530</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/cbafd7527d196632cb778b451b5f83ae80762c93"><code>cbafd75</code></a> Remove dep <code>cfg-if</code> from tracing (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2553">#2553</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.16...tracing-subscriber-0.3.17">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tracing-subscriber&package-manager=cargo&previous-version=0.3.16&new-version=0.3.17)](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:24 +01:00
adam closed this issue 2026-01-05 14:53:24 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#914