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 14 updates #46

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the deps group with 14 updates:

Package From To
anyhow 1.0.80 1.0.81
clap 4.5.2 4.5.3
reqwest 0.11.25 0.11.26
thiserror 1.0.57 1.0.58
clap_derive 4.5.0 4.5.3
h2 0.3.24 0.3.25
proc-macro2 1.0.78 1.0.79
serde_yaml 0.9.32 0.9.33
system-configuration 0.6.0 0.5.1
system-configuration-sys 0.6.0 0.5.0
thiserror-impl 1.0.57 1.0.58
toml 0.8.10 0.8.11
toml_edit 0.22.6 0.22.7
unsafe-libyaml 0.2.10 0.2.11

Updates anyhow from 1.0.80 to 1.0.81

Release notes

Sourced from anyhow's releases.

1.0.81

  • Make backtrace support available when using -Dwarnings (#354)
Commits


Updates clap from 4.5.2 to 4.5.3

Release notes

Sourced from clap's releases.

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck
Changelog

Sourced from clap's changelog.

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck
Commits


Updates reqwest from 0.11.25 to 0.11.26

Release notes

Sourced from reqwest's releases.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.
Changelog

Sourced from reqwest's changelog.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.
Commits


Updates thiserror from 1.0.57 to 1.0.58

Release notes

Sourced from thiserror's releases.

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits


Updates clap_derive from 4.5.0 to 4.5.3

Release notes

Sourced from clap_derive's releases.

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

v4.5.2

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

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_derive's changelog.

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

[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
  • 4e07b43 chore: Release
  • 8247c7d docs: Update changelog
  • 677c52c chore: Update heck requirement (#5396)
  • f65d421 chore: Release
  • 886b272 docs: Update changelog
  • 3ba4297 Merge pull request #5386 from amaanq/static-var-name
  • 2aea950 fix: Use SCREAMING_SNAKE_CASE for static variable authors
  • 690f555 Merge pull request #5382 from clap-rs/renovate/pre-commit-action-3.x
  • a2aa644 chore(deps): update compatible (dev) (#5381)
  • c233de5 chore(deps): update pre-commit/action action to v3.0.1
  • Additional commits viewable in compare view


Updates h2 from 0.3.24 to 0.3.25

Release notes

Sourced from h2's releases.

v0.3.25

What's Changed

Full Changelog: https://github.com/hyperium/h2/compare/v0.3.24...v0.3.25

Changelog

Sourced from h2's changelog.

0.3.25 (March 15, 2024)

  • Improve performance decoding many headers.
Commits


Updates proc-macro2 from 1.0.78 to 1.0.79

Release notes

Sourced from proc-macro2's releases.

1.0.79

  • Clean up dead code
Commits
  • 4ba4ab1 Release 1.0.79
  • b176581 Prevent new lint from turning off nightly span support under -Dwarnings
  • b9cd864 Fix dead_code warning on fallback SourceFile
  • e94f432 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • 18c75c6 Ignore dead_code warning in test
  • 5cd21eb Update ui test suite to nightly-2024-02-01
  • See full diff in compare view


Updates serde_yaml from 0.9.32 to 0.9.33

Release notes

Sourced from serde_yaml's releases.

0.9.33

Commits
  • f4c9ed9 Release 0.9.33
  • b4edaee Pull in yaml_parser_fetch_more_tokens fix from libyaml
  • 8a5542c Resolve non_local_definitions warning in test
  • See full diff in compare view


Updates system-configuration from 0.6.0 to 0.5.1

Changelog

Sourced from system-configuration's changelog.

[0.6.0] - 2024-01-31

Changed

  • Bump minimum supported Rust version (MSRV) to 1.64.0.
  • Breaking: Mark SCNetworkReachability::schedule_with_runloop and unschedule_from_runloop as unsafe. They accept a raw pointer that it dereferences. Figuring out a safe API around this is left as an exercise for the future.
  • Breaking: ReachabilityFlags no longer implements Ord or PartialOrd. It also replaces the from_bits_unchecked constructor with other (safe) from_bits_* constructors.

Fixed

  • Fix memory leak in SCNetworkReachability::set_callback.
  • Fix builds on iOS by removing references to deprecated interface type kSCNetworkInterfaceTypeIrDA. Also remove constant for bridge network interfaces (kSCNetworkInterfaceTypeBridge).

[0.5.1] - 2023-05-15

Added

  • Add bindings for SCNetworkSet and SCNetworkService

[0.5.0] - 2022-01-03

Changed

  • Upgrade crates to Rust 2021 edition.
  • Bump minimum supported Rust version (MSRV) to 1.56.0.
  • Upgrade core-foundation to 0.9 and core-foundation-sys to 0.8. This is a breaking change since those crates are publicly re-exported from these crates.

[0.4.1] - 2020-06-04

Fixed

  • Bump the required libc version from 0.2.0 to 0.2.49 to fix the build

[0.4.0] - 2020-06-04

Added

  • Add bindings for SCNetworkInterface.
  • Add bindings for SCNetworkReachability and related types.

Changed

  • Bump minimum supported Rust version to 1.36
  • Update core-foundation dependency to 0.7

Fixed

  • Move SCNetworkReachability and related types from network_configuration into their own module in the system-configuration-sys crate.

[0.3.0] - 2019-10-16

Added

... (truncated)

Commits
  • 727876b Bump MSRV to 1.56.0 due to Edition 2021
  • c654aea Upgrade to Rust edition 2021
  • 0d69efd Merge branch 'use-assert-instead-of-panic'
  • 663839d Fix network reachability tests
  • a7efa56 Clean/fix cargo metadata
  • ac7e693 Merge branch 'bump-dependencies'
  • f8e9bff Bump core-foundation to 0.9
  • 216ce60 Merge branch 'migrate-ci-to-github-actions'
  • 08c72a6 Bump MSRV
  • 490ac06 Remove Travis CI configuration
  • Additional commits viewable in compare view


Updates system-configuration-sys from 0.6.0 to 0.5.0

Changelog

Sourced from system-configuration-sys's changelog.

[0.6.0] - 2024-01-31

Changed

  • Bump minimum supported Rust version (MSRV) to 1.64.0.
  • Breaking: Mark SCNetworkReachability::schedule_with_runloop and unschedule_from_runloop as unsafe. They accept a raw pointer that it dereferences. Figuring out a safe API around this is left as an exercise for the future.
  • Breaking: ReachabilityFlags no longer implements Ord or PartialOrd. It also replaces the from_bits_unchecked constructor with other (safe) from_bits_* constructors.

Fixed

  • Fix memory leak in SCNetworkReachability::set_callback.
  • Fix builds on iOS by removing references to deprecated interface type kSCNetworkInterfaceTypeIrDA. Also remove constant for bridge network interfaces (kSCNetworkInterfaceTypeBridge).

[0.5.1] - 2023-05-15

Added

  • Add bindings for SCNetworkSet and SCNetworkService

[0.5.0] - 2022-01-03

Changed

  • Upgrade crates to Rust 2021 edition.
  • Bump minimum supported Rust version (MSRV) to 1.56.0.
  • Upgrade core-foundation to 0.9 and core-foundation-sys to 0.8. This is a breaking change since those crates are publicly re-exported from these crates.

[0.4.1] - 2020-06-04

Fixed

  • Bump the required libc version from 0.2.0 to 0.2.49 to fix the build

[0.4.0] - 2020-06-04

Added

  • Add bindings for SCNetworkInterface.
  • Add bindings for SCNetworkReachability and related types.

Changed

  • Bump minimum supported Rust version to 1.36
  • Update core-foundation dependency to 0.7

Fixed

  • Move SCNetworkReachability and related types from network_configuration into their own module in the system-configuration-sys crate.

[0.3.0] - 2019-10-16

Added

... (truncated)

Commits
  • 727876b Bump MSRV to 1.56.0 due to Edition 2021
  • c654aea Upgrade to Rust edition 2021
  • 0d69efd Merge branch 'use-assert-instead-of-panic'
  • 663839d Fix network reachability tests
  • a7efa56 Clean/fix cargo metadata
  • ac7e693 Merge branch 'bump-dependencies'
  • f8e9bff Bump core-foundation to 0.9
  • 216ce60 Merge branch 'migrate-ci-to-github-actions'
  • 08c72a6 Bump MSRV
  • 490ac06 Remove Travis CI configuration
  • Additional commits viewable in compare view


Updates thiserror-impl from 1.0.57 to 1.0.58

Release notes

Sourced from thiserror-impl's releases.

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits


Updates toml from 0.8.10 to 0.8.11

Commits
  • eb86543 chore: Release
  • 246b292 docs: Update changelog
  • d41c62c Merge pull request #701 from epage/cleanup
  • 31457b3 refactor(error): Clean up highlight code
  • 01d2f4a Merge pull request #699 from mahkoh/jorth/error-column
  • 523969d Merge pull request #700 from epage/cleanup
  • bae685b fix(edit): Deprecate 'Document'
  • 3abcf90 fix(edit): Clarify Document as DocumentMut
  • fcf1deb refactor(edit): Remove unused raw field on Document
  • 4cd1e24 fix(de): Cut off multi-line error messages
  • Additional commits viewable in compare view


Updates toml_edit from 0.22.6 to 0.22.7

Commits
  • eb86543 chore: Release
  • 246b292 docs: Update changelog
  • d41c62c Merge pull request #701 from epage/cleanup
  • 31457b3 refactor(error): Clean up highlight code
  • 01d2f4a Merge pull request #699 from mahkoh/jorth/error-column
  • 523969d Merge pull request #700 from epage/cleanup
  • bae685b fix(edit): Deprecate 'Document'
  • 3abcf90 fix(edit): Clarify Document as DocumentMut
  • fcf1deb refactor(edit): Remove unused raw field on Document
  • 4cd1e24 fix(de): Cut off multi-line error messages
  • Additional commits viewable in compare view


Updates unsafe-libyaml from 0.2.10 to 0.2.11

Release notes

Sourced from unsafe-libyaml's releases.

0.2.11

  • Fix quadratic parse time for YAML containing deeply nested flow collections (#26)
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
codecov[bot] commented 6 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 82.78%. Comparing base (b42b489) to head (b49d7b0).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #46 +/- ## ======================================= 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.