Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the patch-updates group across 1 directory with 6 updates #184

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 26, 2024

Bumps the patch-updates group with 5 updates in the / directory:

Package From To
anyhow 1.0.91 1.0.93
flate2 1.0.34 1.0.35
clap 4.5.20 4.5.21
cmake 0.1.51 0.1.52
syn 2.0.85 2.0.89

Updates anyhow from 1.0.91 to 1.0.93

Release notes

Sourced from anyhow's releases.

1.0.93

  • Update dev-dependencies to thiserror v2

1.0.92

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#390)
Commits
  • 713bda9 Release 1.0.93
  • f91c247 Merge pull request #391 from dtolnay/thiserror
  • 2a3901c Isolate old rustc version tests from needing anyhow dev-dependencies in lockfile
  • 3ca2cdd Update dev-dependencies to thiserror v2
  • fd03a8e Release 1.0.92
  • a16252b Merge pull request #390 from dtolnay/rawaddr
  • fcf2ef8 Compile &raw test on Rust 1.82+ only
  • 1e7e9fe Parse raw address expression syntax
  • 7d1a8f9 Add test of raw addr expression syntax
  • See full diff in compare view

Updates flate2 from 1.0.34 to 1.0.35

Release notes

Sourced from flate2's releases.

1.0.35 - security update to zlib-rs

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.34...1.0.35

Commits

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 cmake from 0.1.51 to 0.1.52

Release notes

Sourced from cmake's releases.

v0.1.52

Other

  • Expose cc-rs no_default_flags for hassle-free cross-compilation (#225)
  • Add a success job to CI
  • Change --build to use an absolute path
  • Merge pull request #195 from meowtec/feat/improve-fail-hint
  • Improve hint for cmake not installed in Linux (code 127)
Changelog

Sourced from cmake's changelog.

0.1.52 - 2024-11-25

Other

  • Expose cc-rs no_default_flags for hassle-free cross-compilation (#225)
  • Add a success job to CI
  • Change --build to use an absolute path
  • Merge pull request #195 from meowtec/feat/improve-fail-hint
  • Improve hint for cmake not installed in Linux (code 127)
Commits
  • 2eaa3ba chore: release v0.1.52
  • 3f5d7de Expose cc-rs no_default_flags for hassle-free cross-compilation (#225)
  • b689783 Merge pull request #218 from tgross35/ci-success
  • 0c368ee Add a success job to CI
  • a6ed009 Merge pull request #200 from tgross35/patch-1
  • bbb95e1 Change --build to use an absolute path
  • 584e1c1 Merge pull request #195 from meowtec/feat/improve-fail-hint
  • cdf638f Improve hint for cmake not installed in Linux (code 127)
  • See full diff in compare view

Updates syn from 2.0.85 to 2.0.89

Release notes

Sourced from syn's releases.

2.0.89

2.0.88

  • Improve error recovery in parse_str (#1783)

2.0.87

2.0.86

  • Support peeking the end of a parse stream (#1689)
  • Allow parse_quote! to produce Vec<Attribute> (#1775)
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
  • Additional commits viewable in compare view

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

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 26, 2024
@dependabot dependabot bot force-pushed the dependabot/cargo/patch-updates-11c067f79c branch from feeae69 to 5cb47b6 Compare November 27, 2024 21:42
…pdates

Bumps the patch-updates group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.91` | `1.0.93` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.34` | `1.0.35` |
| [clap](https://github.com/clap-rs/clap) | `4.5.20` | `4.5.21` |
| [cmake](https://github.com/rust-lang/cmake-rs) | `0.1.51` | `0.1.52` |
| [syn](https://github.com/dtolnay/syn) | `2.0.85` | `2.0.89` |



Updates `anyhow` from 1.0.91 to 1.0.93
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.91...1.0.93)

Updates `flate2` from 1.0.34 to 1.0.35
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Changelog](https://github.com/rust-lang/flate2-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/flate2-rs@1.0.34...1.0.35)

Updates `clap` from 4.5.20 to 4.5.21
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.20...clap_complete-v4.5.21)

Updates `cmake` from 0.1.51 to 0.1.52
- [Release notes](https://github.com/rust-lang/cmake-rs/releases)
- [Changelog](https://github.com/rust-lang/cmake-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/cmake-rs@v0.1.51...v0.1.52)

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

Updates `proc-macro2` from 1.0.89 to 1.0.92
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.89...1.0.92)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cmake
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/patch-updates-11c067f79c branch from 5cb47b6 to 527828d Compare November 28, 2024 21:08
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 3, 2024

Superseded by #188.

@dependabot dependabot bot closed this Dec 3, 2024
@dependabot dependabot bot deleted the dependabot/cargo/patch-updates-11c067f79c branch December 3, 2024 21:27
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