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)
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<L: Layer<S>></code> and <code>Arc<dyn Layer<S> + ...></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>&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>&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<L: Layer<S>></code> and <code>Arc<dyn Layer<S> + ...></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 />
[](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>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/LGUG2Z/komorebi/pull/65
Author: @dependabot[bot]
Created: 11/1/2021
Status: ❌ Closed
Base:
master← Head:dependabot/cargo/tracing-subscriber-0.3.1📝 Commits (1)
1133145chore(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.
... (truncated)
Commits
2f80978subscriber: prepare to release v0.3.1 (#1687)94ca5e7subscriber: fix unused method warnings forExtensions(#1686)fd12ae1subscriber: fixLocalTimebeing re-exported by thetimefeature (#1685)e65c78berror: prepare to release v0.2.0 (#1681)45fd4f9opentelemetry: prepare to release v0.16.0 (#1682)007ca8ejournald: prepare to release v0.2.0 (#1679)aaa419bappender: prepare to release v0.2.0 (#1678)4e56741subscriber: prepare to release v0.3.0 (#1677)f461c5bappender: fix compilation 32-bit platforms like PowerPC (#1675)8777d2csubscriber: renameLayer::new_spantoon_new_span(#1674)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.