Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 10, 2025

Bumps the firecracker group with 5 updates:

Package From To
quote 1.0.41 1.0.42
syn 2.0.109 2.0.110
cc 1.2.44 1.2.45
jiff 0.2.15 0.2.16
jiff-static 0.2.15 0.2.16

Updates quote from 1.0.41 to 1.0.42

Release notes

Sourced from quote's releases.

1.0.42

Commits
  • bb9e7a4 Release 1.0.42
  • 683c1d6 Merge pull request #311 from dtolnay/append
  • ed93e8e Revert PR 305
  • 1f2a959 Merge pull request #310 from dtolnay/up
  • 37448aa Raise required compiler to Rust 1.68
  • 39ac89e Resolve manual_let_else pedantic clippy lint
  • f3eac36 Raise required compiler to Rust 1.65
  • 7b490c5 Merge pull request #309 from dtolnay/append
  • 71dfa84 Apply pattern from PR 306 to append_separated & append_terminated
  • df32af7 Touch up PR 306
  • Additional commits viewable in compare view

Updates syn from 2.0.109 to 2.0.110

Release notes

Sourced from syn's releases.

2.0.110

  • Tweaks to improve build speed (#1939, thanks @​dishmaker)
  • Make syn::ext::IdentExt::unraw available without "parsing" feature (#1940)
  • Support parsing syn::Meta followed by => (#1944)
Commits
  • 1c8cabe Release 2.0.110
  • 8ef195b Merge pull request #1944 from dtolnay/metaarrow
  • 9ab4aef Support parsing Meta followed by fat arrow
  • 7711764 Add test of parsing fat arrow after meta
  • 193f52e Update test suite to nightly-2025-11-10
  • 5ece7e1 Merge pull request #1941 from dtolnay/ext
  • 6a44478 Add extension trait for Punct construction with span
  • 798e109 Drop 2 from name of TokenStreamExt2
  • b344f2d Never import name of quote::TokenStreamExt
  • b0ec4c7 Touch up PR 1939
  • Additional commits viewable in compare view

Updates cc from 1.2.44 to 1.2.45

Release notes

Sourced from cc's releases.

cc-v1.2.45

Other

  • Regenerate target info (#1606)
  • Use a default check for the "env" variable in apple_sdk_name (#1605)
Changelog

Sourced from cc's changelog.

1.2.45 - 2025-11-07

Other

  • Regenerate target info (#1606)
  • Use a default check for the "env" variable in apple_sdk_name (#1605)
Commits

Updates jiff from 0.2.15 to 0.2.16

Changelog

Sourced from jiff's changelog.

0.2.16 (2025-11-07)

This release contains a number of enhancements and bug fixes that have accrued over the last few months. Most are small polishes. A couple of the bug fixes apply to panics that could occur when parsing invalid TZ strings or invalid strptime format strings.

Also, parsing into a Span should now be much faster (for both the ISO 8601 and "friendly" duration formats).

Enhancements:

  • #298: Add Serde helpers for (de)serializing std::time::Duration values.
  • #396: Add Sub and Add trait implementations for Zoned (in addition to the already existing trait implementations for &Zoned).
  • #397: Add BrokenDownTime::set_meridiem and ensure it overrides the hour when formatting.
  • #409: Switch dependency on serde to serde_core. This should help speed up compilation times in some cases.
  • #430: Add new Zoned::series API, making it consistent with the same API on other datetime types.
  • #432: When lenient mode is enabled for strftime, Jiff will no longer error when the formatting string contains invalid UTF-8.
  • #432: Formatting of %y and %g no longer fails based on the specific year value.
  • #432: Parsing of %s is now a bit more consistent with other fields. Moreover, BrokenDownTime::{to_timestamp,to_zoned} will now prefer timestamps parsed with %s over any other fields that have been parsed.
  • #433: Allow parsing just a %s into a Zoned via the Etc/Unknown time zone.

Bug fixes:

  • #386: Fix a bug where 2087-12-31T23:00:00Z in the Africa/Casablanca time zone could not be round-tripped (because its offset was calculated incorrectly as a result of not handling "permanent DST" POSIX time zones).
  • #407: Fix a panic that occurred when parsing an empty string as a POSIX time zone.
  • #410: Fix a panic that could occur when parsing %: via strptime APIs.
  • #414: Update some parts of the documentation to indicate that TimeZone::unknown()

... (truncated)

Commits
  • 2ef6045 0.2.16
  • 0b293b4 doc: a few documentation fixes
  • 0fe02f2 changelog: add entries for duration work
  • b9484ea fmt/serde: add helpers for std::time::Duration
  • 87c607b fmt: add parsing routines for std::time::Duration
  • 8a7f249 fmt: add support for printing std::time::Duration
  • 3e49cbe signed_duration: remove extraneous comments
  • b5f30f2 fmt: make fractional formatting use u32
  • 8e61ffd fmt: add unsigned integer formatting
  • 1910063 fmt: refactor friendly printer to use std::time::Duration
  • Additional commits viewable in compare view

Updates jiff-static from 0.2.15 to 0.2.16

Changelog

Sourced from jiff-static's changelog.

0.2.16 (2025-11-07)

This release contains a number of enhancements and bug fixes that have accrued over the last few months. Most are small polishes. A couple of the bug fixes apply to panics that could occur when parsing invalid TZ strings or invalid strptime format strings.

Also, parsing into a Span should now be much faster (for both the ISO 8601 and "friendly" duration formats).

Enhancements:

  • #298: Add Serde helpers for (de)serializing std::time::Duration values.
  • #396: Add Sub and Add trait implementations for Zoned (in addition to the already existing trait implementations for &Zoned).
  • #397: Add BrokenDownTime::set_meridiem and ensure it overrides the hour when formatting.
  • #409: Switch dependency on serde to serde_core. This should help speed up compilation times in some cases.
  • #430: Add new Zoned::series API, making it consistent with the same API on other datetime types.
  • #432: When lenient mode is enabled for strftime, Jiff will no longer error when the formatting string contains invalid UTF-8.
  • #432: Formatting of %y and %g no longer fails based on the specific year value.
  • #432: Parsing of %s is now a bit more consistent with other fields. Moreover, BrokenDownTime::{to_timestamp,to_zoned} will now prefer timestamps parsed with %s over any other fields that have been parsed.
  • #433: Allow parsing just a %s into a Zoned via the Etc/Unknown time zone.

Bug fixes:

  • #386: Fix a bug where 2087-12-31T23:00:00Z in the Africa/Casablanca time zone could not be round-tripped (because its offset was calculated incorrectly as a result of not handling "permanent DST" POSIX time zones).
  • #407: Fix a panic that occurred when parsing an empty string as a POSIX time zone.
  • #410: Fix a panic that could occur when parsing %: via strptime APIs.
  • #414: Update some parts of the documentation to indicate that TimeZone::unknown()

... (truncated)

Commits
  • 2ef6045 0.2.16
  • 0b293b4 doc: a few documentation fixes
  • 0fe02f2 changelog: add entries for duration work
  • b9484ea fmt/serde: add helpers for std::time::Duration
  • 87c607b fmt: add parsing routines for std::time::Duration
  • 8a7f249 fmt: add support for printing std::time::Duration
  • 3e49cbe signed_duration: remove extraneous comments
  • b5f30f2 fmt: make fractional formatting use u32
  • 8e61ffd fmt: add unsigned integer formatting
  • 1910063 fmt: refactor friendly printer to use std::time::Duration
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the firecracker group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [quote](https://github.com/dtolnay/quote) | `1.0.41` | `1.0.42` |
| [syn](https://github.com/dtolnay/syn) | `2.0.109` | `2.0.110` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.44` | `1.2.45` |
| [jiff](https://github.com/BurntSushi/jiff) | `0.2.15` | `0.2.16` |
| [jiff-static](https://github.com/BurntSushi/jiff) | `0.2.15` | `0.2.16` |


Updates `quote` from 1.0.41 to 1.0.42
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.41...1.0.42)

Updates `syn` from 2.0.109 to 2.0.110
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.109...2.0.110)

Updates `cc` from 1.2.44 to 1.2.45
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.44...cc-v1.2.45)

Updates `jiff` from 0.2.15 to 0.2.16
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.15...jiff-static-0.2.16)

Updates `jiff-static` from 0.2.15 to 0.2.16
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.15...jiff-static-0.2.16)

---
updated-dependencies:
- dependency-name: quote
  dependency-version: 1.0.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: syn
  dependency-version: 2.0.110
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: cc
  dependency-version: 1.2.45
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: jiff
  dependency-version: 0.2.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: jiff-static
  dependency-version: 0.2.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants