-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
chore(deps): update compatible #12905
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @epage (or someone else) soon. Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (
|
@bors r+ Looking through the changelogs, they seem reasonable. |
☀️ Test successful - checks-actions |
Update cargo 8 commits in b4d18d4bd3db6d872892f6c87c51a02999b80802..65e297d1ec0dee1a74800efe600b8dc163bcf5db 2023-10-31 18:19:10 +0000 to 2023-11-03 20:56:31 +0000 - fix(cli): Clarify --test is for targets, not test functions (rust-lang/cargo#12915) - Updating "features" documentation to add a note about the new limit on number of features (rust-lang/cargo#12913) - fix: merge `trim-paths` from different profiles (rust-lang/cargo#12908) - Add regression test for issue 6915: features and transitive dev deps (rust-lang/cargo#12907) - chore(deps): update rust crate gix to 0.55.2 (rust-lang/cargo#12906) - chore(deps): update compatible (rust-lang/cargo#12905) - docs(ref): Fix open-semver-range issue link (rust-lang/cargo#12904) - docs(ref): Highlight commands to answer dep resolution questions (rust-lang/cargo#12903) r? ghost
This PR contains the following updates:
0.21.4
->0.21.5
0.18.0
->0.18.1
4.4.6
->4.4.7
1.0.27
->1.0.28
0.1.26
->0.1.27
0.2.148
->0.2.149
1.0.188
->1.0.190
1.0.107
->1.0.108
0.4.13
->0.4.14
2.0.37
->2.0.38
3.8.0
->3.8.1
1.0.49
->1.0.50
0.8.2
->0.8.6
0.1.37
->0.1.40
Release Notes
marshallpierce/rust-base64 (base64)
v0.21.5
Compare Source
Debug
andClone
impls for the general purpose Engineoli-obk/cargo_metadata (cargo_metadata)
v0.18.1
Compare Source
clap-rs/clap (clap)
v4.4.7
Compare Source
Performance
rust-lang/flate2-rs (flate2)
v1.0.28
Compare Source
What's Changed
bufread
andread
types. by @georeth in https://github.com/rust-lang/flate2-rs/pull/375New Contributors
Full Changelog: rust-lang/flate2-rs@1.0.27...1.0.28
rust-lang/libc (libc)
v0.2.149
Compare Source
What's Changed
pthread_attr_setguardsize
andpthread_attr_getstacksize
. by @sunfishcode in https://github.com/rust-lang/libc/pull/3330armv7-apple-ios
target support by @JohnTitor in https://github.com/rust-lang/libc/pull/3362New Contributors
Full Changelog: rust-lang/libc@0.2.148...0.2.149
serde-rs/serde (serde)
v1.0.190
Compare Source
v1.0.189
Compare Source
serde-rs/json (serde_json)
v1.0.108
Compare Source
assert-rs/trycmd (snapbox)
v0.4.14
Compare Source
dtolnay/syn (syn)
v2.0.38
Compare Source
bool
as a custom keyword (#1518, thanks @Vanille-N)Stebalien/tempfile (tempfile)
v3.8.1
persist_noclobber
on android.dtolnay/thiserror (thiserror)
v1.0.50
Compare Source
toml-rs/toml (toml)
v0.8.6
Compare Source
v0.8.5
Compare Source
v0.8.4
Compare Source
v0.8.3
Compare Source
tokio-rs/tracing (tracing)
v0.1.40
: tracing 0.1.40Compare Source
This release fixes a potential stack use-after-free in the
Instrument::into_inner
method. Only uses of this method are affected by thisbug.
Fixed
mem::ManuallyDrop
instead ofmem::forget
inInstrument::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
tracing
macros. Inaddition, it updates the
tracing-core
dependency to v0.1.32 andthe
tracing-attributes
dependency to v0.1.27.Added
ValueSet
s 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_lints
in macro-generated code (#2626)#[instrument]
when the"log"
feature is enabled (#2599)
Documented
axum-insights
to relevant crates. (#2713)clippy-tracing
to related crates (#2628)tracing-cloudwatch
to related crates (#2667)tracing-etw
repo (#2602)v0.1.38
: tracing 0.1.38Compare Source
This
tracing
release changes theDrop
implementation forInstrumented
Future
s so that the attachedSpan
is entered when dropping theFuture
. Thismeans that events emitted by the
Future
'sDrop
implementation 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-attributes
dependency tov0.1.24, which updates the [
syn
][syn] dependency to v2.x.x.tracing-attributes
v0.1.24 also includes improvements to the#[instrument]
macro; see the
tracing-attributes
0.1.24 release notes fordetails.
Added
Instrumented
futures will now enter the attachedSpan
in theirDrop
implementation, 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)
level
argument 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-if
dependency (#2553)syn
][syn] dependency to 2.0 (#2516)Fixed
clippy::unreachable
warnings in#[instrument]
-generated code (#2356)syn
dependency (#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!
Configuration
📅 Schedule: Branch creation - "before 5am on the first day of the month" (UTC), 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.
This PR has been generated by Mend Renovate. View repository job log here.