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

Small fixes to the RFC 3339 parsers #1145

Merged
merged 9 commits into from Aug 29, 2023

Conversation

pitdicker
Copy link
Collaborator

@pitdicker pitdicker commented Jun 11, 2023

We have two RFC 3339 parsers in chrono:

  • a strict parser in format::parse::parse_rfc3339, used by DateTime<FixedOffset>::parse_from_rfc_3339 and %+.
  • a permissive parser in impl str::FromStr for DateTime<FixedOffset>

This branch fixed a couple of issues with both parsers:

  • The separator between a date and time can be a space.
    From the standard:

    NOTE: ISO 8601 defines date and time separated by "T". Applications using this syntax may choose, for the sake of readability, to specify a full-date and full-time separated by (say) a space character.

    The permissive parser already accepted a space, now the strict parser also does.
    The vague wording suggest more characters than 'T' and ' ' might be allowed, but I have stopped at adding just a space.

  • Allow 't' as a seperator between date and time.
    From the standard:

    NOTE: Per [ABNF] and ISO8601, the "T" and "Z" characters in this syntax may alternatively be lower case "t" or "z" respectively.

    The strict parser accepted 't', now the relaxed parser also does.

  • Don't support UTC as a timezone name in the strict parser.
    RFC 3339 only allows 'Z' or an offset, not UTC.
    It seems support round tripping display <-> datetime #378 accidentally made the strict parser accept this.
    For the relaxed parser it makes sense to accept UTC, as it allows roundtripping with the Debug format of DateTime<Utc>.

  • The %+ formatting specifier, which uses the RFC3339 formatting item, has as documentation:

    Same as %Y-%m-%dT%H:%M:%S%.f%:z, i.e. 0, 3, 6 or 9 fractional digits for seconds and colons in the time zone offset.

    This format also supports having a Z or UTC in place of %:z. They are equivalent to +00:00.

    Note that all T, Z, and UTC are parsed case-insensitively.

    The typical strftime implementations have different (and locale-dependent) formats for this specifier. While Chrono's format for %+ is far more stable, it is best to avoid this specifier if you want to control the exact output.

    Al the formatting specifiers noted in this documentation are forgiving with padding. The permissive parser uses the exact formatting items listed here. So I factored out the permissive parser from the FromString implementation, and switched the RFC3339 item to use that parser instead of the strict one.

The remaining differences of the permissive parser with the strict one are:

  • Values don't require padding to two digits.
  • Years outside the range 0...=9999 are accepted, but they must include a sign.
  • UTC is accepted as a valid timezone name/offset.
  • There can be spaces between any of the components.
  • The colon in the offset may be missing.

@pitdicker pitdicker force-pushed the reduce_utc_parsing_hack branch 3 times, most recently from 56104f4 to 2376a0a Compare June 11, 2023 12:04
Err((_s, e)) => return Err(e),
Ok(_) => return Err(NOT_ENOUGH),
};
s = s.trim_left();
Copy link
Contributor

@jtmoon79 jtmoon79 Jun 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recommend against trim_left as it allows infinite length variety of whitespaces. Very odd and unpleasantly surprising parse successes may occur. I suggest constraining this to zero or one whitespace character.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree, and this matches your work in #807. But I would like to just match the existing implementation, and adjust whitespace handling an another issue.

@djc
Copy link
Contributor

djc commented Jun 12, 2023

Instead of this, I think we should merge both parsers, parametrizing them for the behaviors in which their strictness varies.

@pitdicker pitdicker force-pushed the reduce_utc_parsing_hack branch 2 times, most recently from c9228ff to 281eb4b Compare June 12, 2023 09:04
@pitdicker
Copy link
Collaborator Author

Instead of this, I think we should merge both parsers, parametrizing them for the behaviors in which their strictness varies.

I would agree in theory, but not in this one case. We would have to conditionally allow space padding between all values and literals, and conditionally require zero padding on the values. We can't reuse the standard formatting items as they are too permissive. I will turn out pretty complex and ugly.

The strict parser is pretty simple and somewhat performance-sensitive (used for deserialization). Do we want to introduce 15~20 extra branches into that?

I would keep them separated as they are now.

@pitdicker pitdicker force-pushed the reduce_utc_parsing_hack branch 2 times, most recently from dcd8540 to 172bdef Compare June 12, 2023 11:26
@pitdicker pitdicker force-pushed the reduce_utc_parsing_hack branch 3 times, most recently from 681ac81 to 6e93a14 Compare June 30, 2023 21:06
@pitdicker pitdicker force-pushed the reduce_utc_parsing_hack branch 2 times, most recently from 1208594 to 5bc3730 Compare August 11, 2023 11:15
@codecov
Copy link

codecov bot commented Aug 11, 2023

Codecov Report

Merging #1145 (012c3c8) into 0.4.x (2d2f847) will increase coverage by 0.02%.
The diff coverage is 98.14%.

@@            Coverage Diff             @@
##            0.4.x    #1145      +/-   ##
==========================================
+ Coverage   86.08%   86.10%   +0.02%     
==========================================
  Files          37       37              
  Lines       13501    13522      +21     
==========================================
+ Hits        11622    11643      +21     
  Misses       1879     1879              
Files Changed Coverage Δ
src/format/mod.rs 75.36% <ø> (ø)
src/format/parse.rs 97.22% <96.15%> (-0.11%) ⬇️
src/datetime/mod.rs 75.70% <100.00%> (+0.09%) ⬆️
src/datetime/tests.rs 96.53% <100.00%> (+0.03%) ⬆️
src/format/scan.rs 99.25% <100.00%> (+0.71%) ⬆️

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@pitdicker
Copy link
Collaborator Author

@djc Can you please give this PR another round of review? I would like to make some progress on #1083 (offset parsing), and it depends on the cleanups in this one.

@djc
Copy link
Contributor

djc commented Aug 28, 2023

