This release adds several additional features to the tracing macros. In
addition, it updates the tracing-core dependency to [v0.1.32][core-0.1.32] and
the tracing-attributes dependency to [v0.1.27][attrs-0.1.27].
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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
@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/562
**Author:** [@dependabot[bot]](https://github.com/apps/dependabot)
**Created:** 10/16/2023
**Status:** ✅ Merged
**Merged:** 10/20/2023
**Merged by:** [@LGUG2Z](https://github.com/LGUG2Z)
**Base:** `master` ← **Head:** `dependabot/cargo/tracing-0.1.39`
---
### 📝 Commits (1)
- [`67dac84`](https://github.com/LGUG2Z/komorebi/commit/67dac844da1a6ec3ceb44224fd8d0a236e7d1ac9) chore(deps): bump tracing from 0.1.37 to 0.1.39
### 📊 Changes
**1 file changed** (+6 additions, -7 deletions)
<details>
<summary>View changed files</summary>
📝 `Cargo.lock` (+6 -7)
</details>
### 📄 Description
Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.37 to 0.1.39.
<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.39</h2>
<p>This release adds several additional features to the <code>tracing</code> macros. In
addition, it updates the <code>tracing-core</code> dependency to [v0.1.32][core-0.1.32] and
the <code>tracing-attributes</code> dependency to [v0.1.27][attrs-0.1.27].</p>
<h3>Added</h3>
<ul>
<li>Allow constant field names in macros (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2617">#2617</a>)</li>
<li>Allow setting event names in macros (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2699">#2699</a>)</li>
<li><strong>core</strong>: Allow <code>ValueSet</code>s of any length (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2508">#2508</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li><code>tracing-attributes</code>: updated to [0.1.27][attrs-0.1.27]</li>
<li><code>tracing-core</code>: updated to [0.1.32][core-0.1.32]</li>
<li><strong>attributes</strong>: Bump minimum version of proc-macro2 to 1.0.60 (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2732">#2732</a>)</li>
<li><strong>attributes</strong>: Generate less dead code for async block return type hint (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2709">#2709</a>)</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Use fully qualified names in macros for items exported from std prelude
(<a href="https://redirect.github.com/tokio-rs/tracing/issues/2621">#2621</a>, <a href="https://redirect.github.com/tokio-rs/tracing/issues/2757">#2757</a>)</li>
<li><strong>attributes</strong>: Allow [<code>clippy::let_with_type_underscore</code>] in macro-generated
code (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2609">#2609</a>)</li>
<li><strong>attributes</strong>: Allow <code>unknown_lints</code> in macro-generated code (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2626">#2626</a>)</li>
<li><strong>attributes</strong>: Fix a compilation error in <code>#[instrument]</code> when the <code>"log"</code>
feature is enabled (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2599">#2599</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Add <code>axum-insights</code> to relevant crates. (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2713">#2713</a>)</li>
<li>Fix link to RAI pattern crate documentation (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2612">#2612</a>)</li>
<li>Fix docs typos and warnings (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2581">#2581</a>)</li>
<li>Add <code>clippy-tracing</code> to related crates (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2628">#2628</a>)</li>
<li>Add <code>tracing-cloudwatch</code> to related crates (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2667">#2667</a>)</li>
<li>Fix deadlink to <code>tracing-etw</code> repo (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2602">#2602</a>)</li>
</ul>
<p><a href="https://redirect.github.com/tokio-rs/tracing/issues/2617">#2617</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2617">tokio-rs/tracing#2617</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2699">#2699</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2699">tokio-rs/tracing#2699</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2508">#2508</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2508">tokio-rs/tracing#2508</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2621">#2621</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2621">tokio-rs/tracing#2621</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2713">#2713</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2713">tokio-rs/tracing#2713</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2581">#2581</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2581">tokio-rs/tracing#2581</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2628">#2628</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2628">tokio-rs/tracing#2628</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2667">#2667</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2667">tokio-rs/tracing#2667</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2602">#2602</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2602">tokio-rs/tracing#2602</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2626">#2626</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2626">tokio-rs/tracing#2626</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2757">#2757</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2757">tokio-rs/tracing#2757</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2732">#2732</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2732">tokio-rs/tracing#2732</a>
<a href="https://redirect.github.com/tokio-rs/tracing/issues/2709">#2709</a>: <a href="https://redirect.github.com/tokio-rs/tracing/pull/2709">tokio-rs/tracing#2709</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tokio-rs/tracing/commit/4b99457c876d7a9d1865b4d3f5cefb87cd522750"><code>4b99457</code></a> chore: prepare tracing 0.1.39 (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2755">#2755</a>)</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/b2a5e11e242e53e96adec1023687760140f7e65c"><code>b2a5e11</code></a> tracing: update core to v0.1.31 and attributes to v0.1.27</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/3825a50c1afbbbebf4339c947f489b0f923dd450"><code>3825a50</code></a> tracing: use full path when calling <code>format_args!</code> (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2757">#2757</a>)</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/c4b2a56937dd40aaa2e2991636eca6748353201f"><code>c4b2a56</code></a> chore: prepare tracing-core 0.1.32 (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2754">#2754</a>)</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/2502f19d934b092fc01bb7493eacbb16b4038bf3"><code>2502f19</code></a> chore: prepare tracing-attributes 0.1.27 (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2756">#2756</a>)</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/90487620d8fd4b0a44e6a0385bda3643bf6f19a2"><code>9048762</code></a> Revert "log: update to env_logger 0.10 to fix GHSA-g98v-hv3f-hcfr (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2740">#2740</a>)" (#...</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/6ba5af2ce2a814fea521d2d0a5ea1e88d7b6011e"><code>6ba5af2</code></a> docs: remove mention of <code>Registration</code> on v0.1.x (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2753">#2753</a>)</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/11aac9a07c4aac35b12ea82d8a5b1cb00a118928"><code>11aac9a</code></a> log: deprecate <code>env_logger</code> in favor of <code>tracing_subscriber::fmt::Subscriber</code>...</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/2f27752a9912f03ed64e2b29e1ea06ebb4b09e83"><code>2f27752</code></a> chore: remove <code>env_logger</code> from <code>hyper</code> example</li>
<li><a href="https://github.com/tokio-rs/tracing/commit/f96846d78a3f240a2c81636a7d6921e5d74ac79f"><code>f96846d</code></a> attributes: fix typo "overriden" => "overridden" (<a href="https://redirect.github.com/tokio-rs/tracing/issues/2719">#2719</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tokio-rs/tracing/compare/tracing-0.1.37...tracing-0.1.39">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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@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/562
Author: @dependabot[bot]
Created: 10/16/2023
Status: ✅ Merged
Merged: 10/20/2023
Merged by: @LGUG2Z
Base:
master← Head:dependabot/cargo/tracing-0.1.39📝 Commits (1)
67dac84chore(deps): bump tracing from 0.1.37 to 0.1.39📊 Changes
1 file changed (+6 additions, -7 deletions)
View changed files
📝
Cargo.lock(+6 -7)📄 Description
Bumps tracing from 0.1.37 to 0.1.39.
Release notes
Sourced from tracing's releases.
... (truncated)
Commits
4b99457chore: prepare tracing 0.1.39 (#2755)b2a5e11tracing: update core to v0.1.31 and attributes to v0.1.273825a50tracing: use full path when callingformat_args!(#2757)c4b2a56chore: prepare tracing-core 0.1.32 (#2754)2502f19chore: prepare tracing-attributes 0.1.27 (#2756)9048762Revert "log: update to env_logger 0.10 to fix GHSA-g98v-hv3f-hcfr (#2740)" (#...6ba5af2docs: remove mention ofRegistrationon v0.1.x (#2753)11aac9alog: deprecateenv_loggerin favor oftracing_subscriber::fmt::Subscriber...2f27752chore: removeenv_loggerfromhyperexamplef96846dattributes: fix typo "overriden" => "overridden" (#2719)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 show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@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.