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 #1188

Merged
merged 1 commit into from
Jul 1, 2024
Merged

chore(deps): update compatible #1188

merged 1 commit into from
Jul 1, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 1, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
clap dependencies patch 4.5.4 -> 4.5.8
lazy_static dependencies minor 1.4.0 -> 1.5.0
liquid dependencies patch 0.26.4 -> 0.26.6
liquid-core (source) dependencies patch 0.26.4 -> 0.26.6
liquid-lib (source) dependencies patch 0.26.4 -> 0.26.6
log dependencies patch 0.4.21 -> 0.4.22
mime_guess dependencies patch 2.0.4 -> 2.0.5
open dependencies patch 5.1.3 -> 5.1.4
regex dependencies patch 1.10.4 -> 1.10.5
serde_json dependencies patch 1.0.117 -> 1.0.119
serde_yaml dependencies patch 0.9.21 -> 0.9.34
snapbox (source) dev-dependencies patch 0.6.5 -> 0.6.10
time (source) dependencies patch 0.3.21 -> 0.3.36
toml dependencies patch 0.8.12 -> 0.8.14
trycmd dev-dependencies patch 0.15.3 -> 0.15.4

Release Notes

clap-rs/clap (clap)

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
rust-lang-nursery/lazy-static.rs (lazy_static)

v1.5.0

Compare Source

cobalt-org/liquid-rust (liquid)

v0.26.6

Compare Source

Features
  • Support for jekyll's sort

v0.26.5

Compare Source

Compatibility

Bump MSRV to 1.70

Documentation
  • Provided an example of liquid::partials
rust-lang/log (log)

v0.4.22

Compare Source

Byron/open-rs (open)

v5.1.4

Compare Source

This release adds vision-os support, by means of ios simulation.
See the PR for a little more context.

Commit Statistics
  • 3 commits contributed to the release over the course of 5 calendar days.
  • 19 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
  • Uncategorized
    • Prepare changelog prior to release (5967b66)
    • Merge pull request #​99 from eugenehp/visionos (1efa4cb)
    • Added visionos support (df28e8b)
rust-lang/regex (regex)

v1.10.5

Compare Source

===================
This is a new patch release with some minor fixes.

Bug fixes:

  • BUG #​1203:
    Escape invalid UTF-8 when in the Debug impl of regex::bytes::Match.
serde-rs/json (serde_json)

v1.0.119

Compare Source

v1.0.118

Compare Source

dtolnay/serde-yaml (serde_yaml)

v0.9.34

Compare Source

As of this release, I am not planning to publish further versions of serde_yaml as none of my projects have been using YAML for a long time, so I have archived the GitHub repo and marked the crate deprecated in the version number. An official replacement isn't designated for those who still need to work with YAML, but https://crates.io/search?q=yaml\&sort=relevance and https://crates.io/keywords/yaml has a number of reasonable-looking options available.

v0.9.33

Compare Source

v0.9.32

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78

v0.9.31