Would you mind splicing the explanation from the PR description into the messages for the relevant commits? Ideally each commit would explain why the change is made (if it isn't self-evident).

Also, please move the parse_rfc3339_relaxed() definition below the FromStr impl that uses it.

@pitdicker
Copy link
Collaborator Author

Done.

@pitdicker
Copy link
Collaborator Author

The upload to codecov.io failed.

@pitdicker
Copy link
Collaborator Author

Appearently codecov.io can get rate-limited by github if we don't use an upload token. See codecov/codecov-action#557 (comment) and https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954.

@djc Is this something we would want to fix? And I think only you can get the token and set a secret?

src/format/parse.rs Outdated Show resolved Hide resolved
Ok(_) => return Err(NOT_ENOUGH),
};
s = s.trim_start();
let (s, offset) = if s.starts_with("UTC") || s.starts_with("utc") {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again, it's a bit unclear to me why we want to make this change. Maybe add some comments? What about mixed-case UtC or Utc?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure which change you mean. Moving this code from scan::timezone_offset to parse_rfc3339_relaxed?

It seems like a hack to me that if we set the allow_zulu flag to parse Z we also accept the time zone abbreviation UTC. That is what the TimezoneName item is for.

I'll add some comments.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess the change in general? You're moving support for the UTC offset suffix from timezone_offset() to parse_rfc3339_relaxed(). As far as I can tell, this makes our parsing more strict, so some parses that used to work will now fail. Why do you want to make this change?

Copy link
Collaborator Author

@pitdicker pitdicker Aug 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As far as I can tell, this makes our parsing more strict, so some parses that used to work will now fail.

I have to admit I forgot about it (I wrote the first version end of April). It would only change how the following two items parse:

    /// Offset from the local time to UTC (`+09:00` or `-04:00` or `Z`).
    ///
    /// In the parser, the colon can be omitted and/or surrounded with any amount of whitespace,
    /// and `Z` can be either in upper case or in lower case.
    /// The offset is limited from `-24:00` to `+24:00`,
    /// which is the same as [`FixedOffset`](../offset/struct.FixedOffset.html)'s range.
    TimezoneOffsetColonZ,
    /// Same as [`TimezoneOffsetColonZ`](#variant.TimezoneOffsetColonZ) but prints no colon.
    /// Parsing allows an optional colon.
    TimezoneOffsetZ,

Both are not currently exposed as a formatting specifier, except as part of %+. And they don't mention anything about accepting "UTC". So I thought the impact would be basically none.

Parsing "UTC" was added in #378 for FromStr, with no mention that it would make TimezoneOffsetColonZ and TimezoneOffsetZ accept more inputs.

But good point, that is important!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about mixed-case UtC or Utc?

Good catch, I did not think about this. I have something against case-insensitive compares that accept things like UtC. But it was accepted before. What do you think?

Copy link
Contributor

@djc djc Aug 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, if those are the only entry points I think this risk is acceptable.

Given the limited complexity from accepting mixed-case UTC variations, I'd rather keep it. Maybe add a test to avoid regressing it in the future?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

The result of `checked_add_signed` will never be a leap second, so
it is not suitable for creating test values with leap seconds.
From the standard:
> NOTE: ISO 8601 defines date and time separated by "T". Applications using
> this syntax may choose, for the sake of readability, to specify a full-date
> and full-time separated by (say) a space character.

The permissive parser already accepted a space, now the strict parser also
accepts it.
The vague wording suggest more characters than 'T' and ' ' might be allowed,
but I have stopped at adding just a space.
This allows us to start using the permissive parser for the `RFC3339` item,
which matches the documentation more closely.
When used for the `RFC3339` formatting item it should not consume the trailing
whitespace, only in the `from_str` method.
…xed`

From the standard:
> NOTE: Per [ABNF] and ISO8601, the "T" and "Z" characters in this syntax may
> alternatively be lower case "t" or "z" respectively.

The strict parser accepted 't', now the relaxed parser also does.
We want this to use the strict parser directly, so we can switch the `RFC3339`
item to a relaxed parser.
@djc
Copy link
Contributor

djc commented Aug 29, 2023

Alright, would you mind updating the release notes with items for this and #1229? Then we can push this thing out.

@pitdicker pitdicker merged commit 9ab0259 into chronotope:0.4.x Aug 29, 2023
36 checks passed
@pitdicker pitdicker deleted the reduce_utc_parsing_hack branch August 29, 2023 13:15
renovate bot added a commit to ziyadedher/evm-bench that referenced this pull request Aug 29, 2023
[![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) | dependencies |
patch | `0.4.26` -> `0.4.27` |

---

### Release Notes

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

###
[`v0.4.27`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.27):
0.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.

##### 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#856,
thanks [@&#8203;keymandll](https://togithub.com/keymandll))
- 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)
- 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)!

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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.

---

- [ ] <!-- rebase-check -->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/ziyadedher/evm-bench).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi42OC4xIiwidXBkYXRlZEluVmVyIjoiMzYuNjguMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
aDotInTheVoid added a commit to aDotInTheVoid/triphosphate that referenced this pull request Sep 1, 2023
chronotope/chrono#1145

long term, we need to write our own rfc3339 parser
fbjork added a commit to grafbase/grafbase that referenced this pull request Sep 4, 2023
[![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) | dependencies |
patch | `0.4.26` -> `0.4.28` |

---

### Release Notes

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

###
[`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)!

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (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.

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

---

- [ ] <!-- rebase-check -->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/grafbase/grafbase).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi43OC44IiwidXBkYXRlZEluVmVyIjoiMzYuNzguOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Sep 21, 2023
[![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).
kodiakhq bot pushed a commit to X-oss-byte/Canary-nextjs that referenced this pull request May 1, 2024
[![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) | dependencies | patch | `0.4` -> `0.4.38` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

---

### Release Notes

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

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

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

This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient `days_since` method for the `Weekday` type.

Chrono 0.4.38 also removes the long deprecated `rustc-serialize` feature. Support for `rustc-serialize` will be [soft-destabilized in the next Rust edition](https://togithub.com/rust-lang/rust/pull/116016). Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono.

In chrono 0.4.36 we made an accidental breaking change by switching to `derive(Copy)` for `DateTime` instead of a manual implementation. It is reverted in this release.

### Removals

-   Remove `rustc-serialize` feature ([#&#8203;1548](https://togithub.com/chronotope/chrono/issues/1548), thanks [@&#8203;workingjubilee](https://togithub.com/workingjubilee))

### Additions

-   Add `Weekday::days_since` ([#&#8203;1249](https://togithub.com/chronotope/chrono/issues/1249), based on [#&#8203;216](https://togithub.com/chronotope/chrono/issues/216) by [@&#8203;clarfonthey](https://togithub.com/clarfonthey))
-   Add `TimeDelta::checked_mul` and `TimeDelta::checked_div` ([#&#8203;1565](https://togithub.com/chronotope/chrono/issues/1565), thanks [@&#8203;Zomtir](https://togithub.com/Zomtir))

### Fixes

-   Return error when rounding with a zero duration ([#&#8203;1474](https://togithub.com/chronotope/chrono/issues/1474), thanks [@&#8203;Dav1dde](https://togithub.com/Dav1dde))
-   Manually implement `Copy` for `DateTime` if offset is `Copy` ([#&#8203;1573](https://togithub.com/chronotope/chrono/issues/1573))

### Internal

-   Inline `test_encodable_json` and `test_decodable_json` functions ([#&#8203;1550](https://togithub.com/chronotope/chrono/issues/1550))
-   CI: Reduce combinations in `cargo hack check` ([#&#8203;1553](https://togithub.com/chronotope/chrono/issues/1553))
-   Refactor formatting code ([#&#8203;1335](https://togithub.com/chronotope/chrono/issues/1335))
-   Optimize number formatting ([#&#8203;1558](https://togithub.com/chronotope/chrono/issues/1558))
-   Only package files needed for building and testing ([#&#8203;1554](https://togithub.com/chronotope/chrono/issues/1554))

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.37`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.37)

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

Version 0.4.36 introduced an unexpected breaking change and was yanked. In it `LocalResult` was renamed to `MappedLocalTime` to avoid the impression that it is a `Result` type were some of the results are errors. For backwards compatibility a type alias with the old name was added.

As it turns out there is one case where a type alias behaves differently from the regular enum: you can't import enum variants from a type alias with `use chrono::LocalResult::*`. With 0.4.37 we make the new name `MappedLocalTime` the alias, but keep using it in function signatures and the documentation as much as possible.

See also the release notes of [chrono 0.4.36](https://togithub.com/chronotope/chrono/releases/tag/v0.4.36) from yesterday for the yanked release.

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

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

This release un-deprecates the methods on `TimeDelta` that were deprecated with the 0.4.35 release because of the churn they are causing for the ecosystem.

New is the `DateTime::with_time()` method. As an example of when it is useful:

```rust
use chrono::{Local, NaiveTime};
// Today at 12:00:00
let today_noon = Local::now().with_time(NaiveTime::from_hms_opt(12, 0, 0).unwrap());
```

### Additions

-   Add `DateTime::with_time()` ([#&#8203;1510](https://togithub.com/chronotope/chrono/issues/1510))

### Deprecations

-   Revert `TimeDelta` deprecations ([#&#8203;1543](https://togithub.com/chronotope/chrono/issues/1543))
-   Deprecate `TimeStamp::timestamp_subsec_nanos`, which was missed in the 0.4.35 release ([#&#8203;1486](https://togithub.com/chronotope/chrono/issues/1486))

### Documentation

-   Correct version number of deprecation notices ([#&#8203;1486](https://togithub.com/chronotope/chrono/issues/1486))
-   Fix some typos ([#&#8203;1505](https://togithub.com/chronotope/chrono/issues/1505))
-   Slightly improve serde documentation ([#&#8203;1519](https://togithub.com/chronotope/chrono/issues/1519))
-   Main documentation: simplify links and reflow text ([#&#8203;1535](https://togithub.com/chronotope/chrono/issues/1535))

### Internal

-   CI: Lint benchmarks ([#&#8203;1489](https://togithub.com/chronotope/chrono/issues/1489))
-   Remove unnessary `Copy` and `Send` impls ([#&#8203;1492](https://togithub.com/chronotope/chrono/issues/1492), thanks [@&#8203;erickt](https://togithub.com/erickt))
-   Backport streamlined `NaiveDate` unit tests ([#&#8203;1500](https://togithub.com/chronotope/chrono/issues/1500), thanks [@&#8203;Zomtir](https://togithub.com/Zomtir))
-   Rename `LocalResult` to `TzResolution`, add alias ([#&#8203;1501](https://togithub.com/chronotope/chrono/issues/1501))
-   Update windows-bindgen to 0.55 ([#&#8203;1504](https://togithub.com/chronotope/chrono/issues/1504))
-   Avoid duplicate imports, which generate warnings on nightly ([#&#8203;1507](https://togithub.com/chronotope/chrono/issues/1507))
-   Add extra debug assertions to `NaiveDate::from_yof` ([#&#8203;1518](https://togithub.com/chronotope/chrono/issues/1518))
-   Some small simplifications to `DateTime::date_naive` and `NaiveDate::diff_months` ([#&#8203;1530](https://togithub.com/chronotope/chrono/issues/1530))
-   Remove `unwrap` in Unix `Local` type ([#&#8203;1533](https://togithub.com/chronotope/chrono/issues/1533))
-   Use different method to ignore feature-dependent doctests ([#&#8203;1534](https://togithub.com/chronotope/chrono/issues/1534))

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.35`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.35)

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

Most of our efforts have shifted to improving the API for a 0.5 release, for which cleanups and refactorings are landing on the 0.4.x branch.

The most significant changes in this release are two sets of deprecations.

-   We deprecated all timestamp-related methods on `NaiveDateTime`. The reason is that a timestamp is defined to be in UTC. The `NaiveDateTime` type doesn't know the offset from UTC, so it was technically wrong to have these methods. The alternative is to use the similar methods on the `DateTime<Utc>` type, or from the `TimeZone` trait.

    Converting from `NaiveDateTime` to `DateTime<Utc>` is simple with `.and_utc()`, and in the other direction with `.naive_utc()`.

-   The panicking constructors of `TimeDelta` (the new name of the `Duration` type) are deprecated. This was the last part of chrono that defaulted to panicking on error, dating from before rust 1.0.

-   A nice change is that `NaiveDate` now includes a niche. So now `Option<NaiveDate>`, `Option<NaiveDateTime>` and `Option<DateTime<Tz>>` are the same size as their base types.

-   `format::Numeric` and `format::Fixed` are marked as `non_exhaustive`. This will allow us to improve our formatting and parsing support, and we have reason to believe this breaking change will have little to no impact on users.

### Additions

-   Add `DateTime::{from_timestamp_micros, from_timestamp_nanos}` ([#&#8203;1234](https://togithub.com/chronotope/chrono/issues/1234))
-   Add getters to `Parsed` ([#&#8203;1465](https://togithub.com/chronotope/chrono/issues/1465))

### Deprecations

-   Deprecate timestamp methods on `NaiveDateTime` ([#&#8203;1473](https://togithub.com/chronotope/chrono/issues/1473))
-   Deprecate panicking constructors of `TimeDelta` ([#&#8203;1450](https://togithub.com/chronotope/chrono/issues/1450))

### Changes/fixes

-   Use `NonZeroI32` inside `NaiveDate` ([#&#8203;1207](https://togithub.com/chronotope/chrono/issues/1207))
-   Mark `format::Numeric` and `format::Fixed` as `non_exhaustive` ([#&#8203;1430](https://togithub.com/chronotope/chrono/issues/1430))
-   `Parsed` fixes to error values ([#&#8203;1439](https://togithub.com/chronotope/chrono/issues/1439))
-   Use `overflowing_naive_local` in `DateTime::checked_add*` ([#&#8203;1333](https://togithub.com/chronotope/chrono/issues/1333))
-   Do complete range checks in `Parsed::set_*` ([#&#8203;1465](https://togithub.com/chronotope/chrono/issues/1465))

### Documentation

-   Rustfmt doctests ([#&#8203;1452](https://togithub.com/chronotope/chrono/issues/1452))
-   Improve docs for crate features ([#&#8203;1455](https://togithub.com/chronotope/chrono/issues/1455), thanks [@&#8203;edmorley](https://togithub.com/edmorley))
-   Add more documentation and examples to `Parsed` ([#&#8203;1439](https://togithub.com/chronotope/chrono/issues/1439))

### Internal

-   Refactor `internals` module ([#&#8203;1428](https://togithub.com/chronotope/chrono/issues/1428), [#&#8203;1429](https://togithub.com/chronotope/chrono/issues/1429), [#&#8203;1431](https://togithub.com/chronotope/chrono/issues/1431), [#&#8203;1432](https://togithub.com/chronotope/chrono/issues/1432), [#&#8203;1433](https://togithub.com/chronotope/chrono/issues/1433), [#&#8203;1438](https://togithub.com/chronotope/chrono/issues/1438))
-   CI: test cross-compiling to `x86_64-unknown-illumos` instead of Solaris ([#&#8203;1437](https://togithub.com/chronotope/chrono/issues/1437))
-   CI: lint Windows target, fix clippy warning ([#&#8203;1441](https://togithub.com/chronotope/chrono/issues/1441))
-   CI: only run `cargo hack check` on Linux ([#&#8203;1442](https://togithub.com/chronotope/chrono/issues/1442))
-   Update windows-bindgen to 0.54 ([#&#8203;1462](https://togithub.com/chronotope/chrono/issues/1462), [#&#8203;1483](https://togithub.com/chronotope/chrono/issues/1483))
-   Simplify error value of `parse_internal` ([#&#8203;1459](https://togithub.com/chronotope/chrono/issues/1459))
-   Simplify `SerdeError` ([#&#8203;1458](https://togithub.com/chronotope/chrono/issues/1458))
-   Simplify `NaiveDate::from_isoywd` a bit ([#&#8203;1464](https://togithub.com/chronotope/chrono/issues/1464))

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.34`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.34)

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

### Notable changes

-   In chrono 0.4.34 we finished the work to make all methods const where doing so is supported by rust 1.61.
-   We renamed the `Duration` type to `TimeDelta`. This removes the confusion between chrono's type and the later `Duration` type in the standard library. It will remain available under the old name as a type alias for compatibility.
-   The Windows implementation of `Local` is rewritten. The new version avoids panics when the date is outside of the range supported by windows (the years 1601 to 30828), and gives more accurate results during DST transitions.
-   The `Display` format of `TimeDelta` is modified to conform better to ISO 8601. Previously it converted all values greater than 24 hours to a value with days. This is not correct, as doing so changes the duration from an 'accurate' to a 'nominal' representation to use ISO 8601 terms.

### Fixes

-   Add missing range check in `TimeDelta::milliseconds` ([#&#8203;1385](https://togithub.com/chronotope/chrono/issues/1385), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))
-   Remove check for `DurationExceedsTimestamp` in `DurationRound` ([#&#8203;1403](https://togithub.com/chronotope/chrono/issues/1403), thanks [@&#8203;joroKr21](https://togithub.com/joroKr21))
-   Fix localized formatting with `%X` ([https://github.com/chronotope/pure-rust-locales/pull/12](https://togithub.com/chronotope/pure-rust-locales/pull/12), [#&#8203;1420](https://togithub.com/chronotope/chrono/issues/1420))
-   Windows: base implementation on `GetTimeZoneInformationForYear` ([#&#8203;1017](https://togithub.com/chronotope/chrono/issues/1017))

### Additions

-   Add `TimeDelta::try_milliseconds` ([#&#8203;1385](https://togithub.com/chronotope/chrono/issues/1385), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))
-   Add `TimeDelta::new` ([#&#8203;1337](https://togithub.com/chronotope/chrono/issues/1337))
-   Add `StrftimeItems::{parse, parse_to_owned}` and more documentation ([#&#8203;1184](https://togithub.com/chronotope/chrono/issues/1184))
-   More standard traits and documentation for `format::Locale` (via [https://github.com/chronotope/pure-rust-locales/pull/8](https://togithub.com/chronotope/pure-rust-locales/pull/8))

### Changes

-   Rename `Duration` to `TimeDelta`, add type alias ([#&#8203;1406](https://togithub.com/chronotope/chrono/issues/1406))
-   Make `TimeDelta` methods const ([#&#8203;1337](https://togithub.com/chronotope/chrono/issues/1337))
-   Make remaining methods of `NaiveDate`, `NaiveWeek`, `NaiveTime` and `NaiveDateTime` const where possible ([#&#8203;1337](https://togithub.com/chronotope/chrono/issues/1337))
-   Make methods on `DateTime` const where possible ([#&#8203;1400](https://togithub.com/chronotope/chrono/issues/1400))
-   Make `Display` format of `TimeDelta` conform better to ISO 8601 ([#&#8203;1328](https://togithub.com/chronotope/chrono/issues/1328))

### Documentation

-   Fix the formatting of `timestamp_micros`'s Example doc ([#&#8203;1338](https://togithub.com/chronotope/chrono/issues/1338) via [#&#8203;1386](https://togithub.com/chronotope/chrono/issues/1386), thanks [@&#8203;emikitas](https://togithub.com/emikitas))
-   Specify branch for GitHub Actions badge and fix link ([#&#8203;1388](https://togithub.com/chronotope/chrono/issues/1388))
-   Don't mention some deprecated methods in docs ([#&#8203;1395](https://togithub.com/chronotope/chrono/issues/1395))
-   Remove stray documentation from main ([#&#8203;1397](https://togithub.com/chronotope/chrono/issues/1397))
-   Improved documentation of `TimeDelta` constructors ([#&#8203;1385](https://togithub.com/chronotope/chrono/issues/1385), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))

### Internal

-   Switch branch names: 0.4.x releases are the `main` branch, work on 0.5 happens in the `0.5.x` branch ([#&#8203;1390](https://togithub.com/chronotope/chrono/issues/1390), [#&#8203;1402](https://togithub.com/chronotope/chrono/issues/1402)).
-   Don't use deprecated method in `impl Arbitrary for DateTime` and set up CI test ([#&#8203;1336](https://togithub.com/chronotope/chrono/issues/1336))
-   Remove workaround for Rust < 1.61 ([#&#8203;1393](https://togithub.com/chronotope/chrono/issues/1393))
-   Bump `codecov/codecov-action` from 3 to 4 ([#&#8203;1404](https://togithub.com/chronotope/chrono/issues/1404))
-   Remove partial support for handling `-0000` offset ([#&#8203;1411](https://togithub.com/chronotope/chrono/issues/1411))
-   Move `TOO_LONG` error out of `parse_internal` ([#&#8203;1419](https://togithub.com/chronotope/chrono/issues/1419))

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.33`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.33)

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

This release fixes the broken docrs.rs build of [chrono 0.4.32](https://togithub.com/chronotope/chrono/releases/tag/v0.4.32).

#### What's Changed

-   Make `rkyv` feature imply `size_32` ([#&#8203;1383](https://togithub.com/chronotope/chrono/issues/1383))
-   Fixed typo in `Duration::hours()` exception ([#&#8203;1384](https://togithub.com/chronotope/chrono/issues/1384), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))

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

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

In this release we shipped part of the effort to reduce the number of methods that could unexpectedly panic, notably for the `DateTime` and `Duration` types.

Chrono internally stores the value of a `DateTime` in UTC, and transparently converts it to the local value as required. For example adding a second to a `DateTime` needs to be done in UTC to get the correct result, but adding a day needs to be done in local time to be correct. What happens when the value is near the edge of the representable range, and the implicit conversions pushes it beyond the representable range? *Many* methods could panic on such inputs, including formatting the value for `Debug` output.

In chrono 0.4.32 the range of `NaiveDate`, `NaiveDateTime` and `DateTime` is made slightly smaller. This allows us to always do the implicit conversion, and in many cases return the expected result. Specifically the range is now from January 1, -262144 until December 31, 262143, one year less on both sides than before. We expect this may trip up tests if you hardcoded the `MIN` and `MAX` dates.

`Duration` had a similar issue. The range of this type was pretty arbitrary picked to match the range of an `i64` in milliseconds. Negating an `i64::MIN` pushes a value out of range, and in the same way negating `Duration::MIN` could push it out of our defined range and cause a panic. This turns out to be somewhat common and hidden behind many layers of abstraction. We adjusted the type to have a minimum value of `-Duration::MAX` instead and prevent the panic case.

Other highlights:

-   `Duration` gained new fallible initialization methods.
-   Better support for `rkyv`.
-   Most methods on `NaiveDateTime` are now const.
-   We had to bump our MSRV to 1.61 to keep building with our dependencies. This will also allow us to make more methods on `DateTime` const in a future release.

Complete list of changes:

#### Fixes

-   Fix panic in `TimeZone::from_local_datetime` ([#&#8203;1071](https://togithub.com/chronotope/chrono/issues/1071))
-   Fix out of range panics in `DateTime` getters and setters ([#&#8203;1317](https://togithub.com/chronotope/chrono/issues/1317), [#&#8203;1329](https://togithub.com/chronotope/chrono/issues/1329))

#### Additions

-   Add `NaiveDateTime::checked_(add|sub)_offset` ([#&#8203;1313](https://togithub.com/chronotope/chrono/issues/1313))
-   Add `DateTime::to_utc` ([#&#8203;1325](https://togithub.com/chronotope/chrono/issues/1325))
-   Derive `Default` for `Duration` ([#&#8203;1327](https://togithub.com/chronotope/chrono/issues/1327))
-   Add `Duration::subsec_nanos` ([#&#8203;1327](https://togithub.com/chronotope/chrono/issues/1327))
-   Add `try_*` builders to `Duration` ([#&#8203;1327](https://togithub.com/chronotope/chrono/issues/1327))
-   Implement `AddAssign` and `SubAssign` for `Duration` ([#&#8203;1327](https://togithub.com/chronotope/chrono/issues/1327))
-   Make methods on `NaiveDateTime` const where possible ([#&#8203;1286](https://togithub.com/chronotope/chrono/issues/1286))
-   Split `clock` feature into `clock` and `now` ([#&#8203;1343](https://togithub.com/chronotope/chrono/issues/1343), thanks [@&#8203;mmastrac](https://togithub.com/mmastrac))
-   Add `From<NaiveDate>` for `NaiveDateTime` ([#&#8203;1355](https://togithub.com/chronotope/chrono/issues/1355), thanks [@&#8203;dcechano](https://togithub.com/dcechano))
-   Add `NaiveDateTime::from_timestamp_nanos` ([#&#8203;1357](https://togithub.com/chronotope/chrono/issues/1357), thanks [@&#8203;Ali-Mirghasemi](https://togithub.com/Ali-Mirghasemi))
-   Add `Months::num_months()` and `num_years()` ([#&#8203;1373](https://togithub.com/chronotope/chrono/issues/1373), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))
-   Add `DateTime<Utc>::from_timestamp_millis` ([#&#8203;1374](https://togithub.com/chronotope/chrono/issues/1374), thanks [@&#8203;xmakro](https://togithub.com/xmakro))

#### Changes

-   Fix panic in `Duration::MIN.abs()` (adjust `Duration::MIN` by 1 millisecond) ([#&#8203;1334](https://togithub.com/chronotope/chrono/issues/1334))
-   Bump MSRV to 1.61 ([#&#8203;1347](https://togithub.com/chronotope/chrono/issues/1347))
-   Update windows-targets requirement from 0.48 to 0.52 ([#&#8203;1360](https://togithub.com/chronotope/chrono/issues/1360))
-   Update windows-bindgen to 0.52 ([#&#8203;1379](https://togithub.com/chronotope/chrono/issues/1379))

#### Deprecations

-   Deprecate standalone `format` functions ([#&#8203;1306](https://togithub.com/chronotope/chrono/issues/1306))

#### Documentation

-   Improve doc comment and tests for timestamp_nanos_opt ([#&#8203;1299](https://togithub.com/chronotope/chrono/issues/1299), thanks [@&#8203;mlegner](https://togithub.com/mlegner))
-   Switch to `doc_auto_cfg` ([#&#8203;1305](https://togithub.com/chronotope/chrono/issues/1305), [#&#8203;1326](https://togithub.com/chronotope/chrono/issues/1326))
-   Document panics in `Add`/`Sub` impls and use `expect` ([#&#8203;1316](https://togithub.com/chronotope/chrono/issues/1316))
-   Improve types listed in top-level documentation ([#&#8203;1274](https://togithub.com/chronotope/chrono/issues/1274))
-   Improve deprecation note of `TimeZone::datetime_from_str` ([#&#8203;1342](https://togithub.com/chronotope/chrono/issues/1342), thanks [@&#8203;tmccombs](https://togithub.com/tmccombs))
-   Fix typos in `Datelike` impl for `DateTime` ([#&#8203;1376](https://togithub.com/chronotope/chrono/issues/1376), thanks [@&#8203;ElectrifyPro](https://togithub.com/ElectrifyPro))

#### Rkyv support

-   Export `Archived*` types in `rkyv` module ([#&#8203;1304](https://togithub.com/chronotope/chrono/issues/1304))
-   Duplicate derives on `Archived*` types ([#&#8203;1271](https://togithub.com/chronotope/chrono/issues/1271), thanks [@&#8203;Awpteamoose](https://togithub.com/Awpteamoose))
-   Archive derive of PartialEq for rkyv ([#&#8203;959](https://togithub.com/chronotope/chrono/issues/959), thanks [@&#8203;mkatychev](https://togithub.com/mkatychev))
-   Expose rkyv features as features for chrono users ([#&#8203;1368](https://togithub.com/chronotope/chrono/issues/1368), thanks [@&#8203;gz](https://togithub.com/gz))

#### Changes to unstable features

-   Don't let `unstable-locales` imply the `alloc` feature ([#&#8203;1307](https://togithub.com/chronotope/chrono/issues/1307))
-   Remove `format::{format_localized, format_item_localized}` ([#&#8203;1311](https://togithub.com/chronotope/chrono/issues/1311))
-   Inline `write_rfc2822_inner`, don't localize ([#&#8203;1322](https://togithub.com/chronotope/chrono/issues/1322))

#### Internal

-   Add benchmark for `DateTime::with_*` ([#&#8203;1309](https://togithub.com/chronotope/chrono/issues/1309))
-   Fix `*_DAYS_FROM_YEAR_0` calculation ([#&#8203;1312](https://togithub.com/chronotope/chrono/issues/1312))
-   Add `NaiveTime::overflowing_(add|sub)_offset` ([#&#8203;1310](https://togithub.com/chronotope/chrono/issues/1310))
-   Rewrite `DateTime::overflowing_(add|sub)_offset` ([#&#8203;1069](https://togithub.com/chronotope/chrono/issues/1069))
-   Tests calling date command `set env LC_ALL` ([#&#8203;1315](https://togithub.com/chronotope/chrono/issues/1315), thanks [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   Update `deny.toml` ([#&#8203;1320](https://togithub.com/chronotope/chrono/issues/1320))
-   Bump actions/setup-node from 3 to 4 ([#&#8203;1346](https://togithub.com/chronotope/chrono/issues/1346))
-   test.yml remove errant `with: node-version` ([#&#8203;1352](https://togithub.com/chronotope/chrono/issues/1352), thanks [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   CI Linting: Fix missing sources checkout in `toml` job ([#&#8203;1371](https://togithub.com/chronotope/chrono/issues/1371), thanks [@&#8203;gibbz00](https://togithub.com/gibbz00))
-   Silence clippy lint for test code with Rust 1.74.0 ([#&#8203;1362](https://togithub.com/chronotope/chrono/issues/1362))

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.31`](https://togithub.com/chronotope/chrono/releases/tag/v0.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)

[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 ([https://github.com/chronotope/chrono/pull/1264](https://togithub.com/chronotope/chrono/pull/1264), [https://github.com/chronotope/chrono/pull/1266](https://togithub.com/chronotope/chrono/pull/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)

[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)

[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 [https://github.com/chronotope/chrono/issues/1234](https://togithub.com/chronotope/chrono/issues/1234).

### [`v0.4.27`](https://togithub.com/chronotope/chrono/releases/tag/v0.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 [https://github.com/chronotope/chrono/pull/1145](https://togithub.com/chronotope/chrono/pull/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}` ([https://github.com/chronotope/chrono/pull/1175](https://togithub.com/chronotope/chrono/pull/1175))

#### Additions

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

#### Fixes

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

#### Documentation

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

#### Internal improvements

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

[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)

[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.co

</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/X-oss-byte/Canary-nextjs).
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request May 1, 2024
[![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) | dependencies | patch | `0.4` -> `0.4.38` |

---

### Release Notes

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

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

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

This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient `days_since` method for the `Weekday` type.

Chrono 0.4.38 also removes the long deprecated `rustc-serialize` feature. Support for `rustc-serialize` will be [soft-destabilized in the next Rust edition](https://togithub.com/rust-lang/rust/pull/116016). Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono.

In chrono 0.4.36 we made an accidental breaking change by switching to `derive(Copy)` for `DateTime` instead of a manual implementation. It is reverted in this release.

### Removals

-   Remove `rustc-serialize` feature ([#&#8203;1548](https://togithub.com/chronotope/chrono/issues/1548), thanks [@&#8203;workingjubilee](https://togithub.com/workingjubilee))

### Additions

-   Add `Weekday::days_since` ([#&#8203;1249](https://togithub.com/chronotope/chrono/issues/1249), based on [#&#8203;216](https://togithub.com/chronotope/chrono/issues/216) by [@&#8203;clarfonthey](https://togithub.com/clarfonthey))
-   Add `TimeDelta::checked_mul` and `TimeDelta::checked_div` ([#&#8203;1565](https://togithub.com/chronotope/chrono/issues/1565), thanks [@&#8203;Zomtir](https://togithub.com/Zomtir))

### Fixes

-   Return error when rounding with a zero duration ([#&#8203;1474](https://togithub.com/chronotope/chrono/issues/1474), thanks [@&#8203;Dav1dde](https://togithub.com/Dav1dde))
-   Manually implement `Copy` for `DateTime` if offset is `Copy` ([#&#8203;1573](https://togithub.com/chronotope/chrono/issues/1573))

### Internal

-   Inline `test_encodable_json` and `test_decodable_json` functions ([#&#8203;1550](https://togithub.com/chronotope/chrono/issues/1550))
-   CI: Reduce combinations in `cargo hack check` ([#&#8203;1553](https://togithub.com/chronotope/chrono/issues/1553))
-   Refactor formatting code ([#&#8203;1335](https://togithub.com/chronotope/chrono/issues/1335))
-   Optimize number formatting ([#&#8203;1558](https://togithub.com/chronotope/chrono/issues/1558))
-   Only package files needed for building and testing ([#&#8203;1554](https://togithub.com/chronotope/chrono/issues/1554))

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.37`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.37)

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

Version 0.4.36 introduced an unexpected breaking change and was yanked. In it `LocalResult` was renamed to `MappedLocalTime` to avoid the impression that it is a `Result` type were some of the results are errors. For backwards compatibility a type alias with the old name was added.

As it turns out there is one case where a type alias behaves differently from the regular enum: you can't import enum variants from a type alias with `use chrono::LocalResult::*`. With 0.4.37 we make the new name `MappedLocalTime` the alias, but keep using it in function signatures and the documentation as much as possible.

See also the release notes of [chrono 0.4.36](https://togithub.com/chronotope/chrono/releases/tag/v0.4.36) from yesterday for the yanked release.

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

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

This release un-deprecates the methods on `TimeDelta` that were deprecated with the 0.4.35 release because of the churn they are causing for the ecosystem.

New is the `DateTime::with_time()` method. As an example of when it is useful:

```rust
use chrono::{Local, NaiveTime};
// Today at 12:00:00
let today_noon = Local::now().with_time(NaiveTime::from_hms_opt(12, 0, 0).unwrap());
```

### Additions

-   Add `DateTime::with_time()` ([#&#8203;1510](https://togithub.com/chronotope/chrono/issues/1510))

### Deprecations

-   Revert `TimeDelta` deprecations ([#&#8203;1543](https://togithub.com/chronotope/chrono/issues/1543))
-   Deprecate `TimeStamp::timestamp_subsec_nanos`, which was missed in the 0.4.35 release ([#&#8203;1486](https://togithub.com/chronotope/chrono/issues/1486))

### Documentation

-   Correct version number of deprecation notices ([#&#8203;1486](https://togithub.com/chronotope/chrono/issues/1486))
-   Fix some typos ([#&#8203;1505](https://togithub.com/chronotope/chrono/issues/1505))
-   Slightly improve serde documentation ([#&#8203;1519](https://togithub.com/chronotope/chrono/issues/1519))
-   Main documentation: simplify links and reflow text ([#&#8203;1535](https://togithub.com/chronotope/chrono/issues/1535))

### Internal

-   CI: Lint benchmarks ([#&#8203;1489](https://togithub.com/chronotope/chrono/issues/1489))
-   Remove unnessary `Copy` and `Send` impls ([#&#8203;1492](https://togithub.com/chronotope/chrono/issues/1492), thanks [@&#8203;erickt](https://togithub.com/erickt))
-   Backport streamlined `NaiveDate` unit tests ([#&#8203;1500](https://togithub.com/chronotope/chrono/issues/1500), thanks [@&#8203;Zomtir](https://togithub.com/Zomtir))
-   Rename `LocalResult` to `TzResolution`, add alias ([#&#8203;1501](https://togithub.com/chronotope/chrono/issues/1501))
-   Update windows-bindgen to 0.55 ([#&#8203;1504](https://togithub.com/chronotope/chrono/issues/1504))
-   Avoid duplicate imports, which generate warnings on nightly ([#&#8203;1507](https://togithub.com/chronotope/chrono/issues/1507))
-   Add extra debug assertions to `NaiveDate::from_yof` ([#&#8203;1518](https://togithub.com/chronotope/chrono/issues/1518))
-   Some small simplifications to `DateTime::date_naive` and `NaiveDate::diff_months` ([#&#8203;1530](https://togithub.com/chronotope/chrono/issues/1530))
-   Remove `unwrap` in Unix `Local` type ([#&#8203;1533](https://togithub.com/chronotope/chrono/issues/1533))
-   Use different method to ignore feature-dependent doctests ([#&#8203;1534](https://togithub.com/chronotope/chrono/issues/1534))

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.35`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.35)

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

Most of our efforts have shifted to improving the API for a 0.5 release, for which cleanups and refactorings are landing on the 0.4.x branch.

The most significant changes in this release are two sets of deprecations.

-   We deprecated all timestamp-related methods on `NaiveDateTime`. The reason is that a timestamp is defined to be in UTC. The `NaiveDateTime` type doesn't know the offset from UTC, so it was technically wrong to have these methods. The alternative is to use the similar methods on the `DateTime<Utc>` type, or from the `TimeZone` trait.

    Converting from `NaiveDateTime` to `DateTime<Utc>` is simple with `.and_utc()`, and in the other direction with `.naive_utc()`.

-   The panicking constructors of `TimeDelta` (the new name of the `Duration` type) are deprecated. This was the last part of chrono that defaulted to panicking on error, dating from before rust 1.0.

-   A nice change is that `NaiveDate` now includes a niche. So now `Option<NaiveDate>`, `Option<NaiveDateTime>` and `Option<DateTime<Tz>>` are the same size as their base types.

-   `format::Numeric` and `format::Fixed` are marked as `non_exhaustive`. This will allow us to improve our formatting and parsing support, and we have reason to believe this breaking change will have little to no impact on users.

### Additions

-   Add `DateTime::{from_timestamp_micros, from_timestamp_nanos}` ([#&#8203;1234](https://togithub.com/chronotope/chrono/issues/1234))
-   Add getters to `Parsed` ([#&#8203;1465](https://togithub.com/chronotope/chrono/issues/1465))

### Deprecations

-   Deprecate timestamp methods on `NaiveDateTime` ([#&#8203;1473](https://togithub.com/chronotope/chrono/issues/1473))
-   Deprecate panicking constructors of `TimeDelta` ([#&#8203;1450](https://togithub.com/chronotope/chrono/issues/1450))

### Changes/fixes

-   Use `NonZeroI32` inside `NaiveDate` ([#&#8203;1207](https://togithub.com/chronotope/chrono/issues/1207))
-   Mark `format::Numeric` and `format::Fixed` as `non_exhaustive` ([#&#8203;1430](https://togithub.com/chronotope/chrono/issues/1430))
-   `Parsed` fixes to error values ([#&#8203;1439](https://togithub.com/chronotope/chrono/issues/1439))
-   Use `overflowing_naive_local` in `DateTime::checked_add*` ([#&#8203;1333](https://togithub.com/chronotope/chrono/issues/1333))
-   Do complete range checks in `Parsed::set_*` ([#&#8203;1465](https://togithub.com/chronotope/chrono/issues/1465))

### Documentation

-   Rustfmt doctests ([#&#8203;1452](https://togithub.com/chronotope/chrono/issues/1452))
-   Improve docs for crate features ([#&#8203;1455](https://togithub.com/chronotope/chrono/issues/1455), thanks [@&#8203;edmorley](https://togithub.com/edmorley))
-   Add more documentation and examples to `Parsed` ([#&#8203;1439](https://togithub.com/chronotope/chrono/issues/1439))

### Internal

-   Refactor `internals` module ([#&#8203;1428](https://togithub.com/chronotope/chrono/issues/1428), [#&#8203;1429](https://togithub.com/chronotope/chrono/issues/1429), [#&#8203;1431](https://togithub.com/chronotope/chrono/issues/1431), [#&#8203;1432](https://togithub.com/chronotope/chrono/issues/1432), [#&#8203;1433](https://togithub.com/chronotope/chrono/issues/1433), [#&#8203;1438](https://togithub.com/chronotope/chrono/issues/1438))
-   CI: test cross-compiling to `x86_64-unknown-illumos` instead of Solaris ([#&#8203;1437](https://togithub.com/chronotope/chrono/issues/1437))
-   CI: lint Windows target, fix clippy warning ([#&#8203;1441](https://togithub.com/chronotope/chrono/issues/1441))
-   CI: only run `cargo hack check` on Linux ([#&#8203;1442](https://togithub.com/chronotope/chrono/issues/1442))
-   Update windows-bindgen to 0.54 ([#&#8203;1462](https://togithub.com/chronotope/chrono/issues/1462), [#&#8203;1483](https://togithub.com/chronotope/chrono/issues/1483))
-   Simplify error value of `parse_internal` ([#&#8203;1459](https://togithub.com/chronotope/chrono/issues/1459))
-   Simplify `SerdeError` ([#&#8203;1458](https://togithub.com/chronotope/chrono/issues/1458))
-   Simplify `NaiveDate::from_isoywd` a bit ([#&#8203;1464](https://togithub.com/chronotope/chrono/issues/1464))

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.34`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.34)

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

### Notable changes

-   In chrono 0.4.34 we finished the work to make all methods const where doing so is supported by rust 1.61.
-   We renamed the `Duration` type to `TimeDelta`. This removes the confusion between chrono's type and the later `Duration` type in the standard library. It will remain available under the old name as a type alias for compatibility.
-   The Windows implementation of `Local` is rewritten. The new version avoids panics when the date is outside of the range supported by windows (the years 1601 to 30828), and gives more accurate results during DST transitions.
-   The `Display` format of `TimeDelta` is modified to conform better to ISO 8601. Previously it converted all values greater than 24 hours to a value with days. This is not correct, as doing so changes the duration from an 'accurate' to a 'nominal' representation to use ISO 8601 terms.

### Fixes

-   Add missing range check in `TimeDelta::milliseconds` ([#&#8203;1385](https://togithub.com/chronotope/chrono/issues/1385), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))
-   Remove check for `DurationExceedsTimestamp` in `DurationRound` ([#&#8203;1403](https://togithub.com/chronotope/chrono/issues/1403), thanks [@&#8203;joroKr21](https://togithub.com/joroKr21))
-   Fix localized formatting with `%X` ([https://github.com/chronotope/pure-rust-locales/pull/12](https://togithub.com/chronotope/pure-rust-locales/pull/12), [#&#8203;1420](https://togithub.com/chronotope/chrono/issues/1420))
-   Windows: base implementation on `GetTimeZoneInformationForYear` ([#&#8203;1017](https://togithub.com/chronotope/chrono/issues/1017))

### Additions

-   Add `TimeDelta::try_milliseconds` ([#&#8203;1385](https://togithub.com/chronotope/chrono/issues/1385), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))
-   Add `TimeDelta::new` ([#&#8203;1337](https://togithub.com/chronotope/chrono/issues/1337))
-   Add `StrftimeItems::{parse, parse_to_owned}` and more documentation ([#&#8203;1184](https://togithub.com/chronotope/chrono/issues/1184))
-   More standard traits and documentation for `format::Locale` (via [https://github.com/chronotope/pure-rust-locales/pull/8](https://togithub.com/chronotope/pure-rust-locales/pull/8))

### Changes

-   Rename `Duration` to `TimeDelta`, add type alias ([#&#8203;1406](https://togithub.com/chronotope/chrono/issues/1406))
-   Make `TimeDelta` methods const ([#&#8203;1337](https://togithub.com/chronotope/chrono/issues/1337))
-   Make remaining methods of `NaiveDate`, `NaiveWeek`, `NaiveTime` and `NaiveDateTime` const where possible ([#&#8203;1337](https://togithub.com/chronotope/chrono/issues/1337))
-   Make methods on `DateTime` const where possible ([#&#8203;1400](https://togithub.com/chronotope/chrono/issues/1400))
-   Make `Display` format of `TimeDelta` conform better to ISO 8601 ([#&#8203;1328](https://togithub.com/chronotope/chrono/issues/1328))

### Documentation

-   Fix the formatting of `timestamp_micros`'s Example doc ([#&#8203;1338](https://togithub.com/chronotope/chrono/issues/1338) via [#&#8203;1386](https://togithub.com/chronotope/chrono/issues/1386), thanks [@&#8203;emikitas](https://togithub.com/emikitas))
-   Specify branch for GitHub Actions badge and fix link ([#&#8203;1388](https://togithub.com/chronotope/chrono/issues/1388))
-   Don't mention some deprecated methods in docs ([#&#8203;1395](https://togithub.com/chronotope/chrono/issues/1395))
-   Remove stray documentation from main ([#&#8203;1397](https://togithub.com/chronotope/chrono/issues/1397))
-   Improved documentation of `TimeDelta` constructors ([#&#8203;1385](https://togithub.com/chronotope/chrono/issues/1385), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))

### Internal

-   Switch branch names: 0.4.x releases are the `main` branch, work on 0.5 happens in the `0.5.x` branch ([#&#8203;1390](https://togithub.com/chronotope/chrono/issues/1390), [#&#8203;1402](https://togithub.com/chronotope/chrono/issues/1402)).
-   Don't use deprecated method in `impl Arbitrary for DateTime` and set up CI test ([#&#8203;1336](https://togithub.com/chronotope/chrono/issues/1336))
-   Remove workaround for Rust < 1.61 ([#&#8203;1393](https://togithub.com/chronotope/chrono/issues/1393))
-   Bump `codecov/codecov-action` from 3 to 4 ([#&#8203;1404](https://togithub.com/chronotope/chrono/issues/1404))
-   Remove partial support for handling `-0000` offset ([#&#8203;1411](https://togithub.com/chronotope/chrono/issues/1411))
-   Move `TOO_LONG` error out of `parse_internal` ([#&#8203;1419](https://togithub.com/chronotope/chrono/issues/1419))

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.33`](https://togithub.com/chronotope/chrono/releases/tag/v0.4.33)

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

This release fixes the broken docrs.rs build of [chrono 0.4.32](https://togithub.com/chronotope/chrono/releases/tag/v0.4.32).

#### What's Changed

-   Make `rkyv` feature imply `size_32` ([#&#8203;1383](https://togithub.com/chronotope/chrono/issues/1383))
-   Fixed typo in `Duration::hours()` exception ([#&#8203;1384](https://togithub.com/chronotope/chrono/issues/1384), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))

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

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

In this release we shipped part of the effort to reduce the number of methods that could unexpectedly panic, notably for the `DateTime` and `Duration` types.

Chrono internally stores the value of a `DateTime` in UTC, and transparently converts it to the local value as required. For example adding a second to a `DateTime` needs to be done in UTC to get the correct result, but adding a day needs to be done in local time to be correct. What happens when the value is near the edge of the representable range, and the implicit conversions pushes it beyond the representable range? *Many* methods could panic on such inputs, including formatting the value for `Debug` output.

In chrono 0.4.32 the range of `NaiveDate`, `NaiveDateTime` and `DateTime` is made slightly smaller. This allows us to always do the implicit conversion, and in many cases return the expected result. Specifically the range is now from January 1, -262144 until December 31, 262143, one year less on both sides than before. We expect this may trip up tests if you hardcoded the `MIN` and `MAX` dates.

`Duration` had a similar issue. The range of this type was pretty arbitrary picked to match the range of an `i64` in milliseconds. Negating an `i64::MIN` pushes a value out of range, and in the same way negating `Duration::MIN` could push it out of our defined range and cause a panic. This turns out to be somewhat common and hidden behind many layers of abstraction. We adjusted the type to have a minimum value of `-Duration::MAX` instead and prevent the panic case.

Other highlights:

-   `Duration` gained new fallible initialization methods.
-   Better support for `rkyv`.
-   Most methods on `NaiveDateTime` are now const.
-   We had to bump our MSRV to 1.61 to keep building with our dependencies. This will also allow us to make more methods on `DateTime` const in a future release.

Complete list of changes:

#### Fixes

-   Fix panic in `TimeZone::from_local_datetime` ([#&#8203;1071](https://togithub.com/chronotope/chrono/issues/1071))
-   Fix out of range panics in `DateTime` getters and setters ([#&#8203;1317](https://togithub.com/chronotope/chrono/issues/1317), [#&#8203;1329](https://togithub.com/chronotope/chrono/issues/1329))

#### Additions

-   Add `NaiveDateTime::checked_(add|sub)_offset` ([#&#8203;1313](https://togithub.com/chronotope/chrono/issues/1313))
-   Add `DateTime::to_utc` ([#&#8203;1325](https://togithub.com/chronotope/chrono/issues/1325))
-   Derive `Default` for `Duration` ([#&#8203;1327](https://togithub.com/chronotope/chrono/issues/1327))
-   Add `Duration::subsec_nanos` ([#&#8203;1327](https://togithub.com/chronotope/chrono/issues/1327))
-   Add `try_*` builders to `Duration` ([#&#8203;1327](https://togithub.com/chronotope/chrono/issues/1327))
-   Implement `AddAssign` and `SubAssign` for `Duration` ([#&#8203;1327](https://togithub.com/chronotope/chrono/issues/1327))
-   Make methods on `NaiveDateTime` const where possible ([#&#8203;1286](https://togithub.com/chronotope/chrono/issues/1286))
-   Split `clock` feature into `clock` and `now` ([#&#8203;1343](https://togithub.com/chronotope/chrono/issues/1343), thanks [@&#8203;mmastrac](https://togithub.com/mmastrac))
-   Add `From<NaiveDate>` for `NaiveDateTime` ([#&#8203;1355](https://togithub.com/chronotope/chrono/issues/1355), thanks [@&#8203;dcechano](https://togithub.com/dcechano))
-   Add `NaiveDateTime::from_timestamp_nanos` ([#&#8203;1357](https://togithub.com/chronotope/chrono/issues/1357), thanks [@&#8203;Ali-Mirghasemi](https://togithub.com/Ali-Mirghasemi))
-   Add `Months::num_months()` and `num_years()` ([#&#8203;1373](https://togithub.com/chronotope/chrono/issues/1373), thanks [@&#8203;danwilliams](https://togithub.com/danwilliams))
-   Add `DateTime<Utc>::from_timestamp_millis` ([#&#8203;1374](https://togithub.com/chronotope/chrono/issues/1374), thanks [@&#8203;xmakro](https://togithub.com/xmakro))

#### Changes

-   Fix panic in `Duration::MIN.abs()` (adjust `Duration::MIN` by 1 millisecond) ([#&#8203;1334](https://togithub.com/chronotope/chrono/issues/1334))
-   Bump MSRV to 1.61 ([#&#8203;1347](https://togithub.com/chronotope/chrono/issues/1347))
-   Update windows-targets requirement from 0.48 to 0.52 ([#&#8203;1360](https://togithub.com/chronotope/chrono/issues/1360))
-   Update windows-bindgen to 0.52 ([#&#8203;1379](https://togithub.com/chronotope/chrono/issues/1379))

#### Deprecations

-   Deprecate standalone `format` functions ([#&#8203;1306](https://togithub.com/chronotope/chrono/issues/1306))

#### Documentation

-   Improve doc comment and tests for timestamp_nanos_opt ([#&#8203;1299](https://togithub.com/chronotope/chrono/issues/1299), thanks [@&#8203;mlegner](https://togithub.com/mlegner))
-   Switch to `doc_auto_cfg` ([#&#8203;1305](https://togithub.com/chronotope/chrono/issues/1305), [#&#8203;1326](https://togithub.com/chronotope/chrono/issues/1326))
-   Document panics in `Add`/`Sub` impls and use `expect` ([#&#8203;1316](https://togithub.com/chronotope/chrono/issues/1316))
-   Improve types listed in top-level documentation ([#&#8203;1274](https://togithub.com/chronotope/chrono/issues/1274))
-   Improve deprecation note of `TimeZone::datetime_from_str` ([#&#8203;1342](https://togithub.com/chronotope/chrono/issues/1342), thanks [@&#8203;tmccombs](https://togithub.com/tmccombs))
-   Fix typos in `Datelike` impl for `DateTime` ([#&#8203;1376](https://togithub.com/chronotope/chrono/issues/1376), thanks [@&#8203;ElectrifyPro](https://togithub.com/ElectrifyPro))

#### Rkyv support

-   Export `Archived*` types in `rkyv` module ([#&#8203;1304](https://togithub.com/chronotope/chrono/issues/1304))
-   Duplicate derives on `Archived*` types ([#&#8203;1271](https://togithub.com/chronotope/chrono/issues/1271), thanks [@&#8203;Awpteamoose](https://togithub.com/Awpteamoose))
-   Archive derive of PartialEq for rkyv ([#&#8203;959](https://togithub.com/chronotope/chrono/issues/959), thanks [@&#8203;mkatychev](https://togithub.com/mkatychev))
-   Expose rkyv features as features for chrono users ([#&#8203;1368](https://togithub.com/chronotope/chrono/issues/1368), thanks [@&#8203;gz](https://togithub.com/gz))

#### Changes to unstable features

-   Don't let `unstable-locales` imply the `alloc` feature ([#&#8203;1307](https://togithub.com/chronotope/chrono/issues/1307))
-   Remove `format::{format_localized, format_item_localized}` ([#&#8203;1311](https://togithub.com/chronotope/chrono/issues/1311))
-   Inline `write_rfc2822_inner`, don't localize ([#&#8203;1322](https://togithub.com/chronotope/chrono/issues/1322))

#### Internal

-   Add benchmark for `DateTime::with_*` ([#&#8203;1309](https://togithub.com/chronotope/chrono/issues/1309))
-   Fix `*_DAYS_FROM_YEAR_0` calculation ([#&#8203;1312](https://togithub.com/chronotope/chrono/issues/1312))
-   Add `NaiveTime::overflowing_(add|sub)_offset` ([#&#8203;1310](https://togithub.com/chronotope/chrono/issues/1310))
-   Rewrite `DateTime::overflowing_(add|sub)_offset` ([#&#8203;1069](https://togithub.com/chronotope/chrono/issues/1069))
-   Tests calling date command `set env LC_ALL` ([#&#8203;1315](https://togithub.com/chronotope/chrono/issues/1315), thanks [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   Update `deny.toml` ([#&#8203;1320](https://togithub.com/chronotope/chrono/issues/1320))
-   Bump actions/setup-node from 3 to 4 ([#&#8203;1346](https://togithub.com/chronotope/chrono/issues/1346))
-   test.yml remove errant `with: node-version` ([#&#8203;1352](https://togithub.com/chronotope/chrono/issues/1352), thanks [@&#8203;jtmoon79](https://togithub.com/jtmoon79))
-   CI Linting: Fix missing sources checkout in `toml` job ([#&#8203;1371](https://togithub.com/chronotope/chrono/issues/1371), thanks [@&#8203;gibbz00](https://togithub.com/gibbz00))
-   Silence clippy lint for test code with Rust 1.74.0 ([#&#8203;1362](https://togithub.com/chronotope/chrono/issues/1362))

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.31`](https://togithub.com/chronotope/chrono/releases/tag/v0.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)

[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 ([https://github.com/chronotope/chrono/pull/1264](https://togithub.com/chronotope/chrono/pull/1264), [https://github.com/chronotope/chrono/pull/1266](https://togithub.com/chronotope/chrono/pull/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)

[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)

[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 [https://github.com/chronotope/chrono/issues/1234](https://togithub.com/chronotope/chrono/issues/1234).

### [`v0.4.27`](https://togithub.com/chronotope/chrono/releases/tag/v0.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 [https://github.com/chronotope/chrono/pull/1145](https://togithub.com/chronotope/chrono/pull/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}` ([https://github.com/chronotope/chrono/pull/1175](https://togithub.com/chronotope/chrono/pull/1175))

#### Additions

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

#### Fixes

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

#### Documentation

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

#### Internal improvements

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

[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)

[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](h

</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/X-oss-byte/Nextjs).
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

3 participants