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

Inline the value of %r in T_FMT #12

Merged
merged 5 commits into from Jan 30, 2024
Merged

Conversation

pitdicker
Copy link
Collaborator

@pitdicker pitdicker commented Jan 26, 2024

Similar to D_T_FMT, T_FMT can refer to T_FMT_AMPM with %r.
In plain English: a locale can say the default way to format a time is a 12-hour clock with AM/PM, using whatever is defined for that format in that locale.

I should have noticed this when working on #5, sorry 😞.

Fixes chronotope/chrono#1349 when we update chrono to the new version.

Can this become a new release? I picked 0.8.0 as this changes the data.

@pitdicker
Copy link
Collaborator Author

Sorry, found one more weirdness. Converting to draft for now.

@pitdicker pitdicker marked this pull request as draft January 26, 2024 18:51
@pitdicker pitdicker changed the title Inline t fmt Inline the value of %r in T_FMT Jan 26, 2024
@pitdicker pitdicker force-pushed the inline_t_fmt branch 2 times, most recently from 98c9685 to 7b13d0e Compare January 26, 2024 19:40
@pitdicker
Copy link
Collaborator Author

Actually found two more cases of tricky locale data 😞.

  • In some locales T_FMT_AMPM exists but is empty, while there is a value for AM_PM. In that case we should treat it the same as when T_FMT_AMPM does not exists and set the value to the POSIX default of %l:%M:%S %p.
  • In two locales T_FMT refers to T_FMT_AMPM, but T_FMT_AMPM and AM_PM are empty. Here I picked %T as fallback, the default value for a 24-hour clock.

I did an extra sanity check of the data and didn't find other issues (for now).

@pitdicker pitdicker marked this pull request as ready for review January 26, 2024 20:23
Copy link
Collaborator

@cecton cecton left a comment

Choose a reason for hiding this comment

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

oops! 😅 I didn't notice!

Feel free to rewrite everything or part of it if you think you can improve readability/maintainability. I'm not sole owner anymore. (In fact I'm not sure if I'm owner at all, I'm just here to help : )

@pitdicker
Copy link
Collaborator Author

Thank you for sharing the crate and the review!

@djc Do you want to have a look? And what do you think about a new release?

Copy link
Collaborator

@djc djc left a comment

Choose a reason for hiding this comment

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

For me each of these commits is quite opaque. It would be good if the commit had some example change in terms of the expected end-user effect.

generate-api/src/main.rs Outdated Show resolved Hide resolved
generate-api/src/main.rs Outdated Show resolved Hide resolved
@pitdicker
Copy link
Collaborator Author

pitdicker commented Jan 29, 2024

For me each of these commits is quite opaque. It would be good if the commit had some example change in terms of the expected end-user effect.

Yes, it would be easier to see if every commit contained a diff with the changes to the generated data.

Update T_FMT_AMPM if it is empty and we do have a value for AM_PM.

The first example is in af_ZA. A format string with %r currently will come up with no time in the output string because T_FMT_AMPM exists but has no value. This inserts the default POSIX value like when T_FMT_AMPM is completely absent.

An alternative is to detect this case in chrono at runtime. Because we are fixing up the data anyway this seemed the cleaner solution.

Fall back to %T if %r points to an empty T_FMT_AMPM

This effects two locales, hy_AM and id_ID. Again the result in chrono is no time in the output string if T_FMT or D_T_FMT (%X or %c) specify a 12-hour clock with %r while apparently not having a 12-hour clock format.

Inline the value of %r in T_FMT

Going from one level of locale string in T_FMT down another level in T_FMT_AMPM is tricky. We inlined the value in D_T_FMT to enable parsing a format string without allocating, but I missed T_FMT.

@pitdicker
Copy link
Collaborator Author

pitdicker commented Jan 29, 2024

This should do the trick (first commit disables git LFS).

Copy link
Collaborator

@djc djc left a comment

Choose a reason for hiding this comment

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

Nice!

@pitdicker pitdicker merged commit 1ed0b5e into chronotope:main Jan 30, 2024
1 check passed
@pitdicker pitdicker deleted the inline_t_fmt branch January 30, 2024 13:08
@pitdicker
Copy link
Collaborator Author

@cecton Can I help with making the release?

@pitdicker
Copy link
Collaborator Author

@cecton Can I help with making the release?

@cecton Friendly ping.

@cecton
Copy link
Collaborator

cecton commented Feb 9, 2024

Oh I'm sorry!! I misunderstood you.

I see you don't have ownership on the crate. I'm adding you and @djc

@cecton
Copy link
Collaborator

cecton commented Feb 9, 2024

I just did cargo-release in the past but feel free to upgrade the process

@pitdicker
Copy link
Collaborator Author

Thank you very much! Published 0.8.0.

montekki pushed a commit to matter-labs/zksync-withdrawal-finalizer that referenced this pull request Feb 11, 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) |
workspace.dependencies | patch | `0.4.33` -> `0.4.34` |

---

### Release Notes

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

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

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

---

- [ ] <!-- 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/matter-labs/zksync-withdrawal-finalizer).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Hinton pushed a commit to bitwarden/sdk that referenced this pull request Feb 12, 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.33` -> `0.4.34` |

---

### Release Notes

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

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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every 2nd week starting on the 2 week
of the year 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/bitwarden/sdk).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jakubadamw added a commit to grafbase/grafbase that referenced this pull request Feb 12, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| [@apollo/client](https://www.apollographql.com/docs/react/)
([source](https://togithub.com/apollographql/apollo-client)) | [`3.9.2`
->
`3.9.4`](https://renovatebot.com/diffs/npm/@apollo%2fclient/3.9.2/3.9.4)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@apollo%2fclient/3.9.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@apollo%2fclient/3.9.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@apollo%2fclient/3.9.2/3.9.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@apollo%2fclient/3.9.2/3.9.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
|
[@types/bun](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bun)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun))
| [`1.0.4` ->
`1.0.5`](https://renovatebot.com/diffs/npm/@types%2fbun/1.0.4/1.0.5) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fbun/1.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fbun/1.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fbun/1.0.4/1.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fbun/1.0.4/1.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| [`20.11.16` ->
`20.11.17`](https://renovatebot.com/diffs/npm/@types%2fnode/20.11.16/20.11.17)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.11.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.11.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.11.16/20.11.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.11.16/20.11.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| [`20.10.7` ->
`20.11.17`](https://renovatebot.com/diffs/npm/@types%2fnode/20.10.7/20.11.17)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.11.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.11.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.10.7/20.11.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.10.7/20.11.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react))
| [`18.2.35` ->
`18.2.55`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.35/18.2.55)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.55?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.55?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.35/18.2.55?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.35/18.2.55?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react))
| [`18.2.52` ->
`18.2.55`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.52/18.2.55)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.55?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.55?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.52/18.2.55?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.52/18.2.55?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom))
| [`18.2.14` ->
`18.2.19`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.14/18.2.19)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.19?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.19?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.14/18.2.19?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.14/18.2.19?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom))
| [`18.2.18` ->
`18.2.19`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.18/18.2.19)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.19?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.19?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.18/18.2.19?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.18/18.2.19?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint)
([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin))
| [`6.18.1` ->
`6.21.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.18.1/6.21.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.18.1/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.18.1/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint)
([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
| [`6.18.1` ->
`6.21.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.18.1/6.21.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.18.1/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.18.1/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[@vitejs/plugin-react](https://togithub.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#readme)
([source](https://togithub.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react))
| [`4.0.0` ->
`4.2.1`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-react/4.0.0/4.2.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@vitejs%2fplugin-react/4.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitejs%2fplugin-react/4.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitejs%2fplugin-react/4.0.0/4.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitejs%2fplugin-react/4.0.0/4.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [chrono](https://togithub.com/chronotope/chrono) | `0.4.33` ->
`0.4.34` |
[![age](https://developer.mend.io/api/mc/badges/age/crate/chrono/0.4.34?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/crate/chrono/0.4.34?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/crate/chrono/0.4.33/0.4.34?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/crate/chrono/0.4.33/0.4.34?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [dotenv](https://togithub.com/motdotla/dotenv) | [`16.1.4` ->
`16.4.2`](https://renovatebot.com/diffs/npm/dotenv/16.1.4/16.4.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/dotenv/16.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/dotenv/16.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/dotenv/16.1.4/16.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/dotenv/16.1.4/16.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [eslint](https://eslint.org)
([source](https://togithub.com/eslint/eslint)) | [`8.39.0` ->
`8.56.0`](https://renovatebot.com/diffs/npm/eslint/8.39.0/8.56.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/8.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint/8.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint/8.39.0/8.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/8.39.0/8.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [eslint](https://eslint.org)
([source](https://togithub.com/eslint/eslint)) | [`8.39.0` ->
`8.56.0`](https://renovatebot.com/diffs/npm/eslint/8.39.0/8.56.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/8.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint/8.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint/8.39.0/8.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/8.39.0/8.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [houdini](https://togithub.com/HoudiniGraphql/houdini) | [`1.0.4` ->
`1.2.37`](https://renovatebot.com/diffs/npm/houdini/1.0.4/1.2.37) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/houdini/1.2.37?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/houdini/1.2.37?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/houdini/1.0.4/1.2.37?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/houdini/1.0.4/1.2.37?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| rust | `1.75-alpine3.18` -> `1.76-alpine3.18` |
[![age](https://developer.mend.io/api/mc/badges/age/docker/rust/1.76?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/docker/rust/1.76?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/docker/rust/1.75/1.76?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/rust/1.75/1.76?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| stage | minor |
| [semver](https://togithub.com/npm/node-semver) | [`7.5.4` ->
`7.6.0`](https://renovatebot.com/diffs/npm/semver/7.5.4/7.6.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/semver/7.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/semver/7.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/semver/7.5.4/7.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/semver/7.5.4/7.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [swc_ecma_ast](https://togithub.com/swc-project/swc) | `0.111.1` ->
`0.112.2` |
[![age](https://developer.mend.io/api/mc/badges/age/crate/swc_ecma_ast/0.112.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/crate/swc_ecma_ast/0.112.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/crate/swc_ecma_ast/0.111.1/0.112.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/crate/swc_ecma_ast/0.111.1/0.112.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [swc_ecma_parser](https://togithub.com/swc-project/swc) | `0.142.2` ->
`0.143.3` |
[![age](https://developer.mend.io/api/mc/badges/age/crate/swc_ecma_parser/0.143.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/crate/swc_ecma_parser/0.143.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/crate/swc_ecma_parser/0.142.2/0.143.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/crate/swc_ecma_parser/0.142.2/0.143.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [tempfile](https://stebalien.com/projects/tempfile-rs/)
([source](https://togithub.com/Stebalien/tempfile)) | `3.9` -> `3.10` |
[![age](https://developer.mend.io/api/mc/badges/age/crate/tempfile/3.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/crate/tempfile/3.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/crate/tempfile/3.9.0/3.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/crate/tempfile/3.9.0/3.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [thiserror](https://togithub.com/dtolnay/thiserror) | `1.0.56` ->
`1.0.57` |
[![age](https://developer.mend.io/api/mc/badges/age/crate/thiserror/1.0.57?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/crate/thiserror/1.0.57?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/crate/thiserror/1.0.56/1.0.57?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/crate/thiserror/1.0.56/1.0.57?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [ts-node](https://typestrong.org/ts-node)
([source](https://togithub.com/TypeStrong/ts-node)) | [`10.9.1` ->
`10.9.2`](https://renovatebot.com/diffs/npm/ts-node/10.9.1/10.9.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/ts-node/10.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/ts-node/10.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/ts-node/10.9.1/10.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/ts-node/10.9.1/10.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [tsup](https://tsup.egoist.dev/)
([source](https://togithub.com/egoist/tsup)) | [`8.0.1` ->
`8.0.2`](https://renovatebot.com/diffs/npm/tsup/8.0.1/8.0.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/tsup/8.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/tsup/8.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/tsup/8.0.1/8.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/tsup/8.0.1/8.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [type-fest](https://togithub.com/sindresorhus/type-fest) | [`4.10.1`
-> `4.10.2`](https://renovatebot.com/diffs/npm/type-fest/4.10.1/4.10.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/type-fest/4.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/type-fest/4.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/type-fest/4.10.1/4.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/type-fest/4.10.1/4.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [typescript](https://www.typescriptlang.org/)
([source](https://togithub.com/Microsoft/TypeScript)) | [`5.2.2` ->
`5.3.3`](https://renovatebot.com/diffs/npm/typescript/5.2.2/5.3.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.2.2/5.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.2.2/5.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [vite](https://vitejs.dev)
([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite)) |
[`5.0.12` ->
`5.1.1`](https://renovatebot.com/diffs/npm/vite/5.0.12/5.1.1) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.0.12/5.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.0.12/5.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [wiremock](https://togithub.com/LukeMathWalker/wiremock-rs) |
`0.6.0-rc.3` -> `0.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/crate/wiremock/0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/crate/wiremock/0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/crate/wiremock/0.6.0-rc.3/0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/crate/wiremock/0.6.0-rc.3/0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| workspace.dependencies | patch |

---

### Release Notes

<details>
<summary>apollographql/apollo-client (@&#8203;apollo/client)</summary>

###
[`v3.9.4`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#394)

[Compare
Source](https://togithub.com/apollographql/apollo-client/compare/v3.9.3...v3.9.4)

##### Patch Changes

-
[#&#8203;11403](https://togithub.com/apollographql/apollo-client/pull/11403)
[`b0c4f3a`](https://togithub.com/apollographql/apollo-client/commit/b0c4f3ad8198981a229b46dc430345a76e577e9c)
Thanks [@&#8203;jerelmiller](https://togithub.com/jerelmiller)! - Fix
issue in `useLazyQuery` that results in a double network call when
calling the execute function with no arguments after having called it
previously with another set of arguments.

-
[#&#8203;11576](https://togithub.com/apollographql/apollo-client/pull/11576)
[`e855d00`](https://togithub.com/apollographql/apollo-client/commit/e855d00447e4d9ae478d98f6796d842ef6cc76d1)
Thanks [@&#8203;alessbell](https://togithub.com/alessbell)! - Revert PR
[#&#8203;11202](https://togithub.com/apollographql/apollo-client/pull/11202)
to fix caching bug reported in
[#&#8203;11560](https://togithub.com/apollographql/apollo-client/issues/11560)

###
[`v3.9.3`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#393)

[Compare
Source](https://togithub.com/apollographql/apollo-client/compare/v3.9.2...v3.9.3)

##### Patch Changes

-
[#&#8203;11525](https://togithub.com/apollographql/apollo-client/pull/11525)
[`dce923a`](https://togithub.com/apollographql/apollo-client/commit/dce923ae57eb6b6d889e2980635cb90e2c6cbca3)
Thanks [@&#8203;vezaynk](https://togithub.com/vezaynk)! - Allows passing
in client via options to useFragment

-
[#&#8203;11558](https://togithub.com/apollographql/apollo-client/pull/11558)
[`8cba16f`](https://togithub.com/apollographql/apollo-client/commit/8cba16f041609443111ecf5fb58faea1b3e79569)
Thanks [@&#8203;alessbell](https://togithub.com/alessbell)! - Fix
[`unbound-method`](https://togithub.com/apollographql/apollo-client/issues/11554)
linter error on ObservableQuery methods exposed on useQuery's
QueryResult object.

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/eslint-plugin)</summary>

###
[`v6.21.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6210-2024-02-05)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.20.0...v6.21.0)

##### 🚀 Features

-   export plugin metadata

-   allow `parserOptions.project: false`

-   **eslint-plugin:** add rule prefer-find

##### 🩹 Fixes

- **eslint-plugin:** \[no-unused-vars] don't report on types referenced
in export assignment expression

- **eslint-plugin:** \[switch-exhaustiveness-check] better support for
intersections, infinite types, non-union values

- **eslint-plugin:** \[consistent-type-imports] dont report on types
used in export assignment expressions

- **eslint-plugin:** \[no-unnecessary-condition] handle left-hand
optional with exactOptionalPropertyTypes option

- **eslint-plugin:** \[class-literal-property-style] allow getter when
same key setter exists

- **eslint-plugin:** \[no-unnecessary-type-assertion] provide valid
fixes for assertions with extra tokens before `as` keyword

##### ❤️  Thank You

-   auvred
-   Brad Zacher
-   Kirk Waiblinger
-   Pete Gonzalez
-   YeonJuan

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.20.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6200-2024-01-29)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.1...v6.20.0)

##### 🚀 Features

- **eslint-plugin:** \[member-ordering] allow easy reuse of the default
ordering

##### 🩹 Fixes

- **eslint-plugin:** \[no-useless-template-literals] incorrect bigint
autofix result

- **eslint-plugin:** \[prefer-nullish-coalescing] treat any/unknown as
non-nullable

- **eslint-plugin:** \[no-useless-template-literals] report Infinity &
NaN

-   **eslint-plugin:** \[prefer-readonly] disable checking accessors

##### ❤️  Thank You

-   Alex Parloti
-   auvred
-   James Browning
-   StyleShit
-   YeonJuan

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.19.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6191-2024-01-22)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.0...v6.19.1)

##### 🩹 Fixes

- **type-utils:** preventing isUnsafeAssignment infinite recursive calls

- **eslint-plugin:** \[no-unnecessary-condition] fix false positive for
type variable

##### ❤️  Thank You

-   YeonJuan

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.19.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6190-2024-01-15)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.18.1...v6.19.0)

##### 🚀 Features

-   **eslint-plugin:** \[prefer-promise-reject-errors] add rule

-   **eslint-plugin:** \[no-array-delete] add new rule

- **eslint-plugin:** \[no-useless-template-literals] add fix suggestions

##### 🩹 Fixes

- **eslint-plugin:** \[no-unnecessary-type-assertion] detect unnecessary
non-null-assertion on a call expression

- **eslint-plugin:** \[no-unnecesary-type-assertion] treat unknown/any
as nullable

##### ❤️  Thank You

-   auvred
-   Brad Zacher
-   Josh Goldberg ✨
-   Joshua Chen
-   LJX
-   Steven
-   StyleShit

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/parser)</summary>

###
[`v6.21.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6210-2024-02-05)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.20.0...v6.21.0)

##### 🚀 Features

-   allow `parserOptions.project: false`

##### ❤️  Thank You

-   auvred
-   Brad Zacher
-   Kirk Waiblinger
-   Pete Gonzalez
-   YeonJuan

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.20.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6200-2024-01-29)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.1...v6.20.0)

This was a version bump only for parser to align it with other projects,
there were no code changes.

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.19.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6191-2024-01-22)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.0...v6.19.1)

This was a version bump only for parser to align it with other projects,
there were no code changes.

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.19.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6190-2024-01-15)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.18.1...v6.19.0)

This was a version bump only for parser to align it with other projects,
there were no code changes.

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>vitejs/vite-plugin-react
(@&#8203;vitejs/plugin-react)</summary>

###
[`v4.2.1`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#421-2023-12-04)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.2.0...v4.2.1)

Remove generic parameter on `Plugin` to avoid type error with Rollup
4/Vite 5 and `skipLibCheck: false`.

I expect very few people to currently use this feature, but if you are
extending the React plugin via `api` object, you can get back the typing
of the hook by importing `ViteReactPluginApi`:

```ts
import type { Plugin } from 'vite'
import type { ViteReactPluginApi } from '@&#8203;vitejs/plugin-react'

export const somePlugin: Plugin = {
  name: 'some-plugin',
  api: {
    reactBabel: (babelConfig) => {
      babelConfig.plugins.push('some-babel-plugin')
    },
  } satisfies ViteReactPluginApi,
}
```

###
[`v4.2.0`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#420-2023-11-16)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.1.1...v4.2.0)

##### Update peer dependency range to target Vite 5

There were no breaking change that impacted this plugin, so any
combination of React plugins and Vite core version will work.

##### Align jsx runtime for optimized dependencies

This will only affect people using internal libraries that contains
untranspiled JSX. This change aligns the optimizer with the source code
and avoid issues when the published source don't have `React` in the
scope.

Reminder: While being partially supported in Vite, publishing TS & JSX
outside of internal libraries is highly discouraged.

###
[`v4.1.1`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#411-2023-11-02)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.1.0...v4.1.1)

- Enable retainLines to get correct line numbers for jsxDev (fix
[#&#8203;235](https://togithub.com/vitejs/vite-plugin-react/issues/235))

###
[`v4.1.0`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#410-2023-09-24)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.0.4...v4.1.0)

- Add `@types/babel__cores` to dependencies (fix
[#&#8203;211](https://togithub.com/vitejs/vite-plugin-react/issues/211))
- Improve build perf when not using Babel plugins by lazy loading
`@babel/core`
[#&#8203;212](https://togithub.com/vitejs/vite-plugin-react/pull/212)
- Better invalidation message when an export is added & fix HMR for
export of nullish values
[#&#8203;215](https://togithub.com/vitejs/vite-plugin-react/pull/215)
- Include non-dev jsx runtime in optimizeDeps & support HMR for JS files
using the non dev runtime
[#&#8203;224](https://togithub.com/vitejs/vite-plugin-react/pull/224)
- The build output now contains a `index.d.cts` file so you don't get
types errors when setting `moduleResolution` to `node16` or `nodenext`
in your tsconfig (we recommend using `bundler` which is more close to
how Vite works)

###
[`v4.0.4`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#404-2023-07-31)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.0.3...v4.0.4)

- Fix
[#&#8203;198](https://togithub.com/vitejs/vite-plugin-react/discussions/198):
Enable Babel if presets list is not empty

###
[`v4.0.3`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#403-2023-07-10)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.0.2...v4.0.3)

- Revert
[#&#8203;108](https://togithub.com/vitejs/vite-plugin-react/pull/108):
Remove throw when refresh runtime is loaded twice to enable usage in
micro frontend apps. This was added to help fix setup usage, and this is
not worth an annoying warning for others or a config parameter.

###
[`v4.0.2`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#402-2023-07-06)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/deb40a45f8c296ca2ae4e27c7709bec5ae5b9a62...v4.0.2)

- Fix fast-refresh for files that are transformed into jsx
([#&#8203;188](https://togithub.com/vitejs/vite-plugin-react/pull/188))

###
[`v4.0.1`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#401-2023-06-19)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/f87d23e91fa48b8a8488dd8bee5277070f5fc3c2...deb40a45f8c296ca2ae4e27c7709bec5ae5b9a62)

- Support [Vitest
deps.experimentalOptimizer](https://vitest.dev/config/#deps-experimentaloptimizer)
- Support using components inside web workers
([#&#8203;181](https://togithub.com/vitejs/vite-plugin-react/pull/181))

</details>

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

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

</details>

<details>
<summary>motdotla/dotenv (dotenv)</summary>

###
[`v16.4.2`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1642-2024-02-10)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.4.1...v16.4.2)

##### Changed

- Changed funding link in package.json to
[`dotenvx.com`](https://dotenvx.com)

###
[`v16.4.1`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1641-2024-01-24)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.4.0...v16.4.1)

- Patch support for array as `path` option
[#&#8203;797](https://togithub.com/motdotla/dotenv/pull/797)

###
[`v16.4.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1640-2024-01-23)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.3.2...v16.4.0)

- Add `error.code` to error messages around `.env.vault` decryption
handling [#&#8203;795](https://togithub.com/motdotla/dotenv/pull/795)
- Add ability to find `.env.vault` file when filename(s) passed as an
array [#&#8203;784](https://togithub.com/motdotla/dotenv/pull/784)

###
[`v16.3.2`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1632-2024-01-18)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.3.1...v16.3.2)

##### Added

- Add debug message when no encoding set
[#&#8203;735](https://togithub.com/motdotla/dotenv/pull/735)

##### Changed

- Fix output typing for `populate`
[#&#8203;792](https://togithub.com/motdotla/dotenv/pull/792)
- Use subarray instead of slice
[#&#8203;793](https://togithub.com/motdotla/dotenv/pull/793)

###
[`v16.3.1`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1631-2023-06-17)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.3.0...v16.3.1)

##### Added

- Add missing type definitions for `processEnv` and `DOTENV_KEY`
options. [#&#8203;756](https://togithub.com/motdotla/dotenv/pull/756)

###
[`v16.3.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1630-2023-06-16)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.2.0...v16.3.0)

##### Added

- Optionally pass `DOTENV_KEY` to options rather than relying on
`process.env.DOTENV_KEY`. Defaults to `process.env.DOTENV_KEY`
[#&#8203;754](https://togithub.com/motdotla/dotenv/pull/754)

###
[`v16.2.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1620-2023-06-15)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.1.4...v16.2.0)

##### Added

- Optionally write to your own target object rather than `process.env`.
Defaults to `process.env`.
[#&#8203;753](https://togithub.com/motdotla/dotenv/pull/753)
- Add import type URL to types file
[#&#8203;751](https://togithub.com/motdotla/dotenv/pull/751)

</details>

<details>
<summary>eslint/eslint (eslint)</summary>

### [`v8.56.0`](https://togithub.com/eslint/eslint/releases/tag/v8.56.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.55.0...v8.56.0)

##### Features

-
[`0dd9704`](https://togithub.com/eslint/eslint/commit/0dd9704c4751e1cd02039f7d6485fee09bbccbf6)
feat: Support custom severity when reporting unused disable directives
([#&#8203;17212](https://togithub.com/eslint/eslint/issues/17212))
(Bryan Mishkin)
-
[`31a7e3f`](https://togithub.com/eslint/eslint/commit/31a7e3fde491e36496b54e8905c766b31162d776)
feat: fix no-restricted-properties false negatives with unknown objects
([#&#8203;17818](https://togithub.com/eslint/eslint/issues/17818)) (Arka
Pratim Chaudhuri)

##### Bug Fixes

-
[`7d5e5f6`](https://togithub.com/eslint/eslint/commit/7d5e5f68849ae80caec0fc96ecceebccd348deec)
fix: `TypeError: fs.exists is not a function` on read-only file system
([#&#8203;17846](https://togithub.com/eslint/eslint/issues/17846))
(Francesco Trotta)
-
[`74739c8`](https://togithub.com/eslint/eslint/commit/74739c849bbb6547b0e555ed8bb2ba1cbe0fdce4)
fix: suggestion with invalid syntax in no-promise-executor-return rule
([#&#8203;17812](https://togithub.com/eslint/eslint/issues/17812))
(Bryan Mishkin)

##### Documentation

-
[`9007719`](https://togithub.com/eslint/eslint/commit/90077199fe519953f9af8664bf947db4e4958514)
docs: update link in ways-to-extend.md
([#&#8203;17839](https://togithub.com/eslint/eslint/issues/17839)) (Amel
SELMANE)
-
[`3a22236`](https://togithub.com/eslint/eslint/commit/3a22236f8d10af8a5bcafe56092651d3d681c99d)
docs: Update README (GitHub Actions Bot)
-
[`54c3ca6`](https://togithub.com/eslint/eslint/commit/54c3ca6f2dcd2a7afd53f42fc32055a25587259e)
docs: fix migration-guide example
([#&#8203;17829](https://togithub.com/eslint/eslint/issues/17829))
(Tanuj Kanti)
-
[`4391b71`](https://togithub.com/eslint/eslint/commit/4391b71e62b15e54b0493f0dce1ea053ebbc0689)
docs: check config comments in rule examples
([#&#8203;17815](https://togithub.com/eslint/eslint/issues/17815))
(Francesco Trotta)
-
[`fd28363`](https://togithub.com/eslint/eslint/commit/fd2836342c2be4751b05fe0ba7cece17d1edecc8)
docs: remove mention about ESLint stylistic rules in readme
([#&#8203;17810](https://togithub.com/eslint/eslint/issues/17810))
(Zwyx)
-
[`48ed5a6`](https://togithub.com/eslint/eslint/commit/48ed5a6dad478a14d3e823f137455c523f373e0b)
docs: Update README (GitHub Actions Bot)

##### Chores

-
[`ba6af85`](https://togithub.com/eslint/eslint/commit/ba6af85c7d8ba55d37f8663aee949d148e441c1a)
chore: upgrade
[@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).56.0
([#&#8203;17864](https://togithub.com/eslint/eslint/issues/17864))
(Milos Djermanovic)
-
[`60a531a`](https://togithub.com/eslint/eslint/commit/60a531a9c0811ddf718e26b9136e133f580b6c36)
chore: package.json update for
[@&#8203;eslint/js](https://togithub.com/eslint/js) release (Jenkins)
-
[`ba87a06`](https://togithub.com/eslint/eslint/commit/ba87a0651a65b52c3ac442b512dd9f4c2b4c5f57)
chore: update dependency markdownlint to ^0.32.0
([#&#8203;17783](https://togithub.com/eslint/eslint/issues/17783))
(renovate\[bot])
-
[`9271d10`](https://togithub.com/eslint/eslint/commit/9271d10d9eabeafb0129a090f29191bfd14273c0)
chore: add GitHub issue template for docs issues
([#&#8203;17845](https://togithub.com/eslint/eslint/issues/17845)) (Josh
Goldberg ✨)
-
[`70a686b`](https://togithub.com/eslint/eslint/commit/70a686b3c1feac5eca98bbff9bd67175f550d5db)
chore: Convert rule tests to FlatRuleTester
([#&#8203;17819](https://togithub.com/eslint/eslint/issues/17819))
(Nicholas C. Zakas)
-
[`f3a599d`](https://togithub.com/eslint/eslint/commit/f3a599d34c7080fc0b2c9a60b5e54dc98c22867c)
chore: upgrade eslint-plugin-unicorn to v49.0.0
([#&#8203;17837](https://togithub.com/eslint/eslint/issues/17837)) (唯然)
-
[`905d4b7`](https://togithub.com/eslint/eslint/commit/905d4b75ab2df42aba30622cee0f66b511397e2c)
chore: upgrade eslint-plugin-eslint-plugin v5.2.1
([#&#8203;17838](https://togithub.com/eslint/eslint/issues/17838)) (唯然)
-
[`4d7c3ce`](https://togithub.com/eslint/eslint/commit/4d7c3ce246e6b499f472342ef59496a47cc033d6)
chore: update eslint-plugin-n v16.4.0
([#&#8203;17836](https://togithub.com/eslint/eslint/issues/17836)) (唯然)
-
[`fd0c60c`](https://togithub.com/eslint/eslint/commit/fd0c60c3be1f213e5a6d69d8a3248e963619e155)
ci: unpin Node.js 21.2.0
([#&#8203;17821](https://togithub.com/eslint/eslint/issues/17821))
(Francesco Trotta)

### [`v8.55.0`](https://togithub.com/eslint/eslint/releases/tag/v8.55.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.54.0...v8.55.0)

#### Features

-
[`8c9e6c1`](https://togithub.com/eslint/eslint/commit/8c9e6c100a6eb69da292463293b3b48cff911a01)
feat: importNamePattern option in no-restricted-imports
([#&#8203;17721](https://togithub.com/eslint/eslint/issues/17721))
(Tanuj Kanti)

#### Documentation

-
[`83ece2a`](https://togithub.com/eslint/eslint/commit/83ece2afc2dc6c49efe82678663fe4cba590c0e5)
docs: fix typo `--rules` -> `--rule`
([#&#8203;17806](https://togithub.com/eslint/eslint/issues/17806))
(OKURA Masafumi)
-
[`fffca5c`](https://togithub.com/eslint/eslint/commit/fffca5c362bcd205dbf79d1bb52834f8a98fc6bd)
docs: remove "Open in Playground" buttons for removed rules
([#&#8203;17791](https://togithub.com/eslint/eslint/issues/17791))
(Francesco Trotta)
-
[`a6d9442`](https://togithub.com/eslint/eslint/commit/a6d9442a9ab34d5d19f78d8c8fd0767a1237bfe3)
docs: fix correct/incorrect examples of rules
([#&#8203;17789](https://togithub.com/eslint/eslint/issues/17789))
(Tanuj Kanti)
-
[`383e999`](https://togithub.com/eslint/eslint/commit/383e99928d7ce649ec9030c9856b03fbac0c3501)
docs: update and fix examples for `no-unused-vars`
([#&#8203;17788](https://togithub.com/eslint/eslint/issues/17788))
(Tanuj Kanti)
-
[`5a8efd5`](https://togithub.com/eslint/eslint/commit/5a8efd5b7ad13eb320a1f468d1d4ab3c8ab99214)
docs: add specific stylistic rule for each deprecated rule
([#&#8203;17778](https://togithub.com/eslint/eslint/issues/17778))
(Etienne)

#### Chores

-
[`eb8950c`](https://togithub.com/eslint/eslint/commit/eb8950c3b811c9163b9aae23af8b6266ad98b295)
chore: upgrade
[@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).55.0
([#&#8203;17811](https://togithub.com/eslint/eslint/issues/17811))
(Milos Djermanovic)
-
[`93df384`](https://togithub.com/eslint/eslint/commit/93df3849a7a25ebe0502000bf0bfb80a6613a5ae)
chore: package.json update for
[@&#8203;eslint/js](https://togithub.com/eslint/js) release (Jenkins)
-
[`fe4b954`](https://togithub.com/eslint/eslint/commit/fe4b9545a83e9aca7ba4bb77bc9c868d57de777f)
chore: upgrade
[@&#8203;eslint/eslintrc](https://togithub.com/eslint/eslintrc)[@&#8203;2](https://togithub.com/2).1.4
([#&#8203;17799](https://togithub.com/eslint/eslint/issues/17799))
(Milos Djermanovic)
-
[`bd8911d`](https://togithub.com/eslint/eslint/commit/bd8911db85c7a1127543c9212c8cea47a5cb687d)
ci: pin Node.js 21.2.0
([#&#8203;17809](https://togithub.com/eslint/eslint/issues/17809))
(Milos Djermanovic)
-
[`b29a16b`](https://togithub.com/eslint/eslint/commit/b29a16b22f234f6134475efb6c7be5ac946556ee)
chore: fix several `cli` tests to run in the intended flat config mode
([#&#8203;17797](https://togithub.com/eslint/eslint/issues/17797))
(Milos Djermanovic)
-
[`de165c1`](https://togithub.com/eslint/eslint/commit/de165c108203c6703516ac651f5b4cac5b241804)
chore: remove unused config-extends fixtures
([#&#8203;17781](https://togithub.com/eslint/eslint/issues/17781))
(Milos Djermanovic)
-
[`d4304b8`](https://togithub.com/eslint/eslint/commit/d4304b8b66eac870ffbf4840d84add8a123b25fc)
chore: remove formatting/stylistic rules from new rule templates
([#&#8203;17780](https://togithub.com/eslint/eslint/issues/17780))
(Francesco Trotta)
-
[`21024fe`](https://togithub.com/eslint/eslint/commit/21024fe2029420b413bed11d23761c87e9a02a1a)
chore: check rule examples for syntax errors
([#&#8203;17718](https://togithub.com/eslint/eslint/issues/17718))
(Francesco Trotta)

### [`v8.54.0`](https://togithub.com/eslint/eslint/releases/tag/v8.54.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.53.0...v8.54.0)

#### Features

-
[`a7a883b`](https://togithub.com/eslint/eslint/commit/a7a883bd6ba4f140b60cbbb2be5b53d750f6c8db)
feat: for-direction rule add check for condition in reverse order
([#&#8203;17755](https://togithub.com/eslint/eslint/issues/17755))
(Angelo Annunziata)
-
[`1452dc9`](https://togithub.com/eslint/eslint/commit/1452dc9f12c45c05d7c569f737221f0d988ecef1)
feat: Add suggestions to no-console
([#&#8203;17680](https://togithub.com/eslint/eslint/issues/17680)) (Joel
Mathew Koshy)
-
[`21ebf8a`](https://togithub.com/eslint/eslint/commit/21ebf8a811be9f4b009cf70a10be5062d4fdc736)
feat: update `no-array-constructor` rule
([#&#8203;17711](https://togithub.com/eslint/eslint/issues/17711))
(Francesco Trotta)

#### Bug Fixes

-
[`98926e6`](https://togithub.com/eslint/eslint/commit/98926e6e7323e5dd12a9f016cb558144296665af)
fix: Ensure that extra data is not accidentally stored in the cache file
([#&#8203;17760](https://togithub.com/eslint/eslint/issues/17760))
(Milos Djermanovic)
-
[`e8cf9f6`](https://togithub.com/eslint/eslint/commit/e8cf9f6a524332293f8b2c90a2db4a532e47d919)
fix: Make dark scroll bar in dark theme
([#&#8203;17753](https://togithub.com/eslint/eslint/issues/17753))
(Pavel)
-
[`3cbeaad`](https://togithub.com/eslint/eslint/commit/3cbeaad7b943c153937ce34365cec2c406f2b98b)
fix: Use `cwd` constructor option as config `basePath` in Linter
([#&#8203;17705](https://togithub.com/eslint/eslint/issues/17705))
(Milos Djermanovic)

#### Documentation

-
[`becfdd3`](https://togithub.com/eslint/eslint/commit/becfdd39b25d795e56c9a13eb3e77af6b9c86e8a)
docs: Make clear when rules are removed
([#&#8203;17728](https://togithub.com/eslint/eslint/issues/17728))
(Nicholas C. Zakas)
-
[`05d6e99`](https://togithub.com/eslint/eslint/commit/05d6e99153ed6d94eb30f46c57609371918a41f3)
docs: update "Submit a Pull Request" page
([#&#8203;17712](https://togithub.com/eslint/eslint/issues/17712))
(Francesco Trotta)
-
[`eb2279e`](https://togithub.com/eslint/eslint/commit/eb2279e5148cee8fdea7dae614f4f8af7a2d06c3)
docs: display info about deprecated rules
([#&#8203;17749](https://togithub.com/eslint/eslint/issues/17749))
(Percy Ma)
-
[`d245326`](https://togithub.com/eslint/eslint/commit/d24532601e64714ac5d08507e05aa5c14ecd1d5a)
docs: Correct working in migrating plugin docs
([#&#8203;17722](https://togithub.com/eslint/eslint/issues/17722))
(Filip Tammergård)

#### Chores

-
[`d644de9`](https://togithub.com/eslint/eslint/commit/d644de9a4b593b565617303a095bc9aa69e7b768)
chore: upgrade
[@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).54.0
([#&#8203;17773](https://togithub.com/eslint/eslint/issues/17773))
(Milos Djermanovic)
-
[`1e6e314`](https://togithub.com/eslint/eslint/commit/1e6e31415cc429a3a9fc64b2ec03df0e0ec0c91b)
chore: package.json update for
[@&#8203;eslint/js](https://togithub.com/eslint/js) release (Jenkins)
-
[`6fb8805`](https://togithub.com/eslint/eslint/commit/6fb8805310afe7476d6c404f172177a6d15fcf11)
chore: Fixed grammar in issue_templates/rule_change
([#&#8203;17770](https://togithub.com/eslint/eslint/issues/17770)) (Joel
Mathew Koshy)
-
[`85db724`](https://togithub.com/eslint/eslint/commit/85db7243ddb8706ed60ab64a7ddf604d0d7de493)
chore: upgrade `markdownlint` to 0.31.1
([#&#8203;17754](https://togithub.com/eslint/eslint/issues/17754))
(Nitin Kumar)
-
[`6d470d2`](https://togithub.com/eslint/eslint/commit/6d470d2e74535761bd56dcb1c021b463ef9e8a9c)
chore: update dependency recast to ^0.23.0
([#&#8203;17736](https://togithub.com/eslint/eslint/issues/17736))
(renovate\[bot])
-
[`b7121b5`](https://togithub.com/eslint/eslint/commit/b7121b590d578c9c9b38ee481313317f30e54817)
chore: update dependency markdownlint-cli to ^0.37.0
([#&#8203;17735](https://togithub.com/eslint/eslint/issues/17735))
(renovate\[bot])
-
[`633b9a1`](https://togithub.com/eslint/eslint/commit/633b9a19752b6a22ab4d6c824f27a75ac0e4151b)
chore: update dependency regenerator-runtime to ^0.14.0
([#&#8203;17739](https://togithub.com/eslint/eslint/issues/17739))
(renovate\[bot])
-
[`acac16f`](https://togithub.com/eslint/eslint/commit/acac16fdf8540f7ba86cf637e3c1b253bd35a268)
chore: update dependency vite-plugin-commonjs to ^0.10.0
([#&#8203;17740](https://togithub.com/eslint/eslint/issues/17740))
(renovate\[bot])
-
[`ba8ca7e`](https://togithub.com/eslint/eslint/commit/ba8ca7e3debcba68ee7015b9221cf5acd7870206)
chore: add .github/renovate.json5
([#&#8203;17567](https://togithub.com/eslint/eslint/issues/17567)) (Josh
Goldberg ✨)

### [`v8.53.0`](https://togithub.com/eslint/eslint/releases/tag/v8.53.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.52.0...v8.53.0)

#### Features

-
[`528e1c0`](https://togithub.com/eslint/eslint/commit/528e1c00dc2aa8636e5b706c4270dc655cfa17e3)
feat: Deprecate formatting rules
([#&#8203;17696](https://togithub.com/eslint/eslint/issues/17696))
(Nicholas C. Zakas)
-
[`c0b11dd`](https://togithub.com/eslint/eslint/commit/c0b11ddb9f8aacc64c3933b9f278939aa7bea481)
feat: Add suggestions for no-prototype-builtins
([#&#8203;17677](https://togithub.com/eslint/eslint/issues/17677))
(Yonathan Randolph)

#### Bug Fixes

-
[`1ad6257`](https://togithub.com/eslint/eslint/commit/1ad6257744d63281235fcc33288394b1d69b34ce)
fix: ensure that exit code for fatal errors is not overwritten
([#&#8203;17683](https://togithub.com/eslint/eslint/issues/17683))
(Milos Djermanovic)
-
[`b329ea7`](https://togithub.com/eslint/eslint/commit/b329ea748dff45f11c7e218208244dc24fcb5c8f)
fix: add `;` after JSX nodes in `no-object-constructor` autofix
([#&#8203;17672](https://togithub.com/eslint/eslint/issues/17672))
(Francesco Trotta)

#### Documentation

-
[`ab8c60d`](https://togithub.com/eslint/eslint/commit/ab8c60d4f859cec787b5a12f7271b40e666235f5)
docs: change position of return to top button
([#&#8203;17688](https://togithub.com/eslint/eslint/issues/17688))
(Tanuj Kanti)
-
[`4fc44c0`](https://togithub.com/eslint/eslint/commit/4fc44c0b8c5dca466bffdfe01dfd80794d7762b7)
docs: update twitter icon to new X icon
([#&#8203;17687](https://togithub.com/eslint/eslint/issues/17687))
(Tanuj Kanti)
-
[`4164b2c`](https://togithub.com/eslint/eslint/commit/4164b2ceec89726b18ea0b0e34fab05735d55a09)
docs: Update README (GitHub Actions Bot)
-
[`8651895`](https://togithub.com/eslint/eslint/commit/8651895ca7ae15e13d74c8be67d9eebd63a7ce1f)
docs: Fix tabs in rule examples
([#&#8203;17653](https://togithub.com/eslint/eslint/issues/17653))
(Francesco Trotta)
-
[`3aec1c5`](https://togithub.com/eslint/eslint/commit/3aec1c55ba2c6d2833e1

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

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
renovate bot added a commit to smartive/zitadel-rust that referenced this pull request Mar 11, 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) | dev-dependencies |
patch | `0.4.33` -> `0.4.35` |

---

### Release Notes

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

###
[`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):
0.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`
([chronotope/pure-rust-locales#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
[chronotope/pure-rust-locales#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)!

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 9pm,before 6am" in timezone
Europe/Zurich, 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/smartive/zitadel-rust).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIyNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to ziyadedher/evm-bench that referenced this pull request Mar 18, 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.33` -> `0.4.35` |

---

### Release Notes

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

###
[`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`
([chronotope/pure-rust-locales#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
[chronotope/pure-rust-locales#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)!

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Time formatting on en_US locale with '%X' not expected
3 participants