jwodder / labelmaker

Create & enforce sets of labels in GitHub repositories
MIT License
2 stars 0 forks source link

[cargo](deps): Bump the deps group with 12 updates #42

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the deps group with 12 updates:

Package From To
anstream 0.6.11 0.6.12
anyhow 1.0.79 1.0.80
clap 4.5.0 4.5.1
ghrepo 0.5.0 0.6.0
bumpalo 3.14.0 3.15.0
clap_builder 4.5.0 4.5.1
pkg-config 0.3.29 0.3.30
ryu 1.0.16 1.0.17
semver 1.0.21 1.0.22
serde_yaml 0.9.31 0.9.32
toml_edit 0.22.4 0.22.6
winnow 0.5.39 0.6.1

Updates anstream from 0.6.11 to 0.6.12

Commits


Updates anyhow from 1.0.79 to 1.0.80

Release notes

Sourced from anyhow's releases.

1.0.80

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits
  • 5443719 Release 1.0.80
  • dfc7bc0 Work around prelude redundant import warnings
  • 6e4f86b Import from alloc not std, where possible
  • f885a13 Ignore incompatible_msrv clippy false positives in test
  • fefbcbc Ignore incompatible_msrv clippy lint
  • 78f2d81 Update ui test suite to nightly-2024-02-08
  • edd88d3 Update ui test suite to nightly-2024-01-31
  • See full diff in compare view


Updates clap from 4.5.0 to 4.5.1

Release notes

Sourced from clap's releases.

v4.5.1

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Changelog

Sourced from clap's changelog.

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Commits
  • 0c01b55 chore: Release
  • 08e0b5b docs: Update changelog
  • f2c4e6e Merge pull request #5359 from poliorcetics/ab/push-szymvyzpmnqx
  • e782775 fix(complete): Handle newlines in command/arg descriptions
  • fba7c85 test(complete): Show newline issue
  • 8a7a13a chore: Release
  • 7b3a3e1 docs: Update changelog
  • 7b624ca Merge pull request #5356 from epage/escape
  • 446328a fix(error): Include -- in more cases
  • 7de6df8 test(error): Show existing last behavior
  • Additional commits viewable in compare view


Updates ghrepo from 0.5.0 to 0.6.0

Release notes

Sourced from ghrepo's releases.

v0.6.0 — Treating GHRepo instances as strings

  • Remove library installation instructions from README
  • List all features in the library documentation
  • Increased MSRV to 1.70
  • GHRepo now implements the following traits:
    • AsRef<str>
    • Deref<Target=str>
    • From<GHRepo> for String
    • Ord
    • PartialEq<&'_ str>
    • PartialEq<str>
    • PartialOrd<&'_ str>
    • PartialOrd<str>
    • TryFrom<String>
  • Added GHRepo::as_str() method
  • Breaking: The GHRepo::is_valid_owner() and GHRepo::is_valid_name() methods are now regular functions
  • Added is_valid_repository() function
Changelog

Sourced from ghrepo's changelog.

v0.6.0 (2024-02-16)

  • Remove library installation instructions from README
  • List all features in the library documentation
  • Increased MSRV to 1.70
  • GHRepo now implements the following traits:
    • AsRef<str>
    • Deref<Target=str>
    • From<GHRepo> for String
    • Ord
    • PartialEq<&'_ str>
    • PartialEq<str>
    • PartialOrd<&'_ str>
    • PartialOrd<str>
    • TryFrom<String>
  • Added GHRepo::as_str() method
  • Breaking: The GHRepo::is_valid_owner() and GHRepo::is_valid_name() methods are now regular functions
  • Added is_valid_repository() function
Commits
  • 6e2cde3 v0.6.0 — Treating GHRepo instances as strings
  • 5866004 Merge pull request #187 from jwodder/is-valid-funcs
  • 8740351 is_valid_repository()
  • 3c2d0ca Make is_valid_*() methods into regular functions
  • 8067c47 Merge pull request #185 from jwodder/one-str
  • 1373589 GHRepo::as_str()
  • 5f34ff2 Docs tweak
  • 3a5bd2d Ord impls
  • afcb8bf Add traits for operating on a GHRepo like a string
  • 9c9a9a9 Store a single string in GHRepo
  • Additional commits viewable in compare view


Updates bumpalo from 3.14.0 to 3.15.0

Changelog

Sourced from bumpalo's changelog.

3.15.0

Released 2024-02-15.

Changed

  • The minimum supported Rust version (MSRV) is now 1.73.0.
  • bumpalo::collections::String::push_str and bumpalo::collections::String::from_str_in received significant performance improvements.
  • Allocator trait methods are now marked #[inline], increasing performance for some callers.

Fixed

  • Fixed an edge-case bug in the Allocator::shrink method.

Commits
  • bb660a3 Bump to version 3.15.0
  • 2543c41 Add a quickcheck for growing or shrinking existing allocations (#233)
  • 7b3fd17 Improve performance of String::from_str_in
  • 1d31c76 Merge pull request #229 from overlookmotel/faster-push-str
  • 0cb5a75 Improve performance of String::push_str
  • 285d969 Merge pull request #232 from overlookmotel/fix-shrink
  • 1be6a22 Expand comment about why we round up in the shrink check
  • 25c7d1f Fix Bump::shrink illegal copies
  • f8278d6 Merge pull request #227 from cynecx/opt
  • 6022968 Add doc comment for helper function
  • Additional commits viewable in compare view


Updates clap_builder from 4.5.0 to 4.5.1

Release notes

Sourced from clap_builder's releases.

v4.5.1

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Changelog

Sourced from clap_builder's changelog.

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Commits


Updates pkg-config from 0.3.29 to 0.3.30

Changelog

Sourced from pkg-config's changelog.

[0.3.30] - 2024-02-14

Changed

  • Update documentation for cross-compilation (#161).

  • Update GitHub Action CI (#160).

Commits


Updates ryu from 1.0.16 to 1.0.17

Release notes

Sourced from ryu's releases.

1.0.17

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits


Updates semver from 1.0.21 to 1.0.22

Release notes

Sourced from semver's releases.

1.0.22

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits
  • c8ad1bf Release 1.0.22
  • f76db8d Resolve redundant import warning
  • f32b420 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • See full diff in compare view


Updates serde_yaml from 0.9.31 to 0.9.32

Release notes

Sourced from serde_yaml's releases.

0.9.32

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits


Updates toml_edit from 0.22.4 to 0.22.6

Commits


Updates winnow from 0.5.39 to 0.6.1

Changelog

Sourced from winnow's changelog.

[0.6.1] - 2024-02-14

Fixes

  • Fix regression where dec_int / dec_uint didn't parse 0

[0.6.0] - 2024-02-13

Migration to v0.6

  1. Ensure you've migrated to 0.5
  2. Upgrade to latest 0.5 release
  3. Resolve all deprecations
  4. Upgrade to 0.6
  5. See "Breaking Changes" for help with any remaining issues

Performance

  • Use simd for till_line_ending

Features

  • Added isize support for dec_int
  • Added usize support for dec_uint

Fixes

  • Prevent panic from slicing a &str on a non-UTF8 boundary
  • Removed unused trait bounds
  • (debug) Improved traces for char, u8 literal parsers by using literal instead of one_of
  • (debug) Improved traces by having literal output the literal

Breaking Change

Most common breaking changes:

  • Stream::reset now accepts a checkpoint by reference, rather than by value
  • ParserError::append now takes a start: &Checkpoint parameter for capturing the start of the current parse operation
  • AddContext::add_context now takes a start: &Checkpoint parameter for capturing the start of the current parse operation
  • FindSlice::find_slice now returns a range
  • CompareResult::Ok now carries a usize
  • Checkpoint gained a generic parameter, limiting it to the stream type it came from

All others

  • Deprecated functionality was removed
  • dec_int / dec_uint continue don't stop capturing tokens once the data type is saturated
  • Trait bounds changed for char, u8 literal parsers
  • literal requires the tag to impl Debug
  • Asserts in release build now Cut rather than Backtrack
  • Added "no progress" asserts to repeating combinators to prevent infinite loops
  • Added "min is lower than max" asserts to ranged parsers

... (truncated)

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
jwodder commented 6 months ago

@dependabot Rebase.

codecov[bot] commented 6 months ago

Codecov Report

Attention: 1 lines in your changes are missing coverage. Please review.

Comparison is base (a311d57) 82.78% compared to head (dd70921) 82.78%.

Files Patch % Lines
src/main.rs 0.00% 1 Missing :warning:
Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #42 +/- ## ======================================= Coverage 82.78% 82.78% ======================================= Files 7 7 Lines 3271 3271 ======================================= Hits 2708 2708 Misses 563 563 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.