heroku / buildpacks-ruby

Heroku's Cloud Native Buildpack for Ruby applications.
BSD 3-Clause "New" or "Revised" License
1 stars 1 forks source link

Bump the rust-dependencies group across 1 directory with 8 updates #324

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 3 weeks ago

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

Package From To
clap 4.5.16 4.5.18
libherokubuildpack 0.21.0 0.23.0
serde 1.0.209 1.0.210
thiserror 1.0.63 1.0.64
libcnb-test 0.21.0 0.23.0
ascii_table 4.0.3 4.0.4
const_format 0.2.32 0.2.33
pretty_assertions 1.4.0 1.4.1

Updates clap from 4.5.16 to 4.5.18

Release notes

Sourced from clap's releases.

v4.5.18

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used
Changelog

Sourced from clap's changelog.

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used
Commits
  • d811585 chore: Release
  • ab948b3 docs: Update changelog
  • 82e599e Merge pull request #5602 from shannmu/delimiter_values
  • 59bf26d feat(clap_complete): Support delimiter values in native completions
  • ccecab3 test(clap_complete): Add test cases for delimiter_values support
  • a3a4764 docs(derive): Specify Parser::update_from semantics
  • df165a2 docs(derive): Flatten isn't just for update
  • 5488bcf docs(derive): Connect more dots for Args/Subcommand
  • 6013ad4 chore: Release
  • f98e3ee docs: Update changelog
  • Additional commits viewable in compare view


Updates libherokubuildpack from 0.21.0 to 0.23.0

Release notes

Sourced from libherokubuildpack's releases.

v0.23.0

Changed

  • libcnb-test:
    • pack build is now run with --trust-extra-buildpacks to force the builder to be trusted after upstream changes in Pack CLI. Pack CLI v0.35.1+ is now required to use libcnb-test. (#855)

v0.22.0

Added

  • libcnb:
    • A new API for working with layers has been added. See the BuildContext::cached_layer and BuildContext::uncached_layer docs for examples of how to use this API. (#814)

Changed

  • libcnb:
    • The Layer trait and related types and functions have been deprecated. Please migrate to the new API. (#814)
    • Errors related to layers have been restructured. While this is technically a breaking change, buildpacks usually don't have to be modified in practice. (#814)

Fixed

  • libcnb-data:
    • The working directory for launch processes specifying a WorkingDirectory::Directory value is now respected. (#831)
Changelog

Sourced from libherokubuildpack's changelog.

[0.23.0] - 2024-08-28

Changed

  • libcnb-test:
    • pack build is now run with --trust-extra-buildpacks to force the builder to be trusted after upstream changes in Pack CLI. Pack CLI v0.35.1+ is now required to use libcnb-test. (#855)

[0.22.0] - 2024-06-18

Added

  • libcnb:
    • A new API for working with layers has been added. See the BuildContext::cached_layer and BuildContext::uncached_layer docs for examples of how to use this API. (#814)

Changed

  • libcnb:
    • The Layer trait and related types and functions have been deprecated. Please migrate to the new API. (#814)
    • Errors related to layers have been restructured. While this is technically a breaking change, buildpacks usually don't have to be modified in practice. (#814)

Fixed

  • libcnb-data:
    • The working directory for launch processes specifying a WorkingDirectory::Directory value is now respected. (#831)
Commits
  • 8d4d3f6 Prepare release v0.23.0 (#857)
  • b49fe5c libcnb-test: Use --trust-extra-buildpacks with pack build (#855)
  • b018a93 Bump softprops/action-gh-release from 2.0.6 to 2.0.8 (#846)
  • b743f2c Update cyclonedx-bom requirement from 0.6.1 to 0.7.0 (#856)
  • 64eeb1c Fix clippy warnings with newer Rust (#853)
  • 3fa2c6c Update README comment about cargo add (#841)
  • 00f3309 Update CI to Ubuntu 24.04 runner images (#839)
  • ed91ba6 Use actions/create-github-app-token instead of heroku/use-app-token (#838)
  • d46718c Bump softprops/action-gh-release from 2.0.5 to 2.0.6 (#836)
  • 87d737c Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#837)
  • Additional commits viewable in compare view


Updates serde from 1.0.209 to 1.0.210

Release notes

Sourced from serde's releases.

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)
Commits
  • 89c4b02 Release 1.0.210
  • eeb8e44 Merge pull request #2818 from dtolnay/coreerror
  • 785c2d9 Stabilize no-std StdError trait
  • d549f04 Reformat parse_ip_impl definition and calls
  • 4c0dd63 Delete attr support from core::net deserialization macros
  • 26fb134 Relocate cfg attrs out of parse_ip_impl and parse_socket_impl
  • 07e614b Merge pull request #2817 from dtolnay/corenet
  • b1f899f Delete doc(cfg) attribute from impls that are supported in no-std
  • b4f860e Merge pull request #2816 from MathiasKoch/chore/core-net
  • d940fe1 Reuse existing Buf wrapper as replacement for std::io::Write
  • Additional commits viewable in compare view


Updates thiserror from 1.0.63 to 1.0.64

Release notes

Sourced from thiserror's releases.

1.0.64

  • Exclude derived impls from coverage instrumentation (#322, thanks @​oxalica)
Commits
  • 84484bc Release 1.0.64
  • 023f036 Merge pull request #322 from oxalica/feat/mark-auto-derived
  • ae1f47e Mark #[automatically_derived] for generated impls
  • ab5b5e3 Upload CI Cargo.lock for reproducing failures
  • 00b3c14 Work around new dead code warning in test
  • See full diff in compare view


Updates libcnb-test from 0.21.0 to 0.23.0

Changelog

Sourced from libcnb-test's changelog.

[0.23.0] - 2024-08-28

Changed

  • libcnb-test:
    • pack build is now run with --trust-extra-buildpacks to force the builder to be trusted after upstream changes in Pack CLI. Pack CLI v0.35.1+ is now required to use libcnb-test. (#855)

[0.22.0] - 2024-06-18

Added

  • libcnb:
    • A new API for working with layers has been added. See the BuildContext::cached_layer and BuildContext::uncached_layer docs for examples of how to use this API. (#814)

Changed

  • libcnb:
    • The Layer trait and related types and functions have been deprecated. Please migrate to the new API. (#814)
    • Errors related to layers have been restructured. While this is technically a breaking change, buildpacks usually don't have to be modified in practice. (#814)

Fixed

  • libcnb-data:
    • The working directory for launch processes specifying a WorkingDirectory::Directory value is now respected. (#831)
Commits
  • 8d4d3f6 Prepare release v0.23.0 (#857)
  • b49fe5c libcnb-test: Use --trust-extra-buildpacks with pack build (#855)
  • b018a93 Bump softprops/action-gh-release from 2.0.6 to 2.0.8 (#846)
  • b743f2c Update cyclonedx-bom requirement from 0.6.1 to 0.7.0 (#856)
  • 64eeb1c Fix clippy warnings with newer Rust (#853)
  • 3fa2c6c Update README comment about cargo add (#841)
  • 00f3309 Update CI to Ubuntu 24.04 runner images (#839)
  • ed91ba6 Use actions/create-github-app-token instead of heroku/use-app-token (#838)
  • d46718c Bump softprops/action-gh-release from 2.0.5 to 2.0.6 (#836)
  • 87d737c Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#837)
  • Additional commits viewable in compare view


Updates ascii_table from 4.0.3 to 4.0.4

Changelog

Sourced from ascii_table's changelog.

v4.0.4 (2024-08-28)

  • Bumped versions on 3rd party crates.
Commits


Updates const_format from 0.2.32 to 0.2.33

Changelog

Sourced from const_format's changelog.

0.2.33

Fixed Rust Analyzer style warning for assertion macros.

Commits


Updates pretty_assertions from 1.4.0 to 1.4.1

Release notes

Sourced from pretty_assertions's releases.

v1.4.1

Fixed

  • Show feature-flagged code in documentation. Thanks to @​sandydoo for the fix! (#130)

Internal

  • Bump yansi version to 1.x. Thanks to @​SergioBenitez for the update, and maintaining this library! (#121)
Changelog

Sourced from pretty_assertions's changelog.

v1.4.1

Fixed

  • Show feature-flagged code in documentation. Thanks to @​sandydoo for the fix! (#130)

Internal

  • Bump yansi version to 1.x. Thanks to @​SergioBenitez for the update, and maintaining this library! (#121)
Commits
  • f5c5b24 chore: prep 1.4.1 release
  • d34d524 chore: display feature-flagged docs on docs.rs
  • fac4273 Merge pull request #131 from sandydoo/fix-yansi-deprecation
  • 1e51cce chore: rename deprecated yansi methods
  • 4a0e5a3 Merge pull request #121 from SergioBenitez/yansi-update
  • 08838fe internal: bump MSRV to 1.63.0 for yansi
  • 777387d ci: bump runner to windows-2022
  • 35c08fe chore: update 'yansi' to 1.0.0-rc
  • See full diff 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
dependabot[bot] commented 2 weeks ago

Looks like these dependencies are updatable in another way, so this is no longer needed.