Compare Source

  • Add swap_remove and shift_remove methods on Mapping (#​408)

v0.9.30

Compare Source

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

v0.9.29

Compare Source

  • Turn on deny(unsafe_op_in_unsafe_fn) lint

v0.9.28

Compare Source

  • Update unsafe-libyaml dependency to pull in unaligned write fix

v0.9.27

Compare Source

  • Always serialize serde_yaml::Number containing NaN as a positive NaN (#​394)

v0.9.26

Compare Source

  • Guarantee that .nan is deserialized as a positive NaN (#​392, #​393)

v0.9.25

Compare Source

  • Serialize using quoted style around scalar that has digits with leading zero (#​347)

v0.9.24

Compare Source

  • Implement FromStr for serde_yaml::Number (#​381)

v0.9.23

Compare Source

  • Documentation improvements

v0.9.22

Compare Source

  • Update indexmap dependency to version 2
assert-rs/trycmd (snapbox)

v0.6.10

Compare Source

v0.6.9

Compare Source

v0.6.8

Compare Source

v0.6.7

Compare Source

v0.6.6

Compare Source

time-rs/time (time)

v0.3.36

Compare Source

# Fixed
  • FormatItem can be used as part of an import path. See #​675 for details.

v0.3.35

Compare Source

Added
  • Duration::checked_neg
  • ext::InstantExt, which provides methods for using time::Duration with std::time::Instant
Changed
  • Instant is deprecated. It is recommended to use std::time::Instant directly, importing
    time::ext::InstantExt for interoperability with time::Duration.
  • FormatItem has been renamed to BorrowedFormatItem, avoiding confusion with OwnedFormatItem.
    An alias has been added for backwards compatibility.
Fixed
  • The weekday is optional when parsing RFC2822.
  • The range of sub-second values in Duration is documented correctly. The previous documentation
    contained an off-by-one error.
  • Leap seconds are now correctly handled when parsing ISO 8601.

v0.3.34

Compare Source

Fixed

Computing the local offset on Windows works again. It was broken in some cases in v0.3.32 and
v0.3.33.

v0.3.33

Compare Source

Fixed

Builds targeting wasm32-unknown-unknown now work again.

v0.3.32

Compare Source

Added
  • Methods to replace the day of the year.
    • Date::replace_ordinal
    • PrimitiveDateTime::replace_ordinal
    • OffsetDateTime::replace_ordinal
  • Modules to treat an OffsetDateTime as a Unix timestamp with subsecond precision for serde.
    • time::serde::timestamp::milliseconds
    • time::serde::timestamp::microseconds
    • time::serde::timestamp::nanoseconds
Changed
  • Duration::time_fn is deprecated.

v0.3.31

Compare Source

Added
  • OffsetDateTime::new_in_offset
  • OffsetDateTime::new_utc
Changed
  • The valid range of UtcOffset has been expanded from ±23:59:59 to ±25:59:59. This is to support
    the full POSIX range while permitting infallible negation.

v0.3.30

Compare Source

Added
  • powerfmt::smart_display::SmartDisplay has been added for the main types in the library. These
    implementations ensure that values follow the requested fill, width, and alignment when using
    format! or similar macros. Display is implemented in terms of SmartDisplay.
Fixed
  • Large values no longer wrap around in release mode when using NumericalDuration or
    NumericalStdDuration.

v0.3.29

Compare Source

Added
  • Niche value optimization for Date has been added. Both Date and Option<Date> are four bytes.
  • Unit conversions have been added. It is now possible to write Second::per(Day), which returns
    the number of seconds in one day. See the types in the [time::convert module][time::convert module] for more
    information.
Changed
  • The diagnostic for --cfg unsound_local_offset has been removed.
  • #![feature(no_coverage)] was previously used internally for code coverage. It is no longer used,
    so it has been removed.
  • The default value for modifier::OffsetHour has been changed. This was unintentionally changed in
    v0.3.17 and went unnoticed until now. The sign is now only present if needed by default, as was
    the case previously. This does not affect any situation where format_description! or
    format_description::parse is used.
Fixed
  • Adding or subtracting a std::time::Duration to/from an OffsetDateTime will not result in
    integer overflow internally. It will still panic if the result is out of range.

v0.3.28

Compare Source

Added
  • More additional constants for the well-known Iso8601 format description have been added. This
    avoids the need to manually configure the format.
  • An [end] component has been added. This is ignored during formatting, but is used to indicate
    the end of input when parsing. If any input remains after this component, an error is returned.
    This is useful when using the [first] component, as it avoids the need to reorder variants.
Changed
  • The exemption for MacOS introduced in 0.3.20 has been removed. This is because some supported
    versions of MacOS do not meet the requirements for the exemption.
  • The UnexpectedTrailingCharacters error variant has been moved to ParseFromDescription. All
    previously-existing locations of this variant have been deprecated and will no longer be returned.

v0.3.27

Compare Source

This sets the serde dependency requirement to >= 1.0.184 where the binaries have been removed.

v0.3.26

Compare Source

This release contains only a single change. serde is required to be a version prior to 1.0.171.
This is due to the decision by the maintainer of serde to include pre-built binaries that are
executed without the end user's knowledge. As of the time of publishing, the included binary has not
even been reproduced. This is a security risk, and the time project strongly opposes this
decision. While this may break some users' builds due to conflicting versions, it is a necessary
step to ensure the security.

v0.3.25

Compare Source

Fixed
  • Methods such as Time::replace_milliseconds would panic on some out-of-range values. This has
    been fixed.

v0.3.24

Compare Source

Added
  • The subsecond component is taken into account when parsing the unix_timestamp component. If
    data is conflicting, the subsecond value takes precedence.
  • Parsing a Time with only the hour component is now supported. The minute and second, and
    subsecond components are assumed to be zero.
Changed
  • The minimum supported Rust version is now 1.67.0.
  • The debug output for Parsed has been improved.
  • When parsing, invalid values are now rejected sooner. Previously, the entire input would be parsed
    before being rejected in the final step. Now, invalid values are rejected as soon as they are
    encountered. This affects the error variant returned, which may cause minor breakage for any code
    (incorrectly) relying on the exact error variant.
  • When parsing a Time, an error is returned if components are present but not consecutive. For
    example, if hours and seconds are present, minutes will not be assumed to be zero.
Fixed
  • The implementation of Duration::checked_div could return a slightly incorrect result in some
    cases. This has been fixed.

v0.3.23

Compare Source

Added
  • Date::next_occurrence
  • Date::prev_occurrence
  • Date::nth_next_occurrence
  • Date::nth_prev_occurrence
  • Weekday::nth_prev
  • Month::nth_next
  • Month::nth_prev
Changed

The minimum supported Rust version policy has been updated. See the README for
details.

Fixed
  • Duration::abs correctly returns Duration::MAX when near the minimum value. The nanoseconds
    value was previously incorrect.
  • Compliance with ISO 8601 has been improved. Previously, a UTC offset would be incorrectly rejected
    in some cases.

v0.3.22

Compare Source

Added
  • OffsetDateTime::checked_to_offset
toml-rs/toml (toml)

v0.8.14

Compare Source

v0.8.13

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 has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor Author

renovate bot commented Jul 1, 2024

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package [email protected] --precise 0.9.34
    Updating crates.io index
error: failed to select a version for `indexmap`.
    ... required by package `serde_yaml v0.9.34+deprecated`
    ... which satisfies dependency `serde_yaml = "^0.9"` of package `cobalt-bin v0.19.3 (/tmp/renovate/repos/github/cobalt-org/cobalt.rs)`
versions that meet the requirements `^2.2.1` are: 2.2.6, 2.2.5, 2.2.4, 2.2.3, 2.2.2, 2.2.1

all possible versions conflict with previously selected packages.

  previously selected package `indexmap v2.0.0`
    ... which satisfies dependency `indexmap = "^2.0.0"` (locked to 2.0.0) of package `toml_edit v0.19.15`
    ... which satisfies dependency `toml_edit = "^0.19.14"` (locked to 0.19.15) of package `trycmd v0.15.3`
    ... which satisfies dependency `trycmd = "^0.15"` (locked to 0.15.3) of package `cobalt-bin v0.19.3 (/tmp/renovate/repos/github/cobalt-org/cobalt.rs)`

failed to select a version for `indexmap` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/config/Cargo.toml --package [email protected] --precise 0.9.34
    Updating crates.io index
error: failed to select a version for `indexmap`.
    ... required by package `serde_yaml v0.9.34+deprecated`
    ... which satisfies dependency `serde_yaml = "^0.9"` of package `cobalt-bin v0.19.3 (/tmp/renovate/repos/github/cobalt-org/cobalt.rs)`
versions that meet the requirements `^2.2.1` are: 2.2.6, 2.2.5, 2.2.4, 2.2.3, 2.2.2, 2.2.1

all possible versions conflict with previously selected packages.

  previously selected package `indexmap v2.0.0`
    ... which satisfies dependency `indexmap = "^2.0.0"` (locked to 2.0.0) of package `toml_edit v0.19.15`
    ... which satisfies dependency `toml_edit = "^0.19.14"` (locked to 0.19.15) of package `trycmd v0.15.3`
    ... which satisfies dependency `trycmd = "^0.15"` (locked to 0.15.3) of package `cobalt-bin v0.19.3 (/tmp/renovate/repos/github/cobalt-org/cobalt.rs)`

failed to select a version for `indexmap` which could resolve this conflict

@renovate renovate bot enabled auto-merge (rebase) July 1, 2024 00:38
@renovate renovate bot merged commit 7ee436f into master Jul 1, 2024
15 of 16 checks passed
@renovate renovate bot deleted the renovate/compatible branch July 1, 2024 00:51
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