[PR #65] [CLOSED] chore(deps): bump tracing-subscriber from 0.2.25 to 0.3.1 #726

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

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/65
Author: @dependabot[bot]
Created: 11/1/2021
Status: Closed

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


📝 Commits (1)

  • 1133145 chore(deps): bump tracing-subscriber from 0.2.25 to 0.3.1

📊 Changes

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

View changed files

📝 Cargo.lock (+10 -50)
📝 komorebi/Cargo.toml (+1 -1)

📄 Description

Bumps tracing-subscriber from 0.2.25 to 0.3.1.

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber v0.3.0

0.3.0 (Oct 22, 2021)

This is a breaking release of tracing-subscriber. The primary breaking change in this release is the removal of the dependency on the [chrono crate], due to [RUSTSEC-2020-0159]. To replace chrono, support is added for formatting timestamps using the [time crate] instead.

In addition, this release includes a number of other breaking API changes, such as adding (limited) support for #![no_std] targets, removing previously deprecated APIs, and more.

Breaking Changes

  • Removed APIs deprecated in the v0.2.x release series.

  • Renamed Layer::new_span to Layer::on_new_span (#1674)

  • Removed Layer impl for Arc<L: Layer<S>> and Arc<dyn Layer<S> + ...> (#1649)

  • Replaced the [chrono crate] with the [time crate] for timestamp formatting, to resolve [RUSTSEC-2020-0159] (#1646)

  • Removed json and env-filter from default features. They must now be enabled explicitly (#1647)

  • Changed FormatEvent::format_event and FormatFields::format_fields trait methods to take a Writer type, rather than a &mut dyn fmt::Write trait object (#1661)

  • Changed the signature of the MakeWriter trait by adding a lifetime parameter (#781)

    Changed

  • layer: Renamed Layer::new_span to Layer::on_new_span (#1674)

  • fmt: Changed FormatEvent::format_event and FormatFields::format_fields trait methods to take a Writer type, rather than a &mut dyn fmt::Write trait object (#1661)

  • json, env-filter: json and env-filter feature flags are no longer enabled by default (#1647)

    Removed

  • Removed deprecated CurrentSpan type (#1320)

  • registry: Removed deprecated SpanRef::parents iterator, replaced by SpanRef::scope in #1431 ([#1648)])

  • layer: Removed deprecated Context::scope iterator, replaced by Context::span_scope and Context::event_scope in #1431 and #1434 (#1648)

  • layer: Removed Layer impl for Arc<L: Layer<S>> and Arc<dyn Layer<S> + ...>. These interfere with per-layer filtering. (#1649)

  • fmt: Removed deprecated LayerBuilder type (#1673)

  • fmt: Removed fmt::Layer::on_event (renamed to fmt::Layer::fmt_event) (#1673)

... (truncated)

Commits

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/65 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/1/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/tracing-subscriber-0.3.1` --- ### 📝 Commits (1) - [`1133145`](https://github.com/LGUG2Z/komorebi/commit/11331455551e148d9a77d5123f4cc63d85e386dd) chore(deps): bump tracing-subscriber from 0.2.25 to 0.3.1 ### 📊 Changes **2 files changed** (+11 additions, -51 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+10 -50) 📝 `komorebi/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [tracing-subscriber](https://github.com/tokio-rs/tracing) from 0.2.25 to 0.3.1. <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 v0.3.0</h2> <h1>0.3.0 (Oct 22, 2021)</h1> <p>This is a breaking release of <code>tracing-subscriber</code>. The primary breaking change in this release is the removal of the dependency on the [<code>chrono</code> crate], due to [RUSTSEC-2020-0159]. To replace <code>chrono</code>, support is added for formatting timestamps using the [<code>time</code> crate] instead.</p> <p>In addition, this release includes a number of other breaking API changes, such as adding (limited) support for <code>#![no_std]</code> targets, removing previously deprecated APIs, and more.</p> <h3>Breaking Changes</h3> <ul> <li> <p>Removed APIs deprecated in the v0.2.x release series.</p> </li> <li> <p>Renamed <code>Layer::new_span</code> to <code>Layer::on_new_span</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1674">#1674</a>)</p> </li> <li> <p>Removed <code>Layer</code> impl for <code>Arc&lt;L: Layer&lt;S&gt;&gt;</code> and <code>Arc&lt;dyn Layer&lt;S&gt; + ...&gt;</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1649">#1649</a>)</p> </li> <li> <p>Replaced the [<code>chrono</code> crate] with the [<code>time</code> crate] for timestamp formatting, to resolve [RUSTSEC-2020-0159] (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1646">#1646</a>)</p> </li> <li> <p>Removed <code>json</code> and <code>env-filter</code> from default features. They must now be enabled explicitly (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1647">#1647</a>)</p> </li> <li> <p>Changed <code>FormatEvent::format_event</code> and <code>FormatFields::format_fields</code> trait methods to take a <code>Writer</code> type, rather than a <code>&amp;mut dyn fmt::Write</code> trait object (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1661">#1661</a>)</p> </li> <li> <p>Changed the signature of the <code>MakeWriter</code> trait by adding a lifetime parameter (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/781">#781</a>)</p> <h3>Changed</h3> </li> <li> <p><strong>layer</strong>: Renamed <code>Layer::new_span</code> to <code>Layer::on_new_span</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1674">#1674</a>)</p> </li> <li> <p><strong>fmt</strong>: Changed <code>FormatEvent::format_event</code> and <code>FormatFields::format_fields</code> trait methods to take a <code>Writer</code> type, rather than a <code>&amp;mut dyn fmt::Write</code> trait object (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1661">#1661</a>)</p> </li> <li> <p><strong>json</strong>, <strong>env-filter</strong>: <code>json</code> and <code>env-filter</code> feature flags are no longer enabled by default (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1647">#1647</a>)</p> <h3>Removed</h3> </li> <li> <p>Removed deprecated <code>CurrentSpan</code> type (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1320">#1320</a>)</p> </li> <li> <p><strong>registry</strong>: Removed deprecated <code>SpanRef::parents</code> iterator, replaced by <code>SpanRef::scope</code> in <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1431">#1431</a> ([#1648)])</p> </li> <li> <p><strong>layer</strong>: Removed deprecated <code>Context::scope</code> iterator, replaced by <code>Context::span_scope</code> and <code>Context::event_scope</code> in <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1431">#1431</a> and <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1434">#1434</a> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1648">#1648</a>)</p> </li> <li> <p><strong>layer</strong>: Removed <code>Layer</code> impl for <code>Arc&lt;L: Layer&lt;S&gt;&gt;</code> and <code>Arc&lt;dyn Layer&lt;S&gt; + ...&gt;</code>. These interfere with per-layer filtering. (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1649">#1649</a>)</p> </li> <li> <p><strong>fmt</strong>: Removed deprecated <code>LayerBuilder</code> type (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1673">#1673</a>)</p> </li> <li> <p><strong>fmt</strong>: Removed <code>fmt::Layer::on_event</code> (renamed to <code>fmt::Layer::fmt_event</code>) (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1673">#1673</a>)</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tracing/commit/2f809784ba6c9a71b4e53a66af77051495edc9b0"><code>2f80978</code></a> subscriber: prepare to release v0.3.1 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1687">#1687</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/94ca5e766895a7f8d57988d61f77cd079ca86429"><code>94ca5e7</code></a> subscriber: fix unused method warnings for <code>Extensions</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1686">#1686</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/fd12ae14b480f3f1eff2698c493b7ab31ecc3931"><code>fd12ae1</code></a> subscriber: fix <code>LocalTime</code> being re-exported by the <code>time</code> feature (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1685">#1685</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/e65c78b8e07f693b8b0e03a633fecc9006454595"><code>e65c78b</code></a> error: prepare to release v0.2.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1681">#1681</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/45fd4f967d679f4f001803aa7284a0d72addc705"><code>45fd4f9</code></a> opentelemetry: prepare to release v0.16.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1682">#1682</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/007ca8ee88bcbbfd476cfe4323c06c8158964dc1"><code>007ca8e</code></a> journald: prepare to release v0.2.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1679">#1679</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/aaa419b90ac92e903944ed8e5c96e87dda1d2f41"><code>aaa419b</code></a> appender: prepare to release v0.2.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1678">#1678</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/4e56741c65eb130a91e8d9c4a8a8b332ed02e44b"><code>4e56741</code></a> subscriber: prepare to release v0.3.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1677">#1677</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/f461c5bbd0ff4deffe14efb6480a8e53af5739ee"><code>f461c5b</code></a> appender: fix compilation 32-bit platforms like PowerPC (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1675">#1675</a>)</li> <li><a href="https://github.com/tokio-rs/tracing/commit/8777d2c925d8ab5625ef95944758587eb7e74c46"><code>8777d2c</code></a> subscriber: rename <code>Layer::new_span</code> to <code>on_new_span</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1674">#1674</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.2.25...tracing-subscriber-0.3.1">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.2.25&new-version=0.3.1)](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:52:45 +01:00
adam closed this issue 2026-01-05 14:52:45 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#726