Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 10, 2024

This PR contains the following updates:

Package Type Update Change
actions/cache action patch v4.0.0 -> v4.0.2
anyhow dependencies patch 1.0.86 -> 1.0.100
ctrlc dependencies patch 3.4.4 -> 3.4.7
serde (source) dependencies patch 1.0.204 -> 1.0.228
serde_json dependencies patch 1.0.120 -> 1.0.145
tracing (source) dependencies patch 0.1.40 -> 0.1.43

Release Notes

actions/cache (actions/cache)

v4.0.2

Compare Source

What's Changed

Full Changelog: actions/cache@v4.0.1...v4.0.2

v4.0.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4...v4.0.1

dtolnay/anyhow (anyhow)

v1.0.100

Compare Source

  • Teach clippy to lint formatting arguments in bail!, ensure!, anyhow! (#​426)

v1.0.99

Compare Source

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#​420)

v1.0.98

Compare Source

v1.0.97

Compare Source

  • Documentation improvements

v1.0.96

Compare Source

  • Documentation improvements

v1.0.95

Compare Source

v1.0.94

Compare Source

  • Documentation improvements

v1.0.93

Compare Source

  • Update dev-dependencies to thiserror v2

v1.0.92

Compare Source

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#​390)

v1.0.91

Compare Source

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#​388)

v1.0.90

Compare Source

  • Documentation improvements

v1.0.89

Compare Source

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#​386)

v1.0.88

Compare Source

  • Documentation improvements

v1.0.87

Compare Source

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#​383)
Detegr/rust-ctrlc (ctrlc)

v3.4.7

Compare Source

What's Changed

New Contributors

Full Changelog: Detegr/rust-ctrlc@3.4.6...3.4.7

v3.4.6

Compare Source

What's Changed

New Contributors

Full Changelog: Detegr/rust-ctrlc@3.4.5...3.4.6

v3.4.5

Compare Source

serde-rs/serde (serde)

v1.0.228

Compare Source

  • Allow building documentation with RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#​2995)

v1.0.227

Compare Source

v1.0.226

Compare Source

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#​2935, thanks @​Mingun)

v1.0.225

Compare Source

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#​2879, thanks @​rcrisanti)

v1.0.224

Compare Source

  • Remove private types being suggested in rustc diagnostics (#​2979)

v1.0.223

Compare Source

  • Fix serde_core documentation links (#​2978)

v1.0.222

Compare Source

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#​2950, thanks @​aytey)

v1.0.221

Compare Source

  • Documentation improvements (#​2973)
  • Deprecate serde_if_integer128! macro (#​2975)

v1.0.220

Compare Source

v1.0.219

Compare Source

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#​2906, thanks @​davidzeng0)

v1.0.218

Compare Source

  • Documentation improvements

v1.0.217

Compare Source

  • Support serializing externally tagged unit variant inside flattened field (#​2786, thanks @​Mingun)

v1.0.216

Compare Source

v1.0.215

Compare Source

v1.0.214

Compare Source

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#​2568, thanks @​Mingun)

v1.0.213

Compare Source

  • Fix support for macro-generated with attributes inside a newtype struct (#​2847)

v1.0.212

Compare Source

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#​2845)

v1.0.211

Compare Source

  • Improve error reporting about mismatched signature in with and default attributes (#​2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#​2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#​2821)

v1.0.210

Compare Source

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#​2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#​2818)

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)
serde-rs/json (serde_json)

v1.0.145

Compare Source

  • Raise serde version requirement to >=1.0.220

v1.0.144

Compare Source

  • Switch serde dependency to serde_core (#​1285)

v1.0.143

Compare Source

v1.0.142

Compare Source

v1.0.141

Compare Source

v1.0.140

Compare Source

  • Documentation improvements

v1.0.139

Compare Source

  • Documentation improvements

v1.0.138

Compare Source

  • Documentation improvements

v1.0.137

Compare Source

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#​1231)

v1.0.136

Compare Source

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#​1230, thanks @​goffrie)

v1.0.135

Compare Source

v1.0.134

Compare Source

  • Add RawValue associated constants for literal null, true, false (#​1221, thanks @​bheylin)

v1.0.133

Compare Source

  • Implement From<[T; N]> for serde_json::Value (#​1215)

v1.0.132

Compare Source

  • Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#​1205)
  • Improve performance of JSON array and JSON object deserialization by about 8% (#​1206)

v1.0.131

Compare Source

  • Implement Deserializer and IntoDeserializer for Map<String, Value> and &Map<String, Value> (#​1135, thanks @​swlynch99)

v1.0.130

Compare Source

  • Support converting and deserializing Number from i128 and u128 (#​1141, thanks @​druide)

v1.0.129

Compare Source

v1.0.128

Compare Source

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

tokio-rs/tracing (tracing)

v0.1.43: tracing 0.1.43

Compare Source

Important

The previous release 0.1.42 was yanked because #​3382 was a breaking change.
See further details in #​3424. This release contains all the changes from that
version, plus a revert for the problematic part of the breaking PR.

Fixed
  • Revert "make valueset macro sanitary" (#​3425)

v0.1.42: tracing 0.1.42

Compare Source

Important

The Span::record_all method has been removed from the documented API. It
was always unsuable via the documented API as it requried a ValueSet which
has no publically documented constructors. The method remains, but should not
be used outside of tracing macros.

Added
  • attributes: Support constant expressions as instrument field names (#​3158)
  • Add record_all! macro for recording multiple values in one call (#​3227)
  • core: Improve code generation at trace points significantly (#​3398)
Changed
  • tracing-core: updated to 0.1.35 (#​3414)
  • tracing-attributes: updated to 0.1.31 (#​3417)
Fixed
  • Fix "name / parent" variant of event! (#​2983)
  • Remove 'r#' prefix from raw identifiers in field names (#​3130)
  • Fix perf regression when release_max_level_* not set (#​3373)
  • Use imported instead of fully qualified path (#​3374)
  • Make valueset macro sanitary (#​3382)
Documented
  • core: Add missing dyn keyword in Visit documentation code sample (#​3387)

v0.1.41: tracing 0.1.41

Compare Source

[ crates.io ] | [ docs.rs ]

This release updates the tracing-core dependency to v0.1.33 and
the tracing-attributes dependency to v0.1.28.

Added
  • core: Add index API for Field (#​2820)
  • core: Allow &[u8] to be recorded as event/span field (#​2954)
Changed
  • Bump MSRV to 1.63 (#​2793)
  • core: Use const thread_locals when possible (#​2838)
Fixed
  • Removed core imports in macros (#​2762)
  • attributes: Added missing RecordTypes for instrument (#​2781)
  • attributes: Change order of async and unsafe modifier (#​2864)
  • Fix missing field prefixes (#​2878)
  • attributes: Extract match scrutinee (#​2880)
  • Fix non-simple macro usage without message (#​2879)
  • Fix event macros with constant field names in the first position (#​2883)
  • Allow field path segments to be keywords (#​2925)
  • core: Fix missed register_callsite error (#​2938)
  • attributes: Support const values for target and name (#​2941)
  • Prefix macro calls with ::core to avoid clashing with local macros (#​3024)

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.


  • 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 force-pushed the renovate/patch-all-minor-patch branch from da3f785 to 8312394 Compare July 28, 2024 22:59
@renovate renovate bot changed the title chore(deps): update actions/cache action to v4.0.2 chore(deps): update all non-major dependencies (patch) Jul 28, 2024
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from 25089a6 to 0634dd7 Compare August 8, 2024 05:20
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 7 times, most recently from 5b36081 to 3a15252 Compare August 15, 2024 17:37
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from 87a43de to f162121 Compare August 24, 2024 04:54
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from f162121 to e50d69f Compare September 16, 2024 11:57
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 8 times, most recently from 67ac8b5 to db6ea8e Compare October 22, 2024 22:22
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from 24101fc to 3b8255a Compare November 1, 2024 07:57
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from 54d0a14 to d1d7f57 Compare November 11, 2024 22:54
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from d1d7f57 to 82205ce Compare November 17, 2024 04:26
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 3 times, most recently from d3c55d2 to 40e30a6 Compare December 3, 2024 22:43
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 1cf8513 to cb0384f Compare December 27, 2024 21:36
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from cb0384f to 6c30450 Compare January 8, 2025 15:42
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from 0e9bd71 to 153aa4b Compare January 20, 2025 01:50
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from 458fe18 to 8e9a06b Compare January 30, 2025 17:30
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 8e9a06b to b7a126e Compare February 20, 2025 05:38
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 4 times, most recently from 757e008 to 8c4d9f7 Compare March 9, 2025 21:22
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 8c4d9f7 to 083cc01 Compare March 11, 2025 12:59
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from 5d7823a to dbf3de0 Compare April 8, 2025 11:58
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from dbf3de0 to 6b6ffc1 Compare April 14, 2025 03:00
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 6b6ffc1 to 5fc82e3 Compare May 11, 2025 10:32
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 5fc82e3 to 7102784 Compare July 18, 2025 19:40
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 7102784 to e07d9e9 Compare July 28, 2025 10:41
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from 9a5b707 to a4978da Compare August 12, 2025 05:54
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from a4978da to 1ffe001 Compare August 19, 2025 04:57
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 1ffe001 to 1baef3c Compare August 31, 2025 11:14
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch 3 times, most recently from 5ff853c to 4763bc5 Compare September 25, 2025 18:38
@renovate renovate bot changed the title fix(deps): update all non-major dependencies (patch) chore(deps): update all non-major dependencies (patch) Sep 25, 2025
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 4763bc5 to c8118d4 Compare October 9, 2025 11:15
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from c8118d4 to 71d3e0b Compare November 10, 2025 15:13
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 71d3e0b to 3e25136 Compare November 28, 2025 11:15
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