Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update rust crate tracing to 0.1.37 #110

Merged
merged 1 commit into from
Aug 12, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 12, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
tracing (source) dependencies patch 0.1.26 -> 0.1.37

Release Notes

tokio-rs/tracing (tracing)

v0.1.37: tracing 0.1.37

Compare Source

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
  • Added [tracing-web][tracing-web] and [reqwest-tracing][reqwest-tracing] to related crates (#​2283,
    #​2331)

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!

v0.1.36: tracing 0.1.36

Compare Source

This release adds support for owned values and fat pointers as arguments to the
Span::record method, as well as updating the minimum tracing-core version
and several documentation improvements.

Fixed
  • Incorrect docs in dispatcher::set_default (#​2220)
  • Compilation with -Z minimal-versions (#​2246)
Added
Changed
  • tracing-core: updated to 0.1.29

Thanks to @​fredr, @​cgbur, @​jyn514, @​matklad, and @​CAD97 for contributing to this
release!

v0.1.35: tracing 0.1.35

Compare Source

This release reduces the overhead of callsite registration by using new
tracing-core APIs.

Added
  • Use DefaultCallsite to reduce callsite registration overhead (#​2083)
Changed
  • tracing-core: updated to 0.1.27

v0.1.34: tracing 0.1.34

Compare Source

This release includes bug fixes for the "log" support feature and for the use of
both scoped and global default dispatchers in the same program.

Fixed
  • Failure to use the global default dispatcher when a thread sets a local
    default dispatcher before the global default is set (#​2065)
  • log: Compilation errors due to async block/fn futures becoming !Send
    when the "log" feature flag is enabled (#​2073)
  • Broken links in documentation (#​2068)

Thanks to @​ben0x539 for contributing to this release!

v0.1.33: tracing 0.1.33

Compare Source

This release adds new span_enabled! and event_enabled! variants of the
enabled! macro, for testing whether a subscriber would specifically enable a
span or an event.

Added
Fixed
  • Compilation warning when compiling for <=32-bit targets (including wasm32)
    (#​2060)

Thanks to @​guswynn, @​arifd, @​hrxi, @​CAD97, and @​name1e5s for contributing to
this release!

v0.1.32: tracing 0.1.32

Compare Source

This release reduces the overhead of creating and dropping disabled
spans significantly, which should improve performance when no tracing
subscriber is in use or when spans are disabled by a filter.

Fixed
  • attributes: Compilation failure with --minimal-versions due to a
    too-permissive syn dependency (#​1960)
Changed
  • Reduced Drop overhead for disabled spans (#​1974)
  • tracing-attributes: updated to 0.1.20

v0.1.31: tracing 0.1.31

Compare Source

This release increases the minimum supported Rust version (MSRV) to 1.49.0. In
addition, it fixes some relatively rare macro bugs.

Added
  • Added tracing-forest to the list of related crates (#​1935)
Changed
  • Updated minimum supported Rust version (MSRV) to 1.49.0 (#​1913)
Fixed
  • Fixed the warn! macro incorrectly generating an event with the TRACE level
    (#​1930)
  • Fixed macro hygiene issues when used in a crate that defines its own concat!
    macro, for real this time (#​1918)

Thanks to @​QnnOkabayashi, @​nicolaasg, and @​teohhanhui for contributing to this
release!

v0.1.30: tracing 0.1.30

Compare Source

This release adds experimental support for recording structured field
values using the [valuable][valuable] crate. See this blog post for
details on valuable.

Note that valuable support currently requires --cfg tracing_unstable. See
the documentation for details.

This release also adds a new enabled! macro for testing if a span or event
would be enabled.

Added
  • field: Experimental support for recording field values using the
    [valuable][valuable] crate (#​1608, #​1888, #​1887)
  • enabled! macro for testing if a span or event is enabled (#​1882)
Changed
  • tracing-core: updated to 0.1.22
  • tracing-attributes: updated to 0.1.19
Fixed
  • log: Fixed "use of moved value" compiler error when the "log" feature is
    enabled (#​1823)
  • Fixed macro hygiene issues when used in a crate that defines its own concat!
    macro (#​1842)
  • A very large number of documentation fixes and improvements.

Thanks to @​@​Vlad-Scherbina, @​Skepfyr, @​Swatinem, @​guswynn, @​teohhanhui,
@​xd009642, @​tobz, @​d-e-s-o@​0b01, and @​nickelc for contributing to this release!

v0.1.29: tracing 0.1.29

Compare Source

This release adds support for recording Option<T> where T: Value as
typed tracing field values. It also includes significant performance
improvements for functions annotated with the #[instrument] attribute
when the generated span is disabled.

Changed
  • tracing-core: updated to v0.1.21
  • tracing-attributes: updated to v0.1.19
Added
Fixed
  • instrument: added missing Future implementation for
    WithSubscriber, making the WithDispatch extension trait actually
    useable (#​1602)
  • Documentation fixes and improvements (#​1595, #​1601, #​1597)

Thanks to @​BrianBurgers, @​mattiast, @​DCjanus, @​oli-obk, and @​matklad for
contributing to this release!

v0.1.28: tracing 0.1.28

Compare Source

0.1.28 (September 17th, 2021)

This release fixes an issue where the RustDoc documentation was rendered
incorrectly. It doesn't include any actual code changes, and is very
boring and can be ignored.

Fixed
  • docs: Incorrect documentation rendering due to unclosed <div>
    tag (#​1572)

v0.1.27: tracing 0.1.27

Compare Source

This release adds a new [Span::or_current][Span::or_current] method to aid in
efficiently propagating span contexts to spawned threads or tasks.
Additionally, it updates the [tracing-core][tracing-core] version to 0.1.20 and
the [tracing-attributes][tracing-attributes] version to 0.1.16, ensuring that a number
of new features in those crates are present.

Fixed
  • instrument: Added missing WithSubscriber implementations for
    futures and other types (#​1424)
Added
  • Span::or_current method, to help with efficient span context
    propagation (#​1538)
  • attributes: add skip_all option to #[instrument] (#​1548)
  • attributes: record primitive types as primitive values rather than
    as fmt::Debug (#​1378)
  • core: NoSubscriber, a no-op Subscriber implementation
    (#​1549)
  • core: Added Visit::record_f64 and support for recording
    floating-point values (#​1507, #​1522)
  • A large number of documentation improvements and fixes (#​1369,
    #​1398, #​1435, #​1442, #​1524, #​1556)

Thanks to new contributors @​dzvon and @​mbergkvist, as well as @​teozkr,
@​maxburke, @​LukeMathWalker, and @​jsgf, for contributing to this release!


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@montekki montekki merged commit 79e978f into main Aug 12, 2023
3 checks passed
@montekki montekki deleted the renovate/tracing-0.x branch August 12, 2023 10:30
montekki pushed a commit that referenced this pull request Aug 14, 2023
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
montekki pushed a commit that referenced this pull request Aug 14, 2023
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
montekki added a commit that referenced this pull request Aug 14, 2023
* ci: adds cargo spellcheck

* indentation

* fix config filetype

* fix(deps): update rust crate syn to 2.0.28 (#106)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate serde to 1.0.183 (#105)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate quote to 1.0.32 (#104)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate async-trait to 0.1.73 (#107)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate thiserror to 1.0.44 (#108)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Fedor Sakharov <fedor.sakharov@gmail.com>

* fix(deps): update rust crate proc-macro2 to 1.0.66 (#103)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Fedor Sakharov <fedor.sakharov@gmail.com>

* fix(deps): update rust crate tracing to 0.1.37 (#110)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate toml to 0.7.6 (#109)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate clap to 4.3.21 (#113)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate itertools to 0.11.0 (#114)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate url to 2.4.0 (#116)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate tokio to 1.30.0 (#115)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate tokio to 1.31.0 (#117)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/checkout action to v3 (#118)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update docker/build-push-action action to v2.10.0 (#111)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update docker/build-push-action action to v4 (#119)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update docker/setup-buildx-action action to v2 (#120)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix reviews

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
montekki added a commit that referenced this pull request Aug 14, 2023
* ci: use cargo deny

* deny unlicensed and copyleft crates

* chore: Create CONTRIBUTING.md (#94)

Create CONTRIBUTING.md

* chore: Configure Renovate (#96)

Add renovate.json

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate async-trait to 0.1.72 (#97)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate chrono to 0.4.26 (#98)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate metrics to 0.21.1 (#101)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate num to 0.4.1 (#102)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate syn to 2.0.28 (#106)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate serde to 1.0.183 (#105)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate quote to 1.0.32 (#104)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate async-trait to 0.1.73 (#107)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate thiserror to 1.0.44 (#108)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Fedor Sakharov <fedor.sakharov@gmail.com>

* fix(deps): update rust crate proc-macro2 to 1.0.66 (#103)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Fedor Sakharov <fedor.sakharov@gmail.com>

* fix(deps): update rust crate tracing to 0.1.37 (#110)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate toml to 0.7.6 (#109)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate clap to 4.3.21 (#113)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate itertools to 0.11.0 (#114)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate url to 2.4.0 (#116)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate tokio to 1.30.0 (#115)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update rust crate tokio to 1.31.0 (#117)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/checkout action to v3 (#118)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update docker/build-push-action action to v2.10.0 (#111)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update docker/build-push-action action to v4 (#119)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update docker/setup-buildx-action action to v2 (#120)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix merge

* remove deny.toml comments

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant