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 with 8 updates #220

Closed dependabot[bot] closed 12 months ago

dependabot[bot] commented 1 year ago

Bumps the rust-dependencies group with 8 updates:

Package From To
indoc 2.0.3 2.0.4
regex 1.9.4 1.10.0
thiserror 1.0.47 1.0.49
ureq 2.7.1 2.8.0
clap 4.4.1 4.4.6
toml 0.7.6 0.8.2
sha2 0.10.7 0.10.8
walkdir 2.3.3 2.4.0

Updates indoc from 2.0.3 to 2.0.4

Release notes

Sourced from indoc's releases.

2.0.4

Commits
  • 784e9b2 Release 2.0.4
  • efe9378 Merge pull request #61 from PizzasBear/patch-1
  • 8ef025a FIX: preserve_empty_first_line ignored
  • 07c8ac4 Ignore needless_doctest_main clippy lint
  • 4d305be Update actions/checkout@v3 -> v4
  • 7263254 Revert "Temporarily disable -Zrandomize-layout due to rustc ICE"
  • 4a7ca54 Temporarily disable -Zrandomize-layout due to rustc ICE
  • See full diff in compare view


Updates regex from 1.9.4 to 1.10.0

Changelog

Sourced from regex's changelog.

1.10.0 (2023-10-09)

This is a new minor release of regex that adds support for start and end word boundary assertions. That is, \< and \>. The minimum supported Rust version has also been raised to 1.65, which was released about one year ago.

The new word boundary assertions are:

  • \< or \b{start}: a Unicode start-of-word boundary (\W|\A on the left, \w on the right).
  • \> or \b{end}: a Unicode end-of-word boundary (\w on the left, \W|\z on the right)).
  • \b{start-half}: half of a Unicode start-of-word boundary (\W|\A on the left).
  • \b{end-half}: half of a Unicode end-of-word boundary (\W|\z on the right).

The \< and \> are GNU extensions to POSIX regexes. They have been added to the regex crate because they enjoy somewhat broad support in other regex engines as well (for example, vim). The \b{start} and \b{end} assertions are aliases for \< and \>, respectively.

The \b{start-half} and \b{end-half} assertions are not found in any other regex engine (although regex engines with general look-around support can certainly express them). They were added principally to support the implementation of word matching in grep programs, where one generally wants to be a bit more flexible in what is considered a word boundary.

New features:

Performance improvements:

Bug fixes:

  • [BUG #1046](rust-lang/regex#1046): Fix a bug that could result in incorrect match spans when using a Unicode word boundary and searching non-ASCII strings.
  • [BUG(regex-syntax) #1047](rust-lang/regex#1047): Fix panics that can occur in Ast->Hir translation (not reachable from regex crate).

... (truncated)

Commits
  • 2cbd342 1.10.0
  • 26d8e3a deps: bump regex-automata to 0.4.0
  • dc0d79e regex-automata-0.4.0
  • 68b7018 deps: bump regex-syntax to 0.8.0
  • ea8f6c0 regex-syntax-0.8.0
  • aabbfe0 regex-lite-0.1.1
  • 2c44e2a fuzz: add regression test for AST roundtripping
  • 3feff9e automata: improve sparse DFA validation
  • 914198f regex: reject large patterns when fuzzing
  • fc9a11a lite: reduce size limit to avoid timeouts
  • Additional commits viewable in compare view


Updates thiserror from 1.0.47 to 1.0.49

Release notes

Sourced from thiserror's releases.

1.0.49

  • Access libcore types through ::core in generated code (#255, thanks @​mina86)

1.0.48

  • Improve implementation of displaying Path values in a generated Display impl (#251, thanks @​mina86)
Commits
  • 54465b7 Release 1.0.49
  • 79704ad Merge pull request 255 from mina86/a
  • 5bfbdae Test docs.rs documentation build in CI
  • f0f303a Prefer core crate in macro expansions
  • 435c7c8 Update actions/checkout@v3 -> v4
  • 5c5f342 Release 1.0.48
  • 490f0ca Merge pull request #254 from dtolnay/gatlink
  • 1a5dbc7 Add link to GAT PR
  • de58088 Ignore uninlined_format_args pedantic clippy lint in test
  • ae642d1 Format clippy allow attribute with rustfmt
  • Additional commits viewable in compare view


Updates ureq from 2.7.1 to 2.8.0

Changelog

Sourced from ureq's changelog.

2.8.0

Fixed

  • Fix regression in IPv6 handling (#635)
  • Read proxy response to \r\n\r\n (#620)

Added

  • Auto-detect proxy from env vars (turned off by default) (#649)
  • Conversion ureq::Response -> http::Response (#638)
  • cargo-deny CI action to disallow copy-left and duplicate deps (#661)
Commits


Updates clap from 4.4.1 to 4.4.6

Release notes

Sourced from clap's releases.

v4.4.6

[4.4.6] - 2023-09-28

Internal

  • Upgrade anstream

v4.4.5

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users

v4.4.4

[4.4.4] - 2023-09-18

Internal

  • Update terminal_size to 0.3

v4.4.3

[4.4.3] - 2023-09-12

Documentation

  • (derive) Clarify use of attributes within the tutorial
  • Split sections in the builder and derive tutorials into separate modules

v4.4.2

[4.4.2] - 2023-08-31

Performance

  • Improve build times by removing once_cell dependency
Changelog

Sourced from clap's changelog.

[4.4.6] - 2023-09-28

Internal

  • Upgrade anstream

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users

[4.4.4] - 2023-09-18

Internal

  • Update terminal_size to 0.3

[4.4.3] - 2023-09-12

Documentation

  • (derive) Clarify use of attributes within the tutorial
  • Split sections in the builder and derive tutorials into separate modules

[4.4.2] - 2023-08-31

Performance

  • Improve build times by removing once_cell dependency
Commits


Updates toml from 0.7.6 to 0.8.2

Commits
  • fe65b2b chore: Release
  • ed597eb chore: Release
  • 257a0fd docs: Update changelog
  • 4b44f53 Merge pull request #617 from epage/update
  • 7eaf286 fix(parser): Failed on mixed inline tables
  • e1f2037 test: Verify with latest data
  • 2f9253c chore: Update toml-test
  • c9b481c test(toml): Ensure tables are used for validation
  • 43d7f29 Merge pull request #615 from toml-rs/renovate/actions-checkout-4.x
  • ef9b837 chore(deps): update actions/checkout action to v4
  • Additional commits viewable in compare view


Updates sha2 from 0.10.7 to 0.10.8

Commits


Updates walkdir from 2.3.3 to 2.4.0

Commits


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 12 months ago

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