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

chore(deps): Update compatible #1210

Merged
merged 1 commit into from
Oct 1, 2024
Merged

chore(deps): Update compatible #1210

merged 1 commit into from
Oct 1, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 1, 2024

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.86 -> 1.0.89
clap dependencies patch 4.5.13 -> 4.5.18
clap-verbosity-flag dependencies patch 2.2.1 -> 2.2.2
dunce (source) dependencies patch 1.0.4 -> 1.0.5
ignore (source) dependencies patch 0.4.22 -> 0.4.23
liquid dependencies patch 0.26.8 -> 0.26.9
liquid-core (source) dependencies patch 0.26.8 -> 0.26.9
liquid-lib (source) dependencies patch 0.26.8 -> 0.26.9
once_cell dependencies minor 1.19.0 -> 1.20.1
pulldown-cmark dependencies patch 0.12.0 -> 0.12.1
regex dependencies minor 1.10.5 -> 1.11.0
rss dependencies patch 2.0.8 -> 2.0.9
serde (source) dependencies patch 1.0.204 -> 1.0.210
serde_json dependencies patch 1.0.121 -> 1.0.128
snapbox (source) dev-dependencies patch 0.6.16 -> 0.6.17
tempfile (source) dependencies minor 3.10.1 -> 3.13.0
thiserror dependencies patch 1.0.63 -> 1.0.64
trycmd (source) dev-dependencies patch 0.15.6 -> 0.15.7

Release Notes

dtolnay/anyhow (anyhow)

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)
clap-rs/clap (clap)

v4.5.18

Compare Source

Features
  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

Compare Source

Fixes
  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

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
clap-rs/clap-verbosity-flag (clap-verbosity-flag)

v2.2.2

Compare Source

Fixes
  • Resolve overflow issues
kornelski/dunce (dunce)

v1.0.5

Compare Source

cobalt-org/liquid-rust (liquid)

v0.26.9

Compare Source

Fixes
  • Don't panic when generating parser error message
matklad/once_cell (once_cell)

v1.20.1

Compare Source

  • Allow using race module using just portable_atomic, without critical_section and provide
    better error messages on targets without atomic CAS instruction,
    #​265.

v1.20.0

Compare Source

raphlinus/pulldown-cmark (pulldown-cmark)

v0.12.1: 0.12.1

Compare Source

Security

New features

Developers

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.0...v0.12.1

rust-lang/regex (regex)

v1.11.0

Compare Source

===================
This is a new minor release of regex that brings in an update to the
Unicode Character Database. Specifically, this updates the Unicode data
used by regex internally to the version 16 release.

New features:

v1.10.6

Compare Source

===================
This is a new patch release with a fix for the unstable crate feature that
enables std::str::Pattern trait integration.

Bug fixes:

  • BUG #​1219:
    Fix the Pattern trait implementation as a result of nightly API breakage.
rust-syndication/rss (rss)

v2.0.9

Compare Source

  • Fix Clippy Warnings. #164
  • Add From<String> constructor for Category. #165
  • Update quick-xml to 0.36. #166
serde-rs/serde (serde)

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.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)
assert-rs/snapbox (snapbox)

v0.6.17

Compare Source

Stebalien/tempfile (tempfile)

v3.13.0

Compare Source

  • Add with_suffix constructors for easily creating new temporary files with a specific suffix (e.g., a specific file extension). Thanks to @​Borgerr.
  • Update dependencies (fastrand & rustix).

v3.12.0

Compare Source

  • Add a keep(keep: bool) function to builder that suppresses delete-on-drop behavior (thanks to @​RalfJung).
  • Update windows-sys from 0.52 to 0.59.

v3.11.0

Compare Source

  • Add the ability to override the default temporary directory. This API shouldn't be used in general, but there are some cases where it's unavoidable.
dtolnay/thiserror (thiserror)

v1.0.64

Compare Source


Configuration

📅 Schedule: Branch creation - "before 5am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 enabled auto-merge (rebase) October 1, 2024 00:31
@renovate renovate bot merged commit 0709bb3 into master Oct 1, 2024
16 of 17 checks passed
@renovate renovate bot deleted the renovate/compatible branch October 1, 2024 00:37
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.

0 participants