Skip to content

Commit

Permalink
Update Rust crate chrono to 0.4.31 (#20)
Browse files Browse the repository at this point in the history
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [chrono](https://togithub.com/chronotope/chrono) | workspace.dependencies | patch | `0.4.23` -> `0.4.31` |

---

### Release Notes

<details>
<summary>chronotope/chrono (chrono)</summary>

### [`v0.4.31`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.31): 0.4.31

[Compare Source](https://togithub.com/chronotope/chrono/compare/v0.4.30...v0.4.31)

Another maintenance release.
It was not a planned effort to improve our support for UNIX timestamps, yet most PRs seem related to this.

##### Deprecations

-   Deprecate `timestamp_nanos` in favor of the non-panicking `timestamp_nanos_opt` ([#&#8203;1275](https://togithub.com/chronotope/chrono/issues/1275))

##### Additions

-   Add `DateTime::<Utc>::from_timestamp` ([#&#8203;1279](https://togithub.com/chronotope/chrono/issues/1279), thanks [@&#8203;demurgos](https://togithub.com/demurgos))
-   Add `TimeZone::timestamp_micros` ([#&#8203;1285](https://togithub.com/chronotope/chrono/issues/1285), thanks [@&#8203;emikitas](https://togithub.com/emikitas))
-   Add `DateTime<Tz>::timestamp_nanos_opt` and `NaiveDateTime::timestamp_nanos_opt` ([#&#8203;1275](https://togithub.com/chronotope/chrono/issues/1275))
-   Add `UNIX_EPOCH` constants ([#&#8203;1291](https://togithub.com/chronotope/chrono/issues/1291))

##### Fixes

-   Format day of month in RFC 2822 without padding ([#&#8203;1272](https://togithub.com/chronotope/chrono/issues/1272))
-   Don't allow strange leap seconds which are not on a minute boundary initialization methods ([#&#8203;1283](https://togithub.com/chronotope/chrono/issues/1283))
    This makes many methods a little more strict:
    -   `NaiveTime::from_hms_milli`
    -   `NaiveTime::from_hms_milli_opt`
    -   `NaiveTime::from_hms_micro`
    -   `NaiveTime::from_hms_micro_opt`
    -   `NaiveTime::from_hms_nano`
    -   `NaiveTime::from_hms_nano_opt`
    -   `NaiveTime::from_num_seconds_from_midnight`
    -   `NaiveTime::from_num_seconds_from_midnight_opt`
    -   `NaiveDate::and_hms_milli`
    -   `NaiveDate::and_hms_milli_opt`
    -   `NaiveDate::and_hms_micro`
    -   `NaiveDate::and_hms_micro_opt`
    -   `NaiveDate::and_hms_nano`
    -   `NaiveDate::and_hms_nano_opt`
    -   `NaiveDateTime::from_timestamp`
    -   `NaiveDateTime::from_timestamp_opt`
    -   `TimeZone::timestamp`
    -   `TimeZone::timestamp_opt`
-   Fix underflow in `NaiveDateTime::timestamp_nanos_opt` ([#&#8203;1294](https://togithub.com/chronotope/chrono/issues/1294), thanks [@&#8203;crepererum](https://togithub.com/crepererum))

##### Documentation

-   Add more documentation about the RFC 2822 obsolete date format ([#&#8203;1267](https://togithub.com/chronotope/chrono/issues/1267))

##### Internal

-   Remove internal `__doctest` feature and `doc_comment` dependency ([#&#8203;1276](https://togithub.com/chronotope/chrono/issues/1276))
-   CI: Bump `actions/checkout` from 3 to 4 ([#&#8203;1280](https://togithub.com/chronotope/chrono/issues/1280))
-   Optimize `NaiveDate::add_days` for small values ([#&#8203;1214](https://togithub.com/chronotope/chrono/issues/1214))
-   Upgrade `pure-rust-locales` to 0.7.0 ([#&#8203;1288](https://togithub.com/chronotope/chrono/issues/1288), thanks [@&#8203;jeremija](https://togithub.com/jeremija) wo did good improvements on `pure-rust-locales`)

Thanks to all contributors on behalf of the chrono team, [@&#8203;djc](https://togithub.com/djc) and [@&#8203;pitdicker](https://togithub.com/pitdicker)!

### [`v0.4.30`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.30): 0.4.30

[Compare Source](https://togithub.com/chronotope/chrono/compare/v0.4.29...v0.4.30)

In this release, we have decided to swap out the `chrono::Duration` type (which has been a re-export of time 0.1 `Duration` type) with our own definition, which exposes a strict superset of the `time::Duration` API. This helps avoid warnings about the [CVE-2020-26235] and [RUSTSEC-2020-0071] advisories for downstream users and allows us to improve the `Duration` API going forward.

While this is technically a SemVer-breaking change, we expect the risk of downstream users experiencing actual incompatibility to be exceedingly limited (see [our analysis](https://togithub.com/chronotope/chrono/pull/1095#issuecomment-1571716955) of public code using a crater-like experiment), and not enough justification for the large ecosystem churn of a 0.5 release. If you have any feedback on these changes, please let us know in [#&#8203;1268](https://togithub.com/chronotope/chrono/issues/1268).

##### Additions

-   Add `NaiveDate::leap_year` ([#&#8203;1261](https://togithub.com/chronotope/chrono/issues/1261))

##### Documentation

-   Update main documentation from README ([#&#8203;1260](https://togithub.com/chronotope/chrono/issues/1260), thanks [@&#8203;Stygmates](https://togithub.com/Stygmates))
-   Add history of relation between chrono and time 0.1 to documentation ([chronotope/chrono#1264, [chronotope/chrono#1266)
-   Clarify `Timelike::num_seconds_from_midnight` is a simple mapping ([#&#8203;1255](https://togithub.com/chronotope/chrono/issues/1255))

#### Relation between chrono and time 0.1

Rust first had a `time` module added to `std` in its 0.7 release. It later moved to `libextra`, and then to a `libtime` library shipped alongside the standard library. In 2014 work on chrono started in order to provide a full-featured date and time library in Rust. Some improvements from chrono made it into the standard library; notably, `chrono::Duration` was included as `std::time::Duration` ([rust#15934]) in 2014.

In preparation of Rust 1.0 at the end of 2014 `libtime` was moved out of the Rust distro and into the `time` crate to eventually be redesigned ([rust#18832], [rust#18858]), like the `num` and `rand` crates. Of course chrono kept its dependency on this `time` crate. `time` started re-exporting `std::time::Duration` during this period. Later, the standard library was changed to have a more limited unsigned `Duration` type ([rust#24920], [RFC 1040]), while the `time` crate kept the full functionality with `time::Duration`. `time::Duration` had been a part of chrono's public API.

By 2016 `time` 0.1 lived under the `rust-lang-deprecated` organisation and was not actively maintained ([time#136]). chrono absorbed the platform functionality and `Duration` type of the `time` crate in [chrono#478] (the work started in [chrono#286]). In order to preserve compatibility with downstream crates depending on `time` and `chrono` sharing a `Duration` type, chrono kept depending on time 0.1. chrono offered the option to opt out of the `time` dependency by disabling the `oldtime` feature (swapping it out for an effectively similar chrono type). In 2019, [@&#8203;jhpratt](https://togithub.com/jhpratt) took over maintenance on the `time` crate and released what amounts to a new crate as `time` 0.2.

[rust#15934]: https://togithub.com/rust-lang/rust/pull/15934

[rust#18832]: https://togithub.com/rust-lang/rust/pull/18832#issuecomment-62448221

[rust#18858]: https://togithub.com/rust-lang/rust/pull/18858

[rust#24920]: https://togithub.com/rust-lang/rust/pull/24920

[RFC 1040]: https://rust-lang.github.io/rfcs/1040-duration-reform.html

[time#136]: https://togithub.com/time-rs/time/issues/136

[chrono#286]: https://togithub.com/chronotope/chrono/pull/286

[chrono#478]: https://togithub.com/chronotope/chrono/pull/478

##### Security advisories

In November of 2020 [CVE-2020-26235] and [RUSTSEC-2020-0071] were opened against the `time` crate. [@&#8203;quininer](https://togithub.com/quininer) had found that calls to `localtime_r` may be unsound ([chrono#499]). Eventually, almost a year later, this was also made into a security advisory against chrono as [RUSTSEC-2020-0159], which had platform code similar to `time`.

On Unix-like systems a process is given a timezone id or description via the `TZ` environment variable. We need this timezone data to calculate the current local time from a value that is in UTC, such as the time from the system clock. `time` 0.1 and chrono used the POSIX function `localtime_r` to do the conversion to local time, which reads the `TZ` variable.

Rust assumes the environment to be writable and uses locks to access it from multiple threads. Some other programming languages and libraries use similar locking strategies, but these are typically not shared across languages. More importantly, POSIX declares modifying the environment in a multi-threaded process as unsafe, and `getenv` in libc can't be changed to take a lock because it returns a pointer to the data (see [rust#27970] for more discussion).

Since version 4.20 chrono no longer uses `localtime_r`, instead using Rust code to query the timezone (from the `TZ` variable or via `iana-time-zone` as a fallback) and work with data from the system timezone database directly. The code for this was forked from the [tz-rs crate] by [@&#8203;x-hgg-x](https://togithub.com/x-hgg-x). As such, chrono now respects the Rust lock when reading the `TZ` environment variable. In general, code should avoid modifying the environment.

[CVE-2020-26235]: https://nvd.nist.gov/vuln/detail/CVE-2020-26235

[RUSTSEC-2020-0071]: https://rustsec.org/advisories/RUSTSEC-2020-0071

[chrono#499]: https://togithub.com/chronotope/chrono/pull/499

[RUSTSEC-2020-0159]: https://rustsec.org/advisories/RUSTSEC-2020-0159.html

[rust#27970]: https://togithub.com/rust-lang/rust/issues/27970

[chrono#677]: https://togithub.com/chronotope/chrono/pull/677

[tz-rs crate]: https://crates.io/crates/tz-rs

##### Removing time 0.1

Because time 0.1 has been unmaintained for years, however, the security advisory mentioned above has not been addressed. While chrono maintainers were careful not to break backwards compatibility with the `time::Duration` type, there has been a long stream of issues from users inquiring about the time 0.1 dependency with the vulnerability. We investigated the potential breakage of removing the time 0.1 dependency in [chrono#1095] using a crater-like experiment and determined that the potential for breaking (public) dependencies is very low. We reached out to those few crates that did still depend on compatibility with time 0.1.

As such, for chrono 0.4.30 we have decided to swap out the time 0.1 `Duration` implementation for a local one that will offer a strict superset of the existing API going forward. This will prevent most downstream users from being affected by the security vulnerability in time 0.1 while minimizing the ecosystem impact of semver-incompatible version churn.

[chrono#1095]: https://togithub.com/chronotope/chrono/pull/1095

Thanks to all contributors on behalf of the chrono team, [@&#8203;djc](https://togithub.com/djc) and [@&#8203;pitdicker](https://togithub.com/pitdicker)!

### [`v0.4.29`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.29): 0.4.29

[Compare Source](https://togithub.com/chronotope/chrono/compare/v0.4.28...v0.4.29)

This release fixes a panic introduced in chrono 0.4.27 in `FromStr<DateTime<Utc>>` ([#&#8203;1253](https://togithub.com/chronotope/chrono/issues/1253)).

Chrono now has a [Discord channel](https://discord.gg/sXpav4PS7M).

#### Fixes

-   Fix arbitrary string slicing in `parse_rfc3339_relaxed` ([#&#8203;1254](https://togithub.com/chronotope/chrono/issues/1254))

#### Deprecations

-   Deprecate `TimeZone::datetime_from_str` ([#&#8203;1251](https://togithub.com/chronotope/chrono/issues/1251))

#### Documentation

-   Correct documentation for `FromStr` for `Weekday` and `Month` ([#&#8203;1226](https://togithub.com/chronotope/chrono/issues/1226), thanks [@&#8203;wfraser](https://togithub.com/wfraser))

#### Internal improvements

-   Revert "add test_issue\_866" ([#&#8203;1238](https://togithub.com/chronotope/chrono/issues/1238))
-   CI: run tests on `i686` and `wasm32-wasi` ([#&#8203;1237](https://togithub.com/chronotope/chrono/issues/1237))
-   CI: Include doctests for code coverage ([#&#8203;1248](https://togithub.com/chronotope/chrono/issues/1248))
-   Move benchmarks to a separate crate ([#&#8203;1243](https://togithub.com/chronotope/chrono/issues/1243))
    This allows us to upgrade the criterion dependency to 5.1 without changing our MSRV.
-   Add Discord link to README ([#&#8203;1240](https://togithub.com/chronotope/chrono/issues/1240), backported in [#&#8203;1256](https://togithub.com/chronotope/chrono/issues/1256))

Thanks to all contributors on behalf of the chrono team, [@&#8203;djc](https://togithub.com/djc) and [@&#8203;pitdicker](https://togithub.com/pitdicker)!

### [`v0.4.28`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.28): 0.4.28

[Compare Source](https://togithub.com/chronotope/chrono/compare/v0.4.27...v0.4.28)

This release fixes a test failure on 32-bit targets introduced with 0.4.27, see [chronotope/chrono#1234.

### [`v0.4.27`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.27): 0.4.27

[Compare Source](https://togithub.com/chronotope/chrono/compare/v0.4.26...v0.4.27)

This release bumps the MSRV from 1.56 to 1.57. This allows us to take advantage of the panicking in const feature. In this release most methods on `NaiveDate` and `NaiveTime` are made const, `NaiveDateTime` and others will follow in a later release.

The parser for the `%+` formatting specifier and the `RFC3339` formatting item is switched from a strict to a relaxed parser (see [chronotope/chrono#1145). This matches the existing documentation, and the parser used by `DateTime::from_str`. If you need to validate the input, consider using `DateTime::from_rfc3339`.

#### Deprecations

-   Deprecate `DateTime::{from_local, from_utc}` ([chronotope/chrono#1175)

#### Additions

-   Let `DateTime::signed_duration_since` take argument with `Borrow` ([chronotope/chrono#1119)
-   Implement `PartialOrd` for `Month` ([chronotope/chrono#999, thanks [@&#8203;Munksgaard](https://togithub.com/Munksgaard))
-   Add `Ord` and `Eq` for types which already derive `PartialOrd` and `PartialEq` ([chronotope/chrono#1128, thanks [@&#8203;totikom](https://togithub.com/totikom))
-   implement `FusedIterator` for `NaiveDateDaysIterator` and `NaiveDateWeeksIterator` ([chronotope/chrono#1134)
-   Make `NaiveDateDaysIterator` and `NaiveDateWeeksIterator` public ([chronotope/chrono#1134)
-   Add `FromStr` for `FixedOffset` ([chronotope/chrono#1157, thanks [@&#8203;mcronce](https://togithub.com/mcronce))
-   Remove `Tz::Offset: Display` requirement from `DateTime::to_rfc*` ([chronotope/chrono#1160)
-   More flexible offset formatting (not exposed yet) ([chronotope/chrono#1160)
-   Make `StrftimeItems` with `unstable-locales` work without allocating ([chronotope/chrono#1152)
-   Make `NaiveDate::from_ymd_opt` const ([chronotope/chrono#1172, thanks [@&#8203;kamadorueda](https://togithub.com/kamadorueda))
-   Implement `Error` trait for `ParseWeekdayError` and `ParseMonthError` ([chronotope/chrono#539, thanks [@&#8203;mike-kfed](https://togithub.com/mike-kfed))
-   Make methods on `NaiveTime` const, update MSRV to 1.57 ([chronotope/chrono#1080)
-   Make methods on `NaiveDate` const ([chronotope/chrono#1205)
-   Implement operations for `core::time::Duration` on `DateTime` types ([chronotope/chrono#1229)

#### Fixes

-   Ensure `timestamp_nanos` panics on overflow in release builds ([chronotope/chrono#1123)
-   Fix `offset_from_local_datetime` for `wasm_bindgen` ([chronotope/chrono#1131)
-   Parsing: Consider `%s` to be a timestamp in UTC ([chronotope/chrono#1136)
-   Don't panic when formatting with `%#z` ([chronotope/chrono#1140, thanks [@&#8203;domodwyer](https://togithub.com/domodwyer))
-   Parsing: allow MINUS SIGN (U+2212) in offset ([chronotope/chrono#1087, thanks [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   Fix locale formatting for `%c` and `%r` ([chronotope/chrono#1165)
-   Localize decimal point with `unstable-locales` feature ([chronotope/chrono#1168)
-   Fix panic on macOS 10.12 caused by using version 1 of the TZif file format ([chronotope/chrono#1201, thanks to help from [@&#8203;jfro](https://togithub.com/jfro))
-   Fix deserialization of negative timestamps ([chronotope/chrono#1194)
-   Do not use `Offset`'s `Debug` impl when serializing `DateTime` ([chronotope/chrono#1035)
-   Allow missing seconds in `NaiveTime::from_str` ([chronotope/chrono#1181)
-   Do not depend on `android-tzdata` if the `clock` feature is not enabled ([chronotope/chrono#1220, thanks [@&#8203;AlexTMjugador](https://togithub.com/AlexTMjugador))
-   Small fixes to the RFC 3339 parsers ([chronotope/chrono#1145)

#### Documentation

-   Add "Errors" and "Panics" sections to API docs ([chronotope/chrono#1120)
-   Specify licenses in SPDX format ([chronotope/chrono#1132, backport of [chronotope/chrono#910, thanks [@&#8203;LingMan](https://togithub.com/LingMan))
-   Fix `NaiveTime` doc typo ([chronotope/chrono#1146, thanks [@&#8203;zachs18](https://togithub.com/zachs18))
-   Clarify nanosecond formatting specifier doc ([chronotope/chrono#1173)
-   Add warning against combining multiple `Datelike::with_*` ([chronotope/chrono#1199)
-   Fix typo "accepted" ([chronotope/chrono#1209, thanks [@&#8203;simon04](https://togithub.com/simon04))
-   Add some examples to `Utc::now` and `Local::now` ([chronotope/chrono#1192)
-   Add example to `Weekday::num_days_from_monday` ([chronotope/chrono#1193)
-   Fix some comments and panic messages ([chronotope/chrono#1221, thanks [@&#8203;umanwizard](https://togithub.com/umanwizard))

#### Internal improvements

-   `DateTime::to_rfc_*` optimizations ([chronotope/chrono#1200)
-   Move all tests into modules, fix clippy warnings ([chronotope/chrono#1138)
-   Offset parsing cleanup ([chronotope/chrono#1158)
-   Factor out formatting to `format/formatting.rs` ([chronotope/chrono#1156)
-   Format refactorings ([chronotope/chrono#1198)
-   Format toml files with taplo ([chronotope/chrono#1117, thanks [@&#8203;tottoto](https://togithub.com/tottoto))
-   Stop vendoring `saturating_abs` ([chronotope/chrono#1124)
-   CI: shell set -eux, use bash ([chronotope/chrono#1103, thanks [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   Fix dead code error when running dateutils test on Windows ([chronotope/chrono#1125)
-   Remove `Makefile` ([chronotope/chrono#1133)
-   CI: Test `wasm-bindgen` feature ([chronotope/chrono#1131)
-   Stop using deprecated methods in parse module ([chronotope/chrono#1142)
-   Add formatting benchmarks ([chronotope/chrono#1155)
-   Feature gate tests instead of methods ([chronotope/chrono#1159, [chronotope/chrono#1162)
-   Parallelize `try_verify_against_date_command` ([chronotope/chrono#1161)
-   CI: also run integration tests with `no_std` ([chronotope/chrono#1166)
-   Split ` test_parse  ` ([chronotope/chrono#1170)
-   Remove `#![deny(dead_code)]` ([chronotope/chrono#1187)
-   Clippy fixes for Rust 1.71 ([chronotope/chrono#1186)
-   Various small improvements ([chronotope/chrono#1191)
-   Add unit test for uncovered regions ([chronotope/chrono#1149, thanks [@&#8203;CXWorks](https://togithub.com/CXWorks))
-   Don't test the same thing twice in `test_date_extreme_offset` ([chronotope/chrono#1195)
-   CI: Add workflow code coverage report and upload ([chronotope/chrono#1178, [chronotope/chrono#1215, thanks [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   CI: fail on warnings in `features-check` ([chronotope/chrono#1216)
-   Switch to windows-bindgen ([chronotope/chrono#1202, thanks to help from [@&#8203;MarijnS95](https://togithub.com/MarijnS95))

Thanks to all contributors on behalf of the chrono team, [@&#8203;djc](https://togithub.com/djc) and [@&#8203;pitdicker](https://togithub.com/pitdicker)!

### [`v0.4.26`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.26): 0.4.26

[Compare Source](https://togithub.com/chronotope/chrono/compare/v0.4.25...v0.4.26)

The changes from [#&#8203;807](https://togithub.com/chronotope/chrono/issues/807) we merged for 0.4.25 unfortunately restricted parsing in a way that was incompatible with earlier 0.4.x releases. We reverted this in [#&#8203;1113](https://togithub.com/chronotope/chrono/issues/1113). A small amount of other changes were merged since.

-   Update README ([#&#8203;1111](https://togithub.com/chronotope/chrono/issues/1111), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Revert backport of [#&#8203;807](https://togithub.com/chronotope/chrono/issues/807) ([#&#8203;1113](https://togithub.com/chronotope/chrono/issues/1113), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Update to 2021 edition ([#&#8203;1109](https://togithub.com/chronotope/chrono/issues/1109), thanks to [@&#8203;tottoto](https://togithub.com/tottoto))
-   Fix `DurationRound` panics from issue [#&#8203;1010](https://togithub.com/chronotope/chrono/issues/1010) ([#&#8203;1093](https://togithub.com/chronotope/chrono/issues/1093), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   tests: date path consolidate (branch 0.4.x) ([#&#8203;1090](https://togithub.com/chronotope/chrono/issues/1090), thanks to [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   Parse tests nanosecond bare dot (branch 0.4.x) ([#&#8203;1098](https://togithub.com/chronotope/chrono/issues/1098), thanks to [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   yamllint cleanup lint.yml test.yml ([#&#8203;1102](https://togithub.com/chronotope/chrono/issues/1102), thanks to [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   Remove num-iter dependency ([#&#8203;1107](https://togithub.com/chronotope/chrono/issues/1107), thanks to [@&#8203;tottoto](https://togithub.com/tottoto))

Thanks on behalf of the chrono team ([@&#8203;djc](https://togithub.com/djc) and [@&#8203;esheppa](https://togithub.com/esheppa)) to all contributors!

### [`v0.4.25`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.25): 0.4.25

[Compare Source](https://togithub.com/chronotope/chrono/compare/v0.4.24...v0.4.25)

Time for another maintenance release. This release bumps the MSRV to 1.56; given MSRV bumps in chrono's dependencies (notably for syn 2), we felt that it no longer made sense to support any older versions. Feedback welcome in our issue tracker!

#### Additions

-   Bump the MSRV to 1.56 ([#&#8203;1053](https://togithub.com/chronotope/chrono/issues/1053))
-   Apply comments from MSRV bump ([#&#8203;1026](https://togithub.com/chronotope/chrono/issues/1026), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Remove num-integer dependency ([#&#8203;1037](https://togithub.com/chronotope/chrono/issues/1037), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Add `NaiveDateTime::and_utc()` method ([#&#8203;952](https://togithub.com/chronotope/chrono/issues/952), thanks to [@&#8203;klnusbaum](https://togithub.com/klnusbaum))
-   derive `Hash` for most pub types that also derive `PartialEq` ([#&#8203;938](https://togithub.com/chronotope/chrono/issues/938), thanks to [@&#8203;bruceg](https://togithub.com/bruceg))
-   Add `parse_and_remainder()` methods ([#&#8203;1011](https://togithub.com/chronotope/chrono/issues/1011), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Add `DateTime::fix_offset()` ([#&#8203;1030](https://togithub.com/chronotope/chrono/issues/1030), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Add `#[track_caller]` to `LocalResult::unwrap` ([#&#8203;1046](https://togithub.com/chronotope/chrono/issues/1046), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Add `#[must_use]` to some methods ([#&#8203;1007](https://togithub.com/chronotope/chrono/issues/1007), thanks to [@&#8203;aceArt-GmbH](https://togithub.com/aceArt-GmbH))
-   Implement `PartialOrd` for `Month` ([#&#8203;999](https://togithub.com/chronotope/chrono/issues/999), thanks to [@&#8203;Munksgaard](https://togithub.com/Munksgaard))
-   Add `impl From<NaiveDateTime> for NaiveDate` ([#&#8203;1012](https://togithub.com/chronotope/chrono/issues/1012), thanks to [@&#8203;pezcore](https://togithub.com/pezcore))
-   Extract timezone info from tzdata file on Android ([#&#8203;978](https://togithub.com/chronotope/chrono/issues/978), thanks to [@&#8203;RumovZ](https://togithub.com/RumovZ))

#### Fixes

-   Prevent string slicing inside char boundaries ([#&#8203;1024](https://togithub.com/chronotope/chrono/issues/1024), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   fix IsoWeek so that its flags are always correct ([#&#8203;991](https://togithub.com/chronotope/chrono/issues/991), thanks to [@&#8203;moshevds](https://togithub.com/moshevds))
-   Fix out-of-range panic in `NaiveWeek::last_day` ([#&#8203;1070](https://togithub.com/chronotope/chrono/issues/1070), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Use correct offset in conversion from `Local` to `FixedOffset` ([#&#8203;1041](https://togithub.com/chronotope/chrono/issues/1041), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Fix military timezones in RFC 2822 parsing ([#&#8203;1013](https://togithub.com/chronotope/chrono/issues/1013), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Guard against overflow in NaiveDate::with_\*0 methods ([#&#8203;1023](https://togithub.com/chronotope/chrono/issues/1023), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Fix panic in from_num_days_from_ce_opt ([#&#8203;1052](https://togithub.com/chronotope/chrono/issues/1052), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))

#### Refactoring

-   Rely on std for getting local time offset ([#&#8203;1072](https://togithub.com/chronotope/chrono/issues/1072), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Make functions in internals const ([#&#8203;1043](https://togithub.com/chronotope/chrono/issues/1043), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Refactor windows module in `Local` ([#&#8203;992](https://togithub.com/chronotope/chrono/issues/992), thanks to [@&#8203;nekevss](https://togithub.com/nekevss))
-   Simplify from_timestamp_millis, from_timestamp_micros ([#&#8203;1032](https://togithub.com/chronotope/chrono/issues/1032), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Backport [#&#8203;983](https://togithub.com/chronotope/chrono/issues/983) and [#&#8203;1000](https://togithub.com/chronotope/chrono/issues/1000) ([#&#8203;1063](https://togithub.com/chronotope/chrono/issues/1063), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))

#### Documentation

-   Backport documentation improvements ([#&#8203;1066](https://togithub.com/chronotope/chrono/issues/1066), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Add documentation for %Z quirk ([#&#8203;1051](https://togithub.com/chronotope/chrono/issues/1051), thanks to [@&#8203;campbellcole](https://togithub.com/campbellcole))
-   Add an example to Weekday ([#&#8203;1019](https://togithub.com/chronotope/chrono/issues/1019), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))

#### Internal improvements

-   Gate test on `clock` feature ([#&#8203;1061](https://togithub.com/chronotope/chrono/issues/1061), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   CI: Also run tests with `--no-default-features` ([#&#8203;1059](https://togithub.com/chronotope/chrono/issues/1059), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Prevent `bench_year_flags_from_year` from being optimized out ([#&#8203;1034](https://togithub.com/chronotope/chrono/issues/1034), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Fix test_leap_second during DST transition ([#&#8203;1064](https://togithub.com/chronotope/chrono/issues/1064), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Fix warnings when running tests on Windows ([#&#8203;1038](https://togithub.com/chronotope/chrono/issues/1038), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Fix tests on AIX ([#&#8203;1028](https://togithub.com/chronotope/chrono/issues/1028), thanks to [@&#8203;ecnelises](https://togithub.com/ecnelises))
-   Fix doctest warnings, remove mention of deprecated methods from main doc ([#&#8203;1081](https://togithub.com/chronotope/chrono/issues/1081), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Reformat `test_datetime_parse_from_str` ([#&#8203;1078](https://togithub.com/chronotope/chrono/issues/1078), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   GitHub yml shell `set -eux`, use bash ([#&#8203;1103](https://togithub.com/chronotope/chrono/issues/1103), thanks to [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   test: explicitly set `LANG` to `c` in gnu `date` ([#&#8203;1089](https://togithub.com/chronotope/chrono/issues/1089), thanks to [@&#8203;scarf005](https://togithub.com/scarf005))
-   Switch test to `TryFrom` ([#&#8203;1086](https://togithub.com/chronotope/chrono/issues/1086), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   Add test for issue 551 ([#&#8203;1020](https://togithub.com/chronotope/chrono/issues/1020), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   RFC 2822 single-letter obsolete tests ([#&#8203;1014](https://togithub.com/chronotope/chrono/issues/1014), thanks to [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   \[CI] Lint Windows target and documentation links ([#&#8203;1062](https://togithub.com/chronotope/chrono/issues/1062), thanks to [@&#8203;pitdicker](https://togithub.com/pitdicker))
-   add test_issue\_866 ([#&#8203;1077](https://togithub.com/chronotope/chrono/issues/1077), thanks to [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   Remove AUTHORS metadata ([#&#8203;1074](https://togithub.com/chronotope/chrono/issues/1074))

On behalf of [@&#8203;djc](https://togithub.com/djc) and [@&#8203;esheppa](https://togithub.com/esheppa), thanks to all contributors!

### [`v0.4.24`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.24): 0.4.24

[Compare Source](https://togithub.com/chronotope/chrono/compare/v0.4.23...v0.4.24)

This is a small maintenance release with accumulated fixes and improvements.

-   Fix doc on `Days::new()` to refer to days, not months ([#&#8203;874](https://togithub.com/chronotope/chrono/issues/874), thanks to [@&#8203;brotskydotcom](https://togithub.com/brotskydotcom))
-   Clarify out of range value for `from_timestamp_opt()` ([#&#8203;879](https://togithub.com/chronotope/chrono/issues/879), thanks to [@&#8203;xmo-odoo](https://togithub.com/xmo-odoo))
-   Add `format_localized()` for `NaiveDate` ([#&#8203;881](https://togithub.com/chronotope/chrono/issues/881), thanks to [@&#8203;mseele](https://togithub.com/mseele))
-   Fix bug in `Add`/`Sub` `Days`, add tests with DST timezone ([#&#8203;878](https://togithub.com/chronotope/chrono/issues/878))
-   Make `NaiveTime::MIN` public ([#&#8203;890](https://togithub.com/chronotope/chrono/issues/890))
-   Fix `from_timestamp_millis()` implementation and add more tests ([#&#8203;885](https://togithub.com/chronotope/chrono/issues/885))
-   Fix typo in docstrings ([#&#8203;897](https://togithub.com/chronotope/chrono/issues/897), thanks to [@&#8203;dandxy89](https://togithub.com/dandxy89))
-   Add test proving that [#&#8203;903](https://togithub.com/chronotope/chrono/issues/903) is fixed in 0.4.x head ([#&#8203;905](https://togithub.com/chronotope/chrono/issues/905), thanks to [@&#8203;umanwizard](https://togithub.com/umanwizard))
-   Add `from_timestamp_micros()` function ([#&#8203;906](https://togithub.com/chronotope/chrono/issues/906), thanks to [@&#8203;umanwizard](https://togithub.com/umanwizard))
-   Check cargo-deny in CI ([#&#8203;909](https://togithub.com/chronotope/chrono/issues/909))
-   Derive `Hash` for most pub types that also derive `PartialEq` ([#&#8203;938](https://togithub.com/chronotope/chrono/issues/938), thanks to [@&#8203;bruceg](https://togithub.com/bruceg))
-   Update deprecated methods in `from_utc()` example ([#&#8203;939](https://togithub.com/chronotope/chrono/issues/939), thanks to [@&#8203;greg-el](https://togithub.com/greg-el))
-   Fix panic in `DateTime::checked_add_days()` ([#&#8203;942](https://togithub.com/chronotope/chrono/issues/942), thanks to [@&#8203;Ekleog](https://togithub.com/Ekleog))
-   More documentation for dates before 1 BCE or after 9999 CE ([#&#8203;950](https://togithub.com/chronotope/chrono/issues/950), thanks to [@&#8203;cgit](https://togithub.com/cgit))
-   Improve `FixedOffset` docs ([#&#8203;953](https://togithub.com/chronotope/chrono/issues/953), thanks to [@&#8203;klnusbaum](https://togithub.com/klnusbaum))
-   Add chrono-fuzz to CI and update its libfuzzer-sys dependency ([#&#8203;968](https://togithub.com/chronotope/chrono/issues/968), thanks to [@&#8203;LingMan](https://togithub.com/LingMan))
-   Fixes to parsing and calculation of week numbers ([#&#8203;966](https://togithub.com/chronotope/chrono/issues/966), thanks to [@&#8203;raphaelroosz](https://togithub.com/raphaelroosz))
-   Make iana-time-zone a target specific dependency ([#&#8203;980](https://togithub.com/chronotope/chrono/issues/980), thanks to [@&#8203;krtab](https://togithub.com/krtab))
-   Make eligible functions `const` ([#&#8203;984](https://togithub.com/chronotope/chrono/issues/984), thanks to [@&#8203;tormeh](https://togithub.com/tormeh))

Thanks to all contributors from the chrono team, [@&#8203;esheppa](https://togithub.com/esheppa) and [@&#8203;djc](https://togithub.com/djc).

</details>

---

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/sammyfilly/Nextjs).
  • Loading branch information
renovate[bot] committed Sep 21, 2023
1 parent c0fe325 commit d49fd9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -81,7 +81,7 @@ async-compression = { version = "0.3.13", default-features = false, features = [
async-recursion = "1.0.5"
async-trait = "0.1.73"
atty = "0.2.14"
chrono = "0.4.23"
chrono = "0.4.31"
clap = "4.1.6"
clap_complete = "4.1.2"
concurrent-queue = "2.1.0"
Expand Down

0 comments on commit d49fd9c

Please sign in to comment.