fix(deps): update tokio-tracing monorepo #172
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.1.29->0.1.410.1.37->0.1.410.3.3->0.3.200.3.17->0.3.200.2.18->0.3.0Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
tokio-rs/tracing (tracing)
v0.1.41: tracing 0.1.41Compare Source
[ crates.io ] | [ docs.rs ]
This release updates the
tracing-coredependency to v0.1.33 andthe
tracing-attributesdependency to v0.1.28.Added
Field(#2820)&[u8]to be recorded as event/span field (#2954)Changed
thread_locals when possible (#2838)Fixed
register_callsiteerror (#2938)targetandname(#2941)v0.1.40: tracing 0.1.40Compare Source
This release fixes a potential stack use-after-free in the
Instrument::into_innermethod. Only uses of this method are affected by thisbug.
Fixed
mem::ManuallyDropinstead ofmem::forgetinInstrument::into_inner(#2765)
Thanks to @cramertj and @manishearth for finding and fixing this issue!
v0.1.39: tracing 0.1.39Compare Source
This release adds several additional features to the
tracingmacros. Inaddition, it updates the
tracing-coredependency to v0.1.32 andthe
tracing-attributesdependency to v0.1.27.Added
ValueSets of any length (#2508)Changed
tracing-attributes: updated to 0.1.27tracing-core: updated to 0.1.32Fixed
(#2621, #2757)
clippy::let_with_type_underscore] in macro-generatedcode ([#2609])
unknown_lintsin macro-generated code (#2626)#[instrument]when the"log"feature is enabled (#2599)
Documented
axum-insightsto relevant crates. (#2713)clippy-tracingto related crates (#2628)tracing-cloudwatchto related crates (#2667)tracing-etwrepo (#2602)v0.1.38: tracing 0.1.38Compare Source
This
tracingrelease changes theDropimplementation forInstrumentedFutures so that the attachedSpanis entered when dropping theFuture. Thismeans that events emitted by the
Future'sDropimplementation will now berecorded within its
Span. It also adds#[inline]hints to methods called inthe
event!macro's expansion, for an improvement in both binary size andperformance.
Additionally, this release updates the
tracing-attributesdependency tov0.1.24, which updates the
syndependency to v2.x.x.tracing-attributesv0.1.24 also includes improvements to the#[instrument]macro; see the
tracing-attributes0.1.24 release notes fordetails.
Added
Instrumentedfutures will now enter the attachedSpanin theirDropimplementation, allowing events emitted when dropping the future to occur
within the span (#2562)
#[inline]attributes for methods called by theevent!macros, makinggenerated code smaller (#2555)
levelargument to#[instrument(err)]and#[instrument(ret)]to override the level ofthe generated return value event (#2335)
#[instrument]is added to aconst fn(#2418)
Changed
tracing-attributes: updated to 0.1.24cfg-ifdependency (#2553)syndependency to 2.0 (#2516)Fixed
clippy::unreachablewarnings in#[instrument]-generated code (#2356)syndependency (#2530)Documented
#[instrument(err)](#2433)#[instrument](#2350)Thanks to @nitnelave, @jsgf, @Abhicodes-crypto, @LukeMathWalker, @andrewpollack,
@quad, @klensy, @davidpdrsn, @dbidwell94, @ldm0, @NobodyXu, @ilsv, and @daxpedda
for contributing to this release!
v0.1.37: tracing 0.1.37Compare Source
This release of
tracingincorporates changes fromtracing-corev0.1.30 and
tracing-attributesv0.1.23,including the new
Subscriber::on_register_dispatchmethod for performing lateinitialization after a
Subscriberis registered as aDispatch, and bugfixesfor the
#[instrument]attribute. Additionally, it fixes instances of thebare_trait_objectslint, which is now a warning ontracing's MSRV and willbecome an error in the next edition.
Fixed
#[instrument]edfunctions (#2307)
type errors in
#[instrument]edasync fns (#2270)syndependency to fix compilation with-Z minimal-versions(#2246)bare_trait_objectswarning invalueset!macro expansion (#2308)Added
Subscriber::on_register_dispatchmethod (#2269)WeakDispatchtype andDispatch::downgrade()function (#2293)Changed
tracing-core: updated to 0.1.30tracing-attributes: updated to 0.1.23Documented
tracing-webandreqwest-tracingto 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.36Compare Source
This release adds support for owned values and fat pointers as arguments to the
Span::recordmethod, as well as updating the minimumtracing-coreversionand several documentation improvements.
Fixed
dispatcher::set_default(#2220)-Z minimal-versions(#2246)Added
Span::record(#2212)Changed
tracing-core: updated to 0.1.29Thanks to @fredr, @cgbur, @jyn514, @matklad, and @CAD97 for contributing to this
release!
v0.1.35: tracing 0.1.35Compare Source
This release reduces the overhead of callsite registration by using new
tracing-coreAPIs.Added
DefaultCallsiteto reduce callsite registration overhead (#2083)Changed
tracing-core: updated to 0.1.27v0.1.34: tracing 0.1.34Compare 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
default dispatcher before the global default is set (#2065)
asyncblock/fn futures becoming!Sendwhen the "log" feature flag is enabled (#2073)
Thanks to @ben0x539 for contributing to this release!
v0.1.33: tracing 0.1.33Compare Source
This release adds new
span_enabled!andevent_enabled!variants of theenabled!macro, for testing whether a subscriber would specifically enable aspan or an event.
Added
span_enabled!andevent_enabled!macros (#1900)Fixed
wasm32)(#2060)
Thanks to @guswynn, @arifd, @hrxi, @CAD97, and @name1e5s for contributing to
this release!
v0.1.32: tracing 0.1.32Compare Source
This release reduces the overhead of creating and dropping disabled
spans significantly, which should improve performance when no
tracingsubscriber is in use or when spans are disabled by a filter.
Fixed
--minimal-versionsdue to atoo-permissive
syndependency (#1960)Changed
Dropoverhead for disabled spans (#1974)tracing-attributes: updated to 0.1.20v0.1.31: tracing 0.1.31Compare Source
This release increases the minimum supported Rust version (MSRV) to 1.49.0. In
addition, it fixes some relatively rare macro bugs.
Added
tracing-forestto the list of related crates (#1935)Changed
Fixed
warn!macro incorrectly generating an event with theTRACElevel(#1930)
concat!macro, for real this time (#1918)
Thanks to @QnnOkabayashi, @nicolaasg, and @teohhanhui for contributing to this
release!
v0.1.30: tracing 0.1.30Compare Source
This release adds experimental support for recording structured field
values using the
valuablecrate. See this blog post fordetails on
valuable.Note that
valuablesupport currently requires--cfg tracing_unstable. Seethe documentation for details.
This release also adds a new
enabled!macro for testing if a span or eventwould be enabled.
Added
valuablecrate (#1608, #1888, #1887)enabled!macro for testing if a span or event is enabled (#1882)Changed
tracing-core: updated to 0.1.22tracing-attributes: updated to 0.1.19Fixed
enabled (#1823)
concat!macro (#1842)
Thanks to @@Vlad-Scherbina, @Skepfyr, @Swatinem, @guswynn, @teohhanhui,
@xd009642, @tobz, @d-e-s-o@0b01, and @nickelc 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.