cedar-policy / cedar

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

Bump the rust-dependencies group across 1 directory with 17 updates #1322

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 1 week ago

Bumps the rust-dependencies group with 13 updates in the / directory:

Package From To
serde 1.0.214 1.0.215
arbitrary 1.3.2 1.4.1
clap 4.5.20 4.5.21
tempfile 3.13.0 3.14.0
anstream 0.6.17 0.6.18
borsh 1.5.1 1.5.3
cc 1.1.34 1.2.0
clap_lex 0.7.2 0.7.3
cpufeatures 0.2.14 0.2.15
fastrand 2.1.1 2.2.0
libc 0.2.161 0.2.162
psm 0.1.23 0.1.24
regex-automata 0.4.8 0.4.9

Updates serde from 1.0.214 to 1.0.215

Release notes

Sourced from serde's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view


Updates arbitrary from 1.3.2 to 1.4.1

Changelog

Sourced from arbitrary's changelog.

Unreleased

Released YYYY-MM-DD.

Added

  • TODO (or remove section if none)

Changed

  • TODO (or remove section if none)

Deprecated

  • TODO (or remove section if none)

Removed

  • TODO (or remove section if none)

Fixed

  • TODO (or remove section if none)

Security

  • TODO (or remove section if none)

1.4.0

Released 2024-10-30.

Added

  • Added an Arbitrary implementation for PhantomPinned.
  • Added the Unstructured::choose_iter helper method.
  • Added #[arbitrary(skip)] for enum variants in the derive macro.
  • Added the Arbitrary::try_size_hint trait method.

Changed

  • Implement Arbitrary for PhantomData<A> even when A does not implement Arbitrary and when A is ?Sized.
  • Make usize's underlying encoding independent of machine word size so that corpora are more portable.

Fixed

... (truncated)

Commits
  • c22d7c8 Arbitrary-derive 1.4.1
  • 690db06 Merge pull request #204 from djc/msrv
  • 6cbaf48 Merge pull request #205 from Manishearth/fq-result
  • de2becf Use fully qualified path for Result when generated by macro
  • 4f5967b Bump version for release
  • a5dfc7e Check stated MSRV in CI
  • da62b03 Add lifetime bound for trait impl as required on older toolchains
  • f643527 Use std::error::Error for compatibility with older toolchains
  • 5b86c44 Bump to 1.4.0
  • 1cc0e46 Merge pull request #185 from sosthene-nitrokey/wide-recursive
  • Additional commits viewable in compare view


Updates clap from 4.5.20 to 4.5.21

Release notes

Sourced from clap's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 03d7226 chore: Release
  • 3df70fb docs: Update changelog
  • 3266c36 Merge pull request #5691 from epage/custom
  • 951762d feat(complete): Allow any OsString-compatible type to be a CompletionCandidate
  • bb6493e feat(complete): Offer - as a path option
  • 27b348d refactor(complete): Simplify ArgValueCandidates code
  • 49b8108 feat(complete): Add PathCompleter
  • 82a360a feat(complete): Add ArgValueCompleter
  • 47aedc6 fix(complete): Ensure paths are sorted
  • 431e2bc test(complete): Ensure ArgValueCandidates get filtered
  • Additional commits viewable in compare view


Updates tempfile from 3.13.0 to 3.14.0

Changelog

Sourced from tempfile's changelog.

3.14.0

  • Make the wasip2 target work (requires tempfile's "nightly" feature to be enabled). #305.
  • Allow older windows-sys versions #304.
Commits


Updates anstream from 0.6.17 to 0.6.18

Commits
  • fabe0c3 chore: Release
  • 762ca76 docs: Update changelog
  • d364ac4 Merge pull request #229 from epage/cfg
  • ad3f458 fix(stream): Respect 'test' feature
  • 0b8d105 fix(stream): Refer to correct stream on panic
  • 69cf6c9 refactor(stream): Pull out test macro body
  • c78b3c1 refactor(stream): Be extra clear that macros mod is not for use
  • ab37812 chore(deps): Update compatible (dev) (#226)
  • 7c48196 Merge pull request #227 from rust-cli/renovate/stable-1.x
  • a28405f style: Make clippy happy
  • Additional commits viewable in compare view


Updates borsh from 1.5.1 to 1.5.3

Release notes

Sourced from borsh's releases.

borsh-derive-v1.5.3

No release notes provided.

borsh-v1.5.3

Fixed

  • specify a minimum version for syn as 2.0.81 (#320)

borsh-derive-v1.5.2

No release notes provided.

borsh-v1.5.2

Added

  • ser/de for IpAddr type; schema for Ipv4Addr/Ipv6Addr/IpAddr types (#309)

Other

  • serde_json::Value bridging example/doc (#317)
  • remove dependency on syn_derive (#318)
  • cover one more syn::generics::TypeParamBound as per syntax change (#316)
Changelog

Sourced from borsh's changelog.

1.5.3 - 2024-11-13

Fixed

  • specify a minimum version for syn as 2.0.81 (#320)

1.5.2 - 2024-11-07

Added

  • ser/de for IpAddr type; schema for Ipv4Addr/Ipv6Addr/IpAddr types (#309)

Other

  • serde_json::Value bridging example/doc (#317)
  • remove dependency on syn_derive (#318)
  • cover one more syn::generics::TypeParamBound as per syntax change (#316)
Commits
  • 0dc09cd chore: release v1.5.3 (#322)
  • c966ddc fix: specify a minimum version for syn as 2.0.81 (#320)
  • d521f76 chore: release v1.5.2 (#313)
  • cef1258 chore: remove dependency on syn_derive (#318)
  • 21c024f doc: serde_json::Value bridging example/doc (#317)
  • fa9a0a1 chore: cover one more syn::generics::TypeParamBound as per syntax change (#...
  • b416d11 feat: ser/de for IpAddr type; schema for Ipv4Addr/Ipv6Addr/IpAddr typ...
  • See full diff in compare view


Updates cc from 1.1.34 to 1.2.0

Release notes

Sourced from cc's releases.

cc-v1.2.0

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)

cc-v1.1.37

Other

  • Use relative directory for obj files hash (#1270)
  • Regenerate target info (#1280)

cc-v1.1.36

Other

  • Fix CUDA build with clang++. (#1273)

cc-v1.1.35

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)
Changelog

Sourced from cc's changelog.

1.2.0 - 2024-11-11

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)

1.1.37 - 2024-11-08

Other

  • Use relative directory for obj files hash (#1270)
  • Regenerate target info (#1280)

1.1.36 - 2024-11-05

Other

  • Fix CUDA build with clang++. (#1273)

1.1.35 - 2024-11-04

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)
Commits


Updates clap_builder from 4.5.20 to 4.5.21

Release notes

Sourced from clap_builder's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap_builder's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view


Updates clap_lex from 0.7.2 to 0.7.3

Changelog

Sourced from clap_lex's changelog.

v0.7.3 (2015-05-03)

Bug Fixes

  • RequiredValues fixes a bug where missing values are parsed as missing arguments (93c4a723)

Improvements

  • ErrorMessages improves error messages and corrections (a29c3983)
  • ArgGroups improves requirement and confliction support for groups (c236dc5f)
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view


Updates cpufeatures from 0.2.14 to 0.2.15

Commits


Updates derive_arbitrary from 1.3.2 to 1.4.1

Changelog

Sourced from derive_arbitrary's changelog.

Unreleased

Released YYYY-MM-DD.

Added

  • TODO (or remove section if none)

Changed

  • TODO (or remove section if none)

Deprecated

  • TODO (or remove section if none)

Removed

  • TODO (or remove section if none)

Fixed

  • TODO (or remove section if none)

Security

  • TODO (or remove section if none)

1.4.0

Released 2024-10-30.

Added

  • Added an Arbitrary implementation for PhantomPinned.
  • Added the Unstructured::choose_iter helper method.
  • Added #[arbitrary(skip)] for enum variants in the derive macro.
  • Added the Arbitrary::try_size_hint trait method.

Changed

  • Implement Arbitrary for PhantomData<A> even when A does not implement Arbitrary and when A is ?Sized.
  • Make usize's underlying encoding independent of machine word size so that corpora are more portable.

Fixed

... (truncated)

Commits
  • c22d7c8 Arbitrary-derive 1.4.1
  • 690db06 Merge pull request #204 from djc/msrv
  • 6cbaf48 Merge pull request #205 from Manishearth/fq-result
  • de2becf Use fully qualified path for Result when generated by macro
  • 4f5967b Bump version for release
  • a5dfc7e Check stated MSRV in CI
  • da62b03 Add lifetime bound for trait impl as required on older toolchains
  • f643527 Use std::error::Error for compatibility with older toolchains
  • 5b86c44 Bump to 1.4.0
  • 1cc0e46 Merge pull request #185 from sosthene-nitrokey/wide-recursive
  • Additional commits viewable in compare view


Updates fastrand from 2.1.1 to 2.2.0

Release notes

Sourced from fastrand's releases.

v2.2.0

  • Expose missing fill method for the global RNG. (#90)
Changelog

Sourced from fastrand's changelog.

Version 2.2.0

  • Expose missing fill method for the global RNG. (#90)
Commits


Updates libc from 0.2.161 to 0.2.162

Release notes

Sourced from libc's releases.

0.2.162

Added

Fixed

Other

Changelog

Sourced from libc's changelog.

0.2.162 - 2024-11-07

Added

Fixed

Other

Commits
  • b8c255c chore: release v0.2.162
  • acb0c19 Merge pull request #4020 from tgross35/backport-collard-greens
  • 33a772c feat: add ioctl flags in linux/if_tun.h
  • a3ca238 freebsd adding CLOSE_RANGE_CLOEXEC flag
  • 8c88d9a armv7-unknown-freebsd: fix test errors regarding __gregset_t
  • c0c9391 Fix the build on armv7-unknown-freebsd
  • d435e9b Merge pull request #4006 from tgross35/backport-spinach
  • 7ee37b9 Merge pull request #4017 from tgross35/backport-watercress
  • 073c7b4 Fix definition of FIODGNAME on 32-bit FreeBSD
  • 255b039 Fix size of struct kinfo_file on 32-bit FreeBSD
  • Additional commits viewable in compare view


Updates psm from 0.1.23 to 0.1.24

Commits


Updates regex-automata from 0.4.8 to 0.4.9

Commits


Updates rustix from 0.38.38 to 0.38.40

Commits
  • 309c288 chore: Release rustix version 0.38.40
  • feb5227 Clarify getppid documentation: explain how None can occur (#1209)
  • 81021ad Disable AF_NCA, VSTATUS, VERASE2, and fcntl_lock on Solaris. (#1211)
  • c9d06b2 Migrate from wasm32-wasi (no longer exists on nightly) to wasm32-wasip1 (#1210)
  • 8c50519 Disable epoll support on Solaris. (#1208)
  • 827830f chore: Release rustix version 0.38.39
  • 4919082 Update CI to macos-13. (#1207)
  • 4054d28 Enable a few features on more platforms. (#1203)
  • 2b4becf fix: enable wasip2 feature for wasm32-wasip2 target (#1205)
  • 9fd6e48 Don't store build check rmeta (#1200)
  • See full diff in compare view


Updates serde_derive from 1.0.214 to 1.0.215

Release notes

Sourced from serde_derive's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • 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 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
john-h-kastner-aws commented 1 week ago

@dependabot show url ignore conditions

dependabot[bot] commented 1 week ago
Ignore Conditions
|Dependency| Ignore Condition| |-|-| | url | [>= 2.5.3.a, < 2.5.4] |