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 all non-major dependencies #32

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 19, 2023

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.75 -> 1.0.86
anyhow dependencies patch 1 -> 1.0.86
async-trait dependencies patch 0.1 -> 0.1.81
chrono dependencies patch 0.4 -> 0.4.38
clap dependencies patch 4 -> 4.5.16
clap_complete dependencies patch 4 -> 4.5.24
console dependencies patch 0.15.7 -> 0.15.8
criterion (source) dev-dependencies patch 0.5 -> 0.5.1
darling dependencies patch 0.20 -> 0.20.10
darling workspace.dependencies patch 0.20 -> 0.20.10
futures (source) dependencies patch 0.3.29 -> 0.3.30
futures-util (source) dependencies patch 0.3.29 -> 0.3.30
getrandom dependencies patch 0.2 -> 0.2.15
mac_address dependencies patch 1 -> 1.1.7
nom dependencies patch 7 -> 7.1.3
once_cell dependencies patch 1 -> 1.19.0
pretty_assertions dev-dependencies patch 1 -> 1.4.0
proc-macro2 dependencies patch 1 -> 1.0.86
prost-types dependencies minor 0.12 -> 0.13.1
quote dependencies patch 1 -> 1.0.37
rayon dependencies patch 1.8.0 -> 1.10.0
scylla workspace.dependencies minor 0.12 -> 0.13.2
serde (source) dependencies patch 1.0.193 -> 1.0.209
serde (source) workspace.dependencies patch 1 -> 1.0.209
serde_json dependencies patch 1.0.108 -> 1.0.127
serde_json workspace.dependencies patch 1 -> 1.0.127
syn dependencies patch 2 -> 2.0.76
thiserror dependencies patch 1 -> 1.0.63
time (source) dependencies patch 0.3.30 -> 0.3.36
time (source) dependencies patch 0.3.34 -> 0.3.36
tokio (source) dependencies minor 1 -> 1.39.3
tokio (source) workspace.dependencies minor 1 -> 1.39.3
tokio-stream (source) dependencies patch 0.1.14 -> 0.1.15
tracing (source) workspace.dependencies patch 0.1 -> 0.1.40
tracing-subscriber (source) workspace.dependencies patch 0.3 -> 0.3.18
trybuild workspace.dependencies patch 1 -> 1.0.99
url dependencies patch 2.5.0 -> 2.5.2
uuid workspace.dependencies minor 1 -> 1.10.0

Release Notes

dtolnay/async-trait (async-trait)

v0.1.81

Compare Source

clap-rs/clap (clap)

v4.5.16

Compare Source

Fixes
  • (derive) Improve error messages when derive feature is missing

v4.5.15

Compare Source

Compatiblity
  • (unstable-ext) Arg::remove changed return types
Fixes
  • (unstable-ext) Make Arg::remove return the removed item

v4.5.14

Compare Source

Features
  • (unstable-ext) Added Arg::add for attaching arbitrary state, like completion hints, to Arg without Arg knowing about it

v4.5.13

Compare Source

Fixes
  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

v4.5.12

Compare Source

v4.5.11

Compare Source

v4.5.10

Compare Source

v4.5.9

Compare Source

Fixes
  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one

v4.5.8

Compare Source

Fixes
  • Reduce extra flushes

v4.5.7

Compare Source

Fixes
  • Clean up error message when too few arguments for num_args

v4.5.6

Compare Source

v4.5.5

Compare Source

Fixes
  • Allow exclusive to override required_unless_present, required_unless_present_any, required_unless_present_all
TedDriggs/darling (darling)

v0.20.10

  • Add #[allow(clippy::manual_unwrap_or_default)] to all generated impls to avoid causing clippy fails in crates using darling #​296
  • Properly initialize attrs magic field in derived FromAttributes impls #​297
dtolnay/proc-macro2 (proc-macro2)

v1.0.86

Compare Source

  • Documentation improvements

v1.0.85

Compare Source

  • Mark some tests as only for 64-bit targets (#​463)
tokio-rs/prost (prost-types)

v0.13.1

Compare Source

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

Bug fixes

  • Enum variant named Error causes ambiguous item (#​1098)

v0.13.0

Compare Source

note: this version was yanked in favor of 0.13.1

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

This major update brings new features and fixes:

Breaking changes

  • derive Copy trait for messages where possible (#​950)

    prost-build will automatically derive trait Copy for some messages. If you manually implement Copy you should remove your implementation.

  • Change generated functions signatures to remove type parameters (#​1045)

    The function signature of trait Message is changed to use impl Buf instead of a named generic type. If you implement trait Message, you should change the function signature.

  • Lightweight error value in TryFrom for enums (#​1010)

    When a impl TryFrom<i32> is generated by prost derive macros, it will now return the error type UnknownEnumValue instead of DecodeError. The new error can be used to retreive the integer value that failed to convert.

Features

  • fix: Only touch include file if contents is changed (#​1058)

    Most generated files are untouched when the contents doesn't change. Use the same mechanism for include file as well.

Dependencies

  • update env_logger requirement from 0.10 to 0.11 (#​1074)
  • update criterion requirement from 0.4 to 0.5 (#​1071)
  • Remove unused libz-sys (#​1077)
  • build(deps): update itertools requirement from >=0.10, <=0.12 to >=0.10, <=0.13 (#​1070)

Documentation

  • better checking of tag duplicates, avoid discarding invalid variant errs (#​951)
  • docs: Fix broken link warnings (#​1056)
  • Add missing LICENSE symlink (#​1086)

Internal

  • workspace package metadata (#​1036)
  • fix: Build error due to merge conflict (#​1068)
  • build: Fix release scripts (#​1055)
  • chore: Add ci to check MSRV (#​1057)
  • ci: Add all tests pass job (#​1069)
  • ci: Add Dependabot (#​957)
  • ci: Ensure both README are the same and prost version is correct (#​1078)
  • ci: Set rust version of clippy job to a fixed version (#​1090)
dtolnay/quote (quote)

v1.0.37

Compare Source

  • Implement ToTokens for CStr and CString (#​283)
scylladb/scylla-rust-driver (scylla)

v0.13.2

Compare Source

The ScyllaDB team is pleased to announce ScyllaDB Rust Driver 0.13.2,
an asynchronous CQL driver for Rust, optimized for Scylla, but also compatible with Apache Cassandra!

Some interesting statistics:

  • over 2,080k downloads on crates!
  • over 554 GitHub stars!

Changes

Bug fixes:

  • Made driver issue a warning and continue instead of failing if an invalid peer is encountered in system tables (#​1045)
  • Fixed bug that paged queries would be broken when the recently introduced use_cached_metadata flag was set on a PreparedStatement(#​1063)

Documentation:

  • Documented DefaultPolicy (Load Balancing) with a lot of comments intended for developers to understand its logic easier (#​1062)

CI / developer tool improvements:

  • Appeased Clippy again (#​1046)
  • Turned tablets off for Counter tests, as tablets do not support Counters yet (#​1060)
  • Added scylla_cloud_tests to cfg allowlist (after such allowlist was made mandatory) (#​1049)
  • Fixed semver-checks failure after its unexpected breaking update (#​1050, #​1051)

Congrats to all contributors and thanks everyone for using our driver!


The source code of the driver can be found here:

The official crates.io registry entry is here:

Thank you for your attention, please do not hesitate to contact us if you have any questions, issues, feature requests, or are simply interested in our driver!

v0.13.1

Compare Source

The ScyllaDB team is pleased to announce ScyllaDB Rust Driver 0.13.1,
an asynchronous CQL driver for Rust, optimized for Scylla, but also compatible with Apache Cassandra!

Some interesting statistics:

  • over 1,905k downloads on crates!
  • over 545 GitHub stars!

Changes

Bug fixes:

  • Made log logger work with the driver again (#​992)
  • Fixed bug that Batches would be always sent as LOGGED if they contain any unprepared statement (Query) (#​1038)
  • Fixed two efficiency-related bugs in default load balancing policy (#​1037)

Documentation:

  • Documented logging with tracing and log libraries and provided an example (#​992)

CI / developer tool improvements:

  • Silenced mock structs unused warning (#​996)
  • Appeased Clippy again (#​1002 and #​1013)
  • Turned tablets off for LWT tests, as tablets do not support LWT yet (d20aed54)
  • Made LWT tests ignored when testing with tablets, as tablets do not support LWT yet (2bd45560)

Congrats to all contributors and thanks everyone for using our driver!


The source code of the driver can be found here:

The official crates.io registry entry is here:

Thank you for your attention, please do not hesitate to contact us if you have any questions, issues, feature requests, or are simply interested in our driver!

v0.13.0

Compare Source

The ScyllaDB team is pleased to announce ScyllaDB Rust Driver 0.13.0,
an asynchronous CQL driver for Rust, optimized for Scylla, but also compatible with Apache Cassandra!

Some interesting statistics:

  • over 1,615k downloads on crates!
  • over 520 GitHub stars!

Changes

API cleanups / breaking changes:

  • Implemented support for Tablets, a new major architectural feature of Scylla that will be a part of upcoming 6.0 release. This support is required for token (and shard) awareness to work with Tablet-based tables. You can read more about Tablets in a blogpost by Tomasz Grabiec or watch a presentation by Avi Kivity (#​937)
  • Enabled shard-selecting load balancing. Before, a LoadBalancingPolicy would return a Plan consisting of Nodes;
    now, together with a Node it can optionally specify the Shard to contact as well. This is crucial for proper Tablets support (see above). Main PR #​944, with follow up #​969
  • Token: added constructor and normalization to increase type-safety (#​948)
  • Removed another unstable dependency, histogram::Histogram, from public API (#​935)
  • Implemented CQL protocol-level optimisation: prepared statement result metadata can be now used to decode rows. This saves network bandwidth if that option is enabled, because result metadata need not be sent with each DB query result. (#​925)
  • Removed num_enum dependency. It was unstable, and we managed to do without it, so it no longer appears in the public API. (#​931)
  • Decreased pub visibility of scylla-cql definitions which weren't intended for access from outside the driver. (#​933)

New features / enhancements:

  • Improved the FromRow derive macro to suppport structs with unnamed fields. Before, only structs with named fields were supported. (#​985)
  • testing: Increased timeout for fetching tracing info - Cassandra was so slow in tests that our CI used to fail sometimes... (#​966)
  • Removed strum and strum_macros dependencies. They were unstable, and we managed to do without it. (#​934)

Documentation:

  • Got rid of (most) uses of QueryResult::rows. The preferred method is the more type safe QueryResult::rows_typed. Moreover, QueryResult::rows is going to be deprecated in the next release, once the new lazy deserialization framework is introduced. We thus recommend switching to rows_typed wherever possible. (#​955)

CI / developer tool improvements:

  • Removed unreachable pubs (#​958)
  • Dealed with chrono deprecations (#​951)
  • CI: run cargo clean before tests (#​929)
  • CI: small fixes in semver checks (#​942)
  • CI: semver_checks now edits its comment instead of posting new one, so that the PR wall is less cluttered. (#​952)
  • CI: Tracing output is now shown for a test iff the test failed. This is a major aid in debugging in CI. (#​959)
  • Reverted "CI/Makefile: disable uninlined_format_args clippy lint", as rust-analyzer now properly supports semantic analysis of such format args. (#​945)
  • Appeased Clippy again (#​971)

Congrats to all contributors and thanks everyone for using our driver!


The source code of the driver can be found here:

The official crates.io registry entry is here:

Thank you for your attention, please do not hesitate to contact us if you have any questions, issues, feature requests, or are simply interested in our driver!

Contributors since the last release:

commits author
40 Karol Baryła
24 Mikołaj Uzarski
10 Wojciech Przytuła
1 Piotr Dulikowski
1 Piotr Grabowski
serde-rs/serde (serde)

v1.0.209

Compare Source

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#​2805, thanks @​Mingun)

v1.0.208

Compare Source

  • Support serializing and deserializing unit structs in a flatten field (#​2802, thanks @​jonhoo)

v1.0.207

Compare Source

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#​2795, thanks @​Mingun)

v1.0.206

Compare Source

v1.0.205

Compare Source

  • Use serialize_entry instead of serialize_key + serialize_value when serialize flattened newtype enum variants (#​2785, thanks @​Mingun)
  • Avoid triggering a collection_is_never_read lint in the deserialization of enums containing flattened fields (#​2791)

v1.0.204

Compare Source

  • Apply #[diagnostic::on_unimplemented] attribute on Rust 1.78+ to suggest adding serde derive or enabling a "serde" feature flag in dependencies (#​2767, thanks @​weiznich)
serde-rs/json (serde_json)

v1.0.127

Compare Source

v1.0.126

Compare Source

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#​1182, thanks @​CryZe)

v1.0.125

Compare Source

v1.0.124

Compare Source

v1.0.123

Compare Source

v1.0.122

Compare Source

  • Support using json! in no-std crates (#​1166)

v1.0.121

Compare Source

v1.0.120

Compare Source

v1.0.119

Compare Source

v1.0.118

Compare Source

dtolnay/syn (syn)

v2.0.76

Compare Source

  • Enforce that tail call become keyword is followed by an expression (#​1725)

v2.0.75

Compare Source

  • Automatically fill in missing turbofish when printing ExprPath and other paths in expression position (#​1722)

v2.0.74

Compare Source

  • Fix "temporary is dropped and runs the destructor for type `impl Iterator`" regression affecting certain use of Generics iterator methods (#​1719)

v2.0.73

Compare Source

v2.0.72

Compare Source

v2.0.71

Compare Source

v2.0.70

Compare Source

v2.0.69

Compare Source

  • Correctly parenthesize labeled loops inside a break value (#​1692)
  • Add Punctuated::get and get_mut (#​1693)

v2.0.68

Compare Source

  • Improve panic location when parse_quote! parses invalid syntax (#​1690, thanks @​stepancheg)
  • More efficient peek implementation for Group and Lifetime (#​1687)

v2.0.67

Compare Source

  • Produce more accurate error message locations for errors located at the end of a nested group (#​1679, #​1680)
  • Support peeking LitCStr in ParseStream::peek (#​1682)
dtolnay/thiserror (thiserror)

v1.0.63

Compare Source

  • Documentation improvements

v1.0.62

Compare Source

  • Support referring to nested tuple struct fields inside #[error("…", …)] attribute (#​309)
tokio-rs/tokio (tokio)

v1.39.3: Tokio v1.39.3

Compare Source

1.39.3 (August 17th, 2024)

This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#​6772)

v1.39.2: Tokio v1.39.2

Compare Source

1.39.2 (July 27th, 2024)

This release fixes a regression where the select! macro stopped accepting expressions that make use of temporary lifetime extension. (#​6722)

v1.39.1: Tokio v1.39.1

Compare Source

1.39.1 (July 23rd, 2024)

This release reverts "time: avoid traversing entries in the time wheel twice" because it contains a bug. (#​6715)

v1.39.0: Tokio v1.39.0

Compare Source

1.39.0 (July 23rd, 2024)

  • This release bumps the MSRV to 1.70. (#​6645)
  • This release upgrades to mio v1. (#​6635)
  • This release upgrades to windows-sys v0.52 (#​6154)
Added
  • io: implement AsyncSeek for Empty (#​6663)
  • metrics: stabilize num_alive_tasks (#​6619, #​6667)
  • process: add Command::as_std_mut (#​6608)
  • sync: add watch::Sender::same_channel (#​6637)
  • sync: add {Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count} (#​6661)
  • sync: implement Default for watch::Sender (#​6626)
  • task: implement Clone for AbortHandle (#​6621)
  • task: stabilize consume_budget (#​6622)
Changed
  • io: improve panic message of ReadBuf::put_slice() (#​6629)
  • io: read during write in copy_bidirectional and copy (#​6532)
  • runtime: replace num_cpus with available_parallelism (#​6709)
  • task: avoid stack overflow when passing large future to block_on (#​6692)
  • time: avoid traversing entries in the time wheel twice (#​6584)
  • time: support IntoFuture with timeout (#​6666)
  • macros: support IntoFuture with join! and select! (#​6710)
Fixed
  • docs: fix docsrs builds with the fs feature enabled (#​6585)
  • io: only use short-read optimization on known-to-be-compatible platforms (#​6668)
  • time: fix overflow panic when using large durations with Interval (#​6612)
Added (unstable)
  • macros: allow unhandled_panic behavior for #[tokio::main] and #[tokio::test] (#​6593)
  • metrics: add spawned_tasks_count (#​6114)
  • metrics: add worker_park_unpark_count (#​6696)
  • metrics: add worker thread id (#​6695)
Documented
  • io: update tokio::io::stdout documentation (#​6674)
  • macros: typo fix in join.rs and try_join.rs (#​6641)
  • runtime: fix typo in unhandled_panic (#​6660)
  • task: document behavior of JoinSet::try_join_next when all tasks are running (#​6671)

v1.38.1: Tokio v1.38.1

Compare Source

1.38.1 (July 16th, 2024)

This release fixes the bug identified as (#​6682), which caused timers not
to fire when they should.

Fixed
  • time: update wake_up while holding all the locks of sharded time wheels (#​6683)

v1.38.0: Tokio v1.38.0

Compare Source

This release marks the beginning of stabilization for runtime metrics. It
stabilizes RuntimeMetrics::worker_count. Future releases will continue to
stabilize more metrics.

Added
  • fs: add File::create_new (#​6573)
  • io: add copy_bidirectional_with_sizes (#​6500)
  • io: implement AsyncBufRead for Join (#​6449)
  • net: add Apple visionOS support (#​6465)
  • net: implement Clone for NamedPipeInfo (#​6586)
  • net: support QNX OS (#​6421)
  • sync: add Notify::notify_last (#​6520)
  • sync: add mpsc::Receiver::{capacity,max_capacity} (#​6511)
  • sync: add split method to the semaphore permit (#​6472, #​6478)
  • task: add tokio::task::join_set::Builder::spawn_blocking (#​6578)
  • wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#​6510)
Changed
  • macros: make #[tokio::test] append #[test] at the end of the attribute list (#​6497)
  • metrics: fix blocking_threads count (#​6551)
  • metrics: stabilize RuntimeMetrics::worker_count (#​6556)
  • runtime: move task out of the lifo_slot in block_in_place (#​6596)
  • runtime: panic if global_queue_interval is zero (#​6445)
  • sync: always drop message in destructor for oneshot receiver (#​6558)
  • sync: instrument Semaphore for task dumps (#​6499)
  • sync: use FIFO ordering when waking batches of wakers (#​6521)
  • task: make LocalKey::get work with Clone types (#​6433)
  • tests: update nix and mio-aio dev-dependencies (#​6552)
  • time: clean up implementation (#​6517)
  • time: lazily init timers on first poll (#​6512)
  • time: remove the true_when field in TimerShared (#​6563)
  • time: use sharding for timer implementation (#​6534)
Fixed
  • taskdump: allow building taskdump docs on non-unix machines (#​6564)
  • time: check for overflow in Interval::poll_tick (#​6487)
  • sync: fix incorrect is_empty on mpsc block boundaries (#​6603)
Documented
  • fs: rewrite file system docs (#​6467)
  • io: fix stdin documentation (#​6581)
  • io: fix obsolete reference in ReadHalf::unsplit() documentation (#​6498)
  • macros: render more comprehensible documentation for select! (#​6468)
  • net: add missing types to module docs (#​6482)
  • net: fix misleading NamedPipeServer example (#​6590)
  • sync: add examples for SemaphorePermit, OwnedSemaphorePermit (#​6477)
  • sync: document that Barrier::wait is not cancel safe (#​6494)
  • sync: explain relation between watch::Sender::{subscribe,closed} (#​6490)
  • task: clarify that you can't abort spawn_blocking tasks (#​6571)
  • task: fix a typo in doc of LocalSet::run_until (#​6599)
  • time: fix test-util requirement for pause and resume in docs (#​6503)
dtolnay/trybuild (trybuild)

v1.0.99

Compare Source

v1.0.98

Compare Source

  • Fix enabling of default features for workspace dependencies (#​282, thanks @​gui1117)

v1.0.97

Compare Source

  • Normalize number of types listed in "the following other types implement trait" diagnostics (#​277)

v1.0.96

Compare Source

  • Support Windows builds that have OUT_DIR prefixed with \\?\ (#​271)

v1.0.95

Compare Source

  • Keep long type names in diagnostics so that test output does not vary depending on the length of the absolute filepath of the crate (#​269)

v1.0.94

Compare Source

  • Resolve unexpected_cfgs warning (#​268)

v1.0.93

Compare Source

v1.0.92

Compare Source

  • Update normalization of verbose type paths to accommodate error message changes in rust 1.78 (#​265, thanks @​weiznich)

v1.0.91

Compare Source

v1.0.90

Compare Source

  • Support dotted key syntax in workspace Cargo.toml when using edition={workspace=true} (#​257)

v1.0.89

Compare Source

  • Normalize compiler build date messages (#​254)

v1.0.88

Compare Source

  • Work around dead_code warning false positive (#​253)

v1.0.87

Compare Source

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v1.0.86

Compare Source

v1.0.85

Compare Source

  • Set thread name to produce better message on panic (#​243, #​244)

v1.0.84

Compare Source

v1.0.83

Compare Source

  • Improve normalization of code blocks after 'help:' (#​238)

v1.0.82

Compare Source

  • Documentation improvements

v1.0.81

Compare Source

v1.0.80

Compare Source

v1.0.79

Compare Source

  • Use the more preferred .cargo/config.toml for configuring generated test package, rather than .cargo/config (#​226)

v1.0.78

Compare Source

  • Normalize paths which refer to rustc's build directory: /rustc/c5c7d2b37780dac1092e75f12ab97dd56c30861d/library/core/src/fmt/mod.rs:786:1 (#​224, thanks @​schreter)

v1.0.77

Compare Source

v1.0.76

Compare Source

v1.0.75

Compare Source

v1.0.74

Compare Source

v1.0.73

Compare Source

  • Documentation improvements

v1.0.72

Compare Source

  • Fix a warning when using trybuild from a test-only Cargo package, i.e. without a library target (#​208)

v1.0.71

Compare Source

  • Fix some cases where unusual compiler output could cause trybuild's normalization heuristic to crash

v1.0.70

Compare Source

  • Normalize "and $N others" in "the following other types implement trait" error messages (#​198, thanks @​mejrs)

v1.0.69

Compare Source

  • Fix handling of "dep:" dependencies when referring to a target-dependent dependency in cargo's [target.'cfg(…)'.dependencies] syntax (#​197)

v1.0.68

Compare Source

  • Fix build error when a crate feature and an optional dependency and a non-optional dev-dependency all 3 have the same name (#​196)

v1.0.67

Compare Source

  • Fix "optional dependency is not included in any features" error when using cargo 1.60.0's "namespaced features" syntax (#​171)

v1.0.66

Compare Source

  • Normalize left margin of error output (#​194)

v1.0.65

Compare Source

v1.0.64

Compare Source

  • Add categories and keywords to crates.io metadata

v1.0.63

Compare Source

  • Allow later globs to override pass/fail status of earlier globs (#​174)

    t.compile_fail("tests/ui/*.rs");
    t.pass("tests/ui/ok.rs");

    This will test tests/ui/ok.rs expecting it to pass, and all the rest of the contents of tests/ui expecting them to fail. Previous versions of trybuild would test tests/ui/ok.rs expecting it to fail and again expecting it to pass, which can't both be true.

v1.0.62

Compare Source

  • Support directly running a trybuild integration test binary without going through cargo test (#​14)

v1.0.61

Compare Source

  • Turn warning on missing stderr file into error (#​169)

v1.0.60

Compare Source


Configuration

📅 Schedule: Branch creation - "after 6pm" (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, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 21, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 496862c to 0b860e8 Compare December 31, 2023 00:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 72c3959 to df57392 Compare January 6, 2024 03:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df57392 to 07e2050 Compare January 9, 2024 19:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f9f4f69 to f826bdc Compare February 2, 2024 19:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3121728 to 828626f Compare February 3, 2024 23:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f4de1f8 to e1b1598 Compare February 19, 2024 07:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c53426f to 1ae4a9c Compare March 15, 2024 02:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1ddbf5a to 05df5e3 Compare March 26, 2024 11:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 05df5e3 to ddc4a46 Compare April 10, 2024 09:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 30cb4ef to fcfc4ef Compare August 1, 2024 22:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 446257f to 5cd4f4e Compare August 13, 2024 01:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from ba8ed32 to 97bab56 Compare August 21, 2024 23:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d6eda20 to 05fd86f Compare August 24, 2024 08:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 05fd86f to 34c7869 Compare August 27, 2024 14:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants