cedar-policy / cedar

Implementation of the Cedar Policy Language
https://www.cedarpolicy.com
Apache License 2.0
892 stars 80 forks source link

Bump the rust-dependencies group with 12 updates #1337

Closed dependabot[bot] closed 10 hours ago

dependabot[bot] commented 1 day ago

Bumps the rust-dependencies group with 12 updates:

Package From To
url 2.5.3 2.5.4
cpufeatures 0.2.15 0.2.16
itoa 1.0.11 1.0.13
litemap 0.7.3 0.7.4
proc-macro2 1.0.89 1.0.92
rustix 0.38.40 0.38.41
syn 2.0.87 2.0.89
unicode-ident 1.0.13 1.0.14
yoke 0.7.4 0.7.5
yoke-derive 0.7.4 0.7.5
zerofrom 0.1.4 0.1.5
zerofrom-derive 0.1.4 0.1.5

Updates url from 2.5.3 to 2.5.4

Release notes

Sourced from url's releases.

v2.5.4

What's Changed

  • Revert "Normalize URL paths: convert /.//p, /..//p, and //p to p (#943)" by @​valenting in servo/rust-url#999
  • Updates the MSRV to 1.63 required though the libc v0.2.164 dependency

Full Changelog: https://github.com/servo/rust-url/compare/v2.5.3...v2.5.4

Commits


Updates cpufeatures from 0.2.15 to 0.2.16

Commits


Updates itoa from 1.0.11 to 1.0.13

Release notes

Sourced from itoa's releases.

1.0.13

1.0.12

Commits
  • d49fc1d Release 1.0.13
  • 3118ea6 Merge pull request #55 from dtolnay/isize
  • ed2b9b4 Eliminate 64-bit-to-isize conversion
  • 513debf Merge pull request #54 from dtolnay/lut
  • 09a06f6 Change decimal digits lookup table from static to const
  • d39d767 Merge pull request #53 from dtolnay/render
  • daf766b Replace 'decode' terminology with 'render'
  • 535f396 Merge pull request #52 from dtolnay/fouratatime
  • 21e76dc Remove redundant size_of check
  • c4ba250 Merge pull request #51 from dtolnay/maxlen
  • Additional commits viewable in compare view


Updates litemap from 0.7.3 to 0.7.4

Changelog

Sourced from litemap's changelog.

Changelog

icu4x 2.0-beta1

  • Components
    • General
      • Constructors updated to take type-safe "preferences" objects instead of locales.
        • Preference bags are often built from a locale, but they can also be built manually or merged from other sources.
        • Preference bags are taken by value, so most call sites will need to change from &locale.into() to locale.into() or (&locale).into()
      • Compiled data updated to CLDR 45 and ICU 75 (unicode-org#4782)
      • Compiled data updated to CLDR 46 (unicode-org#5479, unicode-org#5598)
      • Fine-tuning error enums; removal of obsolete variants (unicode-org#4959, unicode-org#4638, unicode-org#5019, unicode-org#5041, unicode-org#5146)
      • Refactored FromStr and try_from_str functions (unicode-org#4934, unicode-org#5085)
      • Deleted various deprecated functions
      • Shadow default instead of making new function const_default (unicode-org#5354)
      • Rename marker types (unicode-org#4999)
      • Fix take/into function names and conventions (unicode-org#5723)
    • icu
      • Adding datagen feature to meta crate (#5047)
    • icu_calendar
      • Restructure icu_calendar public API to put all calendars under cal (unicode-org#5701)
      • Consistently name calendar-specific Date/DateTime functions that have a calendar argument (unicode-org#5692)
      • Move all calendar types to cal module (unicode-org#5701)
      • Shorten integer types returned by day_of_month(), week_of_month(), and week_of_year() to u8 (unicode-org#5702)
      • IntoAnyCalendar: new kind() method (unicode-org#4975)
      • Fixed various broken assertions (unicode-org#4986)
      • Fix Japanese calendar year 0 (unicode-org#5006)
      • Add Date, Time, and DateTime from str impls via IXDTF (unicode-org#5260)
      • Fix bug by consistently 1-indexing months and days (unicode-org#5726)
      • Refactor YearInfo to separate cyclic/Temporal/Formatting eras (unicode-org#5509)
      • FormattableMonth -> MonthInfo, and split standard from formatting month codes (unicode-org#5536)
      • Remove unix epoch APIs (unicode-org#5748)
      • Shorten integer type of day_of_month, week_of_month, week_of_year (unicode-org#5702)
    • icu_collator
      • Introduce a borrowed version of the collator (unicode-org#5513)
      • Adapt the collator to Unicode 16 normalization changes (unicode-org#4878)
      • Use script fallback in collator (unicode-org#5743)
    • icu_collections
    • icu_normalizer
      • Introduce borrowed variants of normalizer structs (unicode-org#5413)
      • Make the normalizer work with new Unicode 16 normalization behaviors (unicode-org#4860)
    • icu_datetime
      • All-new semantic skeletons. (unicode-org#1317, unicode-org#4945)
        • This is a re-write of DateTimeFormatter and most of the icu_datetime crate. It adds the ability to format specific subsets of fields, conforming with LDML version 46. All call sites of ICU4X 1.x DateTimeFormatter will need to be updated. It is recommended to start fresh with the new crate documentation.
      • Optimize YearNames storage (unicode-org#5721)
      • Drop support for week-of-year, to likely be re-added in a future version or upon request (unicode-org#5569)
      • Remove VVV time zone format, to possibly be added back later (unicode-org#5659)
      • Fix generic location format for single-tz countries (unicode-org#5657)
      • Support localized offsets with seconds (unicode-org#5674)
      • Audit datetime format function (unicode-org#5789)

... (truncated)

Commits


Updates proc-macro2 from 1.0.89 to 1.0.92

Release notes

Sourced from proc-macro2's releases.

1.0.92

  • Improve compiler/fallback mismatch panic message (#487)

1.0.91

  • Fix panic "compiler/fallback mismatch 949" when using TokenStream::from_str from inside a proc macro to parse a string containing doc comment (#484)

1.0.90

  • Improve error recovery in TokenStream's and Literal's FromStr implementations to work around rust-lang/rust#58736 such that rustc does not poison compilation on codepaths that should be recoverable errors (#477, #478, #479, #480, #481, #482)
Commits
  • acc7d36 Release 1.0.92
  • 0cb443d Merge pull request #487 from dtolnay/mismatchline
  • ae478ed Change mismatch panic message to avoid github linkifying
  • 5046761 Release 1.0.91
  • 27c5494 Merge pull request #486 from dtolnay/compilerlex
  • a9146d6 Ensure that compiler tokenstream parsing only produces a compiler lexerror
  • 1ce5f04 Merge pull request #485 from dtolnay/fallbackident
  • 75d0818 Make parser's fallback Ident symmetric with Group and Literal
  • 56c3e31 Merge pull request #484 from dtolnay/fbliteral
  • d2c0e61 Fix spanned fallback literal construction
  • Additional commits viewable in compare view


Updates rustix from 0.38.40 to 0.38.41

Commits


Updates syn from 2.0.87 to 2.0.89

Release notes

Sourced from syn's releases.

2.0.89

2.0.88

  • Improve error recovery in parse_str (#1783)
Commits
  • 06af36b Release 2.0.89
  • 42b4747 Fix "compiler/fallback mismatch 949" panic
  • 424e484 Release 2.0.88
  • 2375d9a Pull in proc-macro2 FromStr's more robust error recovery
  • f46a6f3 Update test suite to nightly-2024-11-18
  • fc133eb Resolve unnecessary_map_or clippy lint
  • 0ccac34 Resolve question_mark clippy lint
  • 5c1c057 Disable toml "display" feature
  • 5bbe46a Prevent upload-artifact step from causing CI failure
  • 2b45e93 Raise minimum version for syn-codegen crate to Rust 1.65
  • See full diff in compare view


Updates unicode-ident from 1.0.13 to 1.0.14

Release notes

Sourced from unicode-ident's releases.

1.0.14

Commits
  • 404f1e8 Release 1.0.14
  • a1f8406 Merge pull request #28 from Jake-Shadle/master
  • 36cccb8 Update LICENSE-UNICODE to Unicode-3.0
  • 10483de Update LICENSE-UNICODE text
  • 5dac50c Resolve unnecessary_map_or clippy lint
  • 5f17dcb Prevent upload-artifact step from causing CI failure
  • 5cb61e3 Re-enable unicode-xid comparison test
  • See full diff in compare view


Updates yoke from 0.7.4 to 0.7.5

Changelog

Sourced from yoke's changelog.

Changelog

icu4x 2.0-beta1

  • Components
    • General
      • Constructors updated to take type-safe "preferences" objects instead of locales.
        • Preference bags are often built from a locale, but they can also be built manually or merged from other sources.
        • Preference bags are taken by value, so most call sites will need to change from &locale.into() to locale.into() or (&locale).into()
      • Compiled data updated to CLDR 45 and ICU 75 (unicode-org#4782)
      • Compiled data updated to CLDR 46 (unicode-org#5479, unicode-org#5598)
      • Fine-tuning error enums; removal of obsolete variants (unicode-org#4959, unicode-org#4638, unicode-org#5019, unicode-org#5041, unicode-org#5146)
      • Refactored FromStr and try_from_str functions (unicode-org#4934, unicode-org#5085)
      • Deleted various deprecated functions
      • Shadow default instead of making new function const_default (unicode-org#5354)
      • Rename marker types (unicode-org#4999)
      • Fix take/into function names and conventions (unicode-org#5723)
    • icu
      • Adding datagen feature to meta crate (#5047)
    • icu_calendar
      • Restructure icu_calendar public API to put all calendars under cal (unicode-org#5701)
      • Consistently name calendar-specific Date/DateTime functions that have a calendar argument (unicode-org#5692)
      • Move all calendar types to cal module (unicode-org#5701)
      • Shorten integer types returned by day_of_month(), week_of_month(), and week_of_year() to u8 (unicode-org#5702)
      • IntoAnyCalendar: new kind() method (unicode-org#4975)
      • Fixed various broken assertions (unicode-org#4986)
      • Fix Japanese calendar year 0 (unicode-org#5006)
      • Add Date, Time, and DateTime from str impls via IXDTF (unicode-org#5260)
      • Fix bug by consistently 1-indexing months and days (unicode-org#5726)
      • Refactor YearInfo to separate cyclic/Temporal/Formatting eras (unicode-org#5509)
      • FormattableMonth -> MonthInfo, and split standard from formatting month codes (unicode-org#5536)
      • Remove unix epoch APIs (unicode-org#5748)
      • Shorten integer type of day_of_month, week_of_month, week_of_year (unicode-org#5702)
    • icu_collator
      • Introduce a borrowed version of the collator (unicode-org#5513)
      • Adapt the collator to Unicode 16 normalization changes (unicode-org#4878)
      • Use script fallback in collator (unicode-org#5743)
    • icu_collections
    • icu_normalizer
      • Introduce borrowed variants of normalizer structs (unicode-org#5413)
      • Make the normalizer work with new Unicode 16 normalization behaviors (unicode-org#4860)
    • icu_datetime
      • All-new semantic skeletons. (unicode-org#1317, unicode-org#4945)
        • This is a re-write of DateTimeFormatter and most of the icu_datetime crate. It adds the ability to format specific subsets of fields, conforming with LDML version 46. All call sites of ICU4X 1.x DateTimeFormatter will need to be updated. It is recommended to start fresh with the new crate documentation.
      • Optimize YearNames storage (unicode-org#5721)
      • Drop support for week-of-year, to likely be re-added in a future version or upon request (unicode-org#5569)
      • Remove VVV time zone format, to possibly be added back later (unicode-org#5659)
      • Fix generic location format for single-tz countries (unicode-org#5657)
      • Support localized offsets with seconds (unicode-org#5674)
      • Audit datetime format function (unicode-org#5789)

... (truncated)

Commits


Updates yoke-derive from 0.7.4 to 0.7.5

Changelog

Sourced from yoke-derive's changelog.

Changelog

icu4x 2.0-beta1

  • Components
    • General
      • Constructors updated to take type-safe "preferences" objects instead of locales.
        • Preference bags are often built from a locale, but they can also be built manually or merged from other sources.
        • Preference bags are taken by value, so most call sites will need to change from &locale.into() to locale.into() or (&locale).into()
      • Compiled data updated to CLDR 45 and ICU 75 (unicode-org#4782)
      • Compiled data updated to CLDR 46 (unicode-org#5479, unicode-org#5598)
      • Fine-tuning error enums; removal of obsolete variants (unicode-org#4959, unicode-org#4638, unicode-org#5019, unicode-org#5041, unicode-org#5146)
      • Refactored FromStr and try_from_str functions (unicode-org#4934, unicode-org#5085)
      • Deleted various deprecated functions
      • Shadow default instead of making new function const_default (unicode-org#5354)
      • Rename marker types (unicode-org#4999)
      • Fix take/into function names and conventions (unicode-org#5723)
    • icu
      • Adding datagen feature to meta crate (#5047)
    • icu_calendar
      • Restructure icu_calendar public API to put all calendars under cal (unicode-org#5701)
      • Consistently name calendar-specific Date/DateTime functions that have a calendar argument (unicode-org#5692)
      • Move all calendar types to cal module (unicode-org#5701)
      • Shorten integer types returned by day_of_month(), week_of_month(), and week_of_year() to u8 (unicode-org#5702)
      • IntoAnyCalendar: new kind() method (unicode-org#4975)
      • Fixed various broken assertions (unicode-org#4986)
      • Fix Japanese calendar year 0 (unicode-org#5006)
      • Add Date, Time, and DateTime from str impls via IXDTF (unicode-org#5260)
      • Fix bug by consistently 1-indexing months and days (unicode-org#5726)
      • Refactor YearInfo to separate cyclic/Temporal/Formatting eras (unicode-org#5509)
      • FormattableMonth -> MonthInfo, and split standard from formatting month codes (unicode-org#5536)
      • Remove unix epoch APIs (unicode-org#5748)
      • Shorten integer type of day_of_month, week_of_month, week_of_year (unicode-org#5702)
    • icu_collator
      • Introduce a borrowed version of the collator (unicode-org#5513)
      • Adapt the collator to Unicode 16 normalization changes (unicode-org#4878)
      • Use script fallback in collator (unicode-org#5743)
    • icu_collections
    • icu_normalizer
      • Introduce borrowed variants of normalizer structs (unicode-org#5413)
      • Make the normalizer work with new Unicode 16 normalization behaviors (unicode-org#4860)
    • icu_datetime
      • All-new semantic skeletons. (unicode-org#1317, unicode-org#4945)
        • This is a re-write of DateTimeFormatter and most of the icu_datetime crate. It adds the ability to format specific subsets of fields, conforming with LDML version 46. All call sites of ICU4X 1.x DateTimeFormatter will need to be updated. It is recommended to start fresh with the new crate documentation.
      • Optimize YearNames storage (unicode-org#5721)
      • Drop support for week-of-year, to likely be re-added in a future version or upon request (unicode-org#5569)
      • Remove VVV time zone format, to possibly be added back later (unicode-org#5659)
      • Fix generic location format for single-tz countries (unicode-org#5657)
      • Support localized offsets with seconds (unicode-org#5674)
      • Audit datetime format function (unicode-org#5789)

... (truncated)

Commits


Updates zerofrom from 0.1.4 to 0.1.5

Changelog

Sourced from zerofrom's changelog.

Changelog

icu4x 2.0-beta1

  • Components
    • General
      • Constructors updated to take type-safe "preferences" objects instead of locales.
        • Preference bags are often built from a locale, but they can also be built manually or merged from other sources.
        • Preference bags are taken by value, so most call sites will need to change from &locale.into() to locale.into() or (&locale).into()
      • Compiled data updated to CLDR 45 and ICU 75 (unicode-org#4782)
      • Compiled data updated to CLDR 46 (unicode-org#5479, unicode-org#5598)
      • Fine-tuning error enums; removal of obsolete variants (unicode-org#4959, unicode-org#4638, unicode-org#5019, unicode-org#5041, unicode-org#5146)
      • Refactored FromStr and try_from_str functions (unicode-org#4934, unicode-org#5085)
      • Deleted various deprecated functions
      • Shadow default instead of making new function const_default (unicode-org#5354)
      • Rename marker types (unicode-org#4999)
      • Fix take/into function names and conventions (unicode-org#5723)
    • icu
      • Adding datagen feature to meta crate (#5047)
    • icu_calendar
      • Restructure icu_calendar public API to put all calendars under cal (unicode-org#5701)
      • Consistently name calendar-specific Date/DateTime functions that have a calendar argument (unicode-org#5692)
      • Move all calendar types to cal module (unicode-org#5701)
      • Shorten integer types returned by day_of_month(), week_of_month(), and week_of_year() to u8 (unicode-org#5702)
      • IntoAnyCalendar: new kind() method (unicode-org#4975)
      • Fixed various broken assertions (unicode-org#4986)
      • Fix Japanese calendar year 0 (unicode-org#5006)
      • Add Date, Time, and DateTime from str impls via IXDTF (unicode-org#5260)
      • Fix bug by consistently 1-indexing months and days (unicode-org#5726)
      • Refactor YearInfo to separate cyclic/Temporal/Formatting eras (unicode-org#5509)
      • FormattableMonth -> MonthInfo, and split standard from formatting month codes (unicode-org#5536)
      • Remove unix epoch APIs (unicode-org#5748)
      • Shorten integer type of day_of_month, week_of_month, week_of_year (unicode-org#5702)
    • icu_collator
      • Introduce a borrowed version of the collator (unicode-org#5513)
      • Adapt the collator to Unicode 16 normalization changes (unicode-org#4878)
      • Use script fallback in collator (unicode-org#5743)
    • icu_collections
    • icu_normalizer
      • Introduce borrowed variants of normalizer structs (unicode-org#5413)
      • Make the normalizer work with new Unicode 16 normalization behaviors (unicode-org#4860)
    • icu_datetime
      • All-new semantic skeletons. (unicode-org#1317, unicode-org#4945)
        • This is a re-write of DateTimeFormatter and most of the icu_datetime crate. It adds the ability to format specific subsets of fields, conforming with LDML version 46. All call sites of ICU4X 1.x DateTimeFormatter will need to be updated. It is recommended to start fresh with the new crate documentation.
      • Optimize YearNames storage (unicode-org#5721)
      • Drop support for week-of-year, to likely be re-added in a future version or upon request (unicode-org#5569)
      • Remove VVV time zone format, to possibly be added back later (unicode-org#5659)
      • Fix generic location format for single-tz countries (unicode-org#5657)
      • Support localized offsets with seconds (unicode-org#5674)
      • Audit datetime format function (unicode-org#5789)

... (truncated)

Commits


Updates zerofrom-derive from 0.1.4 to 0.1.5

Changelog

Sourced from zerofrom-derive's changelog.

Changelog

icu4x 2.0-beta1

  • Components
    • General
      • Constructors updated to take type-safe "preferences" objects instead of locales.
        • Preference bags are often built from a locale, but they can also be built manually or merged from other sources.
        • Preference bags are taken by value, so most call sites will need to change from &locale.into() to locale.into() or (&locale).into()
      • Compiled data updated to CLDR 45 and ICU 75 (unicode-org#4782)
      • Compiled data updated to CLDR 46 (unicode-org#5479, unicode-org#5598)
      • Fine-tuning error enums; removal of obsolete variants (unicode-org#4959, unicode-org#4638, unicode-org#5019, unicode-org#5041, unicode-org#5146)
      • Refactored FromStr and try_from_str functions (unicode-org#4934, unicode-org#5085)
      • Deleted various deprecated functions
      • Shadow default instead of making new function const_default (unicode-org#5354)
      • Rename marker types (unicode-org#4999)
      • Fix take/into function names and conventions (unicode-org#5723)
    • icu
      • Adding datagen feature to meta crate (#5047)
    • icu_calendar
      • Restructure icu_calendar public API to put all calendars under cal (unicode-org#5701)
      • Consistently name calendar-specific Date/DateTime functions that have a calendar argument (unicode-org#5692)
      • Move all calendar types to cal module (unicode-org#5701)
      • Shorten integer types returned by day_of_month(), week_of_month(), and week_of_year() to u8 (unicode-org#5702)
      • IntoAnyCalendar: new kind() method (unicode-org#4975)
      • Fixed various broken assertions (unicode-org#4986)
      • Fix Japanese calendar year 0 (unicode-org#5006)
      • Add Date, Time, and DateTime from str impls via IXDTF (unicode-org#5260)
      • Fix bug by consistently 1-indexing months and days (unicode-org#5726)
      • Refactor YearInfo to separate cyclic/Temporal/Formatting eras (unicode-org#5509)
      • FormattableMonth -> MonthInfo, and split standard from formatting month codes (unicode-org#5536)
      • Remove unix epoch APIs (unicode-org#5748)
      • Shorten integer type of day_of_month, week_of_month, week_of_year (unicode-org#5702)
    • icu_collator
      • Introduce a borrowed version of the collator (unicode-org#5513)
      • Adapt the collator to Unicode 16 normalization changes (unicode-org#4878)
      • Use script fallback in collator (unicode-org#5743)
    • icu_collections
    • icu_normalizer
      • Introduce borrowed variants of normalizer structs (unicode-org#5413)
      • Make the normalizer work with new Unicode 16 normalization behaviors (unicode-org#4860)
    • icu_datetime
      • All-new semantic skeletons. (unicode-org#1317, unicode-org#4945)
        • This is a re-write of DateTimeFormatter and most of the icu_datetime crate. It adds the ability to format specific subsets of fields, conforming with LDML version 46. All call sites of ICU4X 1.x DateTimeFormatter will need to be updated. It is recommended to start fresh with the new crate documentation.
      • Optimize YearNames storage (unicode-org#5721)
      • Drop support for week-of-year, to likely be re-added in a future version or upon request (unicode-org#5569)
      • Remove VVV time zone format, to possibly be added back later (unicode-org#5659)
      • Fix generic location format for single-tz countries (unicode-org#5657)
      • Support localized offsets with seconds (unicode-org#5674)
      • Audit datetime format function (unicode-org#5789)

... (truncated)

Commits


Most Recent Ignore Conditions Applied to This Pull Request | Dependency Name | Ignore Conditions | | --- | --- | | url | [>= 2.5.3.a, < 2.5.4] |

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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions