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

Update dependencies-non-major #82

Merged
merged 1 commit into from
Oct 23, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 4, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
async-global-executor dependencies minor 2.1.0 -> 2.3.0
async-trait dependencies patch 0.1.53 -> 0.1.58
crossbeam-channel (source) dependencies patch 0.5.4 -> 0.5.6
libc dependencies patch 0.2.126 -> 0.2.135
serde (source) dependencies patch 1.0.137 -> 1.0.147
serde_json dependencies patch 1.0.81 -> 1.0.87
thiserror dependencies patch 1.0.31 -> 1.0.37
tracing (source) dependencies patch 0.1.34 -> 0.1.37
url dependencies minor 2.2.2 -> 2.3.1

Release Notes

Keruspe/async-global-executor

v2.3.0

Compare Source

  • Switch back to edition 2021 and MSRV 1.59, dropping num-cups dependency

v2.2.0

Compare Source

  • Revert back to edition 2018 and MSRV 1.49
dtolnay/async-trait

v0.1.58

Compare Source

  • Improve rust-analyzer "go to definition" on the method names of an async trait (#​218)

v0.1.57

Compare Source

  • Add categories to crates.io metadata

v0.1.56

Compare Source

  • Fix build errors that involve use parentheses to disambiguate: `(impl 'async_trait + Trait)` (#​204)

v0.1.55

Compare Source

  • Fix drop order of uncaptured arguments (_) when compiling in 2021 edition's closure capture rules (#​199)

v0.1.54

Compare Source

  • Fix lifetime issue when using impl Trait in an async function argument type (#​177)
crossbeam-rs/crossbeam

v0.5.6

Compare Source

  • Bump the minimum supported Rust version to 1.38. (#​877)

v0.5.5

Compare Source

  • Replace Spinlock with Mutex. (#​835)
rust-lang/libc

v0.2.135

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.134...0.2.135

v0.2.134

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.133...0.2.134

v0.2.133

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.132...0.2.133

v0.2.132

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.131...0.2.132

v0.2.131

Compare Source

What's Changed

Full Changelog: rust-lang/libc@0.2.130...0.2.131

v0.2.130

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.129...0.2.130

v0.2.129

Compare Source

What's Changed

Full Changelog: rust-lang/libc@0.2.128...0.2.129

v0.2.128

Compare Source

This version has been yanked on crates.io, see https://github.com/rust-lang/libc/issues/2866 for the details.

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.127...0.2.128

v0.2.127

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.126...0.2.127

serde-rs/serde

v1.0.147

Compare Source

  • Add serde::de::value::EnumAccessDeserializer which transforms an EnumAccess into a Deserializer (#​2305)

v1.0.146

Compare Source

v1.0.145

Compare Source

v1.0.144

Compare Source

  • Change atomic ordering used by Serialize impl of atomic types to match ordering used by Debug impl of those same types (#​2263, thanks @​taiki-e)

v1.0.143

Compare Source

  • Invert build.rs cfgs in serde_test to produce the most modern configuration in the default case (#​2253, thanks @​taiki-e)

v1.0.142

Compare Source

  • Add keywords to crates.io metadata

v1.0.141

Compare Source

  • Add no-std category to crates.io metadata

v1.0.140

Compare Source

  • Invert serde_derive cfgs to convenience non-Cargo builds on a modern toolchain (#​2251, thanks @​taiki-e)

v1.0.139

Compare Source

  • Add new constructor function for all IntoDeserializer impls (#​2246)

v1.0.138

Compare Source

  • Documentation improvements
serde-rs/json

v1.0.87

Compare Source

  • Add write_i128 and write_u128 methods to serde_json::Formatter to control the formatting of 128-bit integers (#​940, thanks @​Lucretiel)

v1.0.86

Compare Source

v1.0.85

Compare Source

  • Make Display for Number produce the same representation as serializing (#​919)

v1.0.84

Compare Source

  • Make Debug impl of serde_json::Value more compact (#​918)

v1.0.83

Compare Source

  • Add categories to crates.io metadata

v1.0.82

Compare Source

dtolnay/thiserror

v1.0.37

Compare Source

  • Documentation improvements

v1.0.36

Compare Source

v1.0.35

Compare Source

  • More work on integrating std::any::Provider for backtrace support
  • Fix "Multiple applicable provide methods in scope" error when the caller has both std::error::Error and std::any::Provide traits in scope (#​185)

v1.0.34

Compare Source

  • Tweak "generic member access" based Backtrace implementation (#​184)

v1.0.33

Compare Source

v1.0.32

Compare Source

  • Add keywords to crates.io metadata
tokio-rs/tracing

v0.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

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

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
servo/rust-url

v2.3.1

Compare Source

v2.3.0

Compare Source


Configuration

📅 Schedule: Branch creation - "every weekend" (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.


  • If you want to rebase/retry this PR, click this checkbox.

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

@renovate renovate bot changed the title Update Rust crate async-trait to 0.1.56 Update dependencies-non-major Jun 8, 2022
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 49576b8 to d4a8586 Compare June 8, 2022 17:54
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from e36ce5e to 8a9a6ba Compare June 20, 2022 20:33
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 5 times, most recently from 2f4417d to 5f7ba12 Compare July 2, 2022 05:06
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 5f7ba12 to 6f92b06 Compare July 11, 2022 10:33
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from 772f017 to 4dd6d13 Compare July 23, 2022 10:24
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 6 times, most recently from 6273952 to 000a6fd Compare August 5, 2022 14:17
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 5 times, most recently from 1e9a909 to 55a6891 Compare August 12, 2022 01:28
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 3 times, most recently from 7b989f3 to 0a07961 Compare August 21, 2022 22:49
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 0a07961 to d130cfe Compare August 29, 2022 17:17
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from d130cfe to f5bd62b Compare September 25, 2022 18:25
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from f5bd62b to 7965636 Compare October 23, 2022 17:02
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 7965636 to f4d6831 Compare October 23, 2022 17:02
@vertexclique vertexclique merged commit 1874d75 into master Oct 23, 2022
@vertexclique vertexclique deleted the renovate/dependencies-non-major branch October 23, 2022 18:07
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.

1 participant