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 10 updates #44

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the deps group with 10 updates:

Package From To
anstream 0.6.12 0.6.13
log 0.4.20 0.4.21
indexmap 2.2.3 2.2.5
mio 0.8.10 0.8.11
pest 2.7.7 2.7.8
pest_derive 2.7.7 2.7.8
pest_generator 2.7.7 2.7.8
pest_meta 2.7.7 2.7.8
tempfile 3.10.0 3.10.1
winnow 0.6.2 0.6.5

Updates anstream from 0.6.12 to 0.6.13

Commits


Updates log from 0.4.20 to 0.4.21

Changelog

Sourced from log's changelog.

[0.4.21] - 2024-02-27

What's Changed

New Contributors

Commits
  • 3ccdc28 Merge pull request #617 from rust-lang/cargo/0.4.21
  • 6153cb2 prepare for 0.4.21 release
  • f0f7494 Merge pull request #613 from rust-lang/feat/kv-cleanup
  • 2b220bf clean up structured logging example
  • 646e9ab use original Visitor name for VisitValue
  • cf85c38 add needed subfeatures to kv_unstable
  • 73e9539 fix up capturing of :err
  • 31bb4b0 move error macros together
  • ad91711 support field shorthand in macros
  • 90a347b restore removed APIs as deprecated
  • Additional commits viewable in compare view


Updates indexmap from 2.2.3 to 2.2.5

Changelog

Sourced from indexmap's changelog.

2.2.5

  • Added optional borsh serialization support.

2.2.4

  • Added an insert_sorted method on IndexMap, IndexSet, and VacantEntry.
  • Avoid hashing for lookups in single-entry maps.
  • Limit preallocated memory in serde deserializers.
Commits
  • 184fe4b Merge pull request #320 from cuviper/release-2.2.5
  • 5d7bd5e Release 2.2.5
  • c934ace Merge pull request #313 from heliaxdev/heliax/borsh-support
  • b81a4d2 Use S for the BuildHasher parameter
  • 32793f1 Don't require BuildHasher in BorshSerialize
  • b8b1f52 ci: reduce features on MSRV
  • 6ad3e42 Include borsh in CI workflow
  • c610e14 Add borsh serialization roundtrip tests
  • 0804a16 Implement borsh serialization routines
  • ae38b91 Add borsh dep to Cargo manifest
  • Additional commits viewable in compare view


Updates mio from 0.8.10 to 0.8.11

Changelog

Sourced from mio's changelog.

0.8.11

Commits


Updates pest from 2.7.7 to 2.7.8

Commits
  • 28c01cb fix: adjust tag association in optional and repeat expressions (#985)
  • 57daac4 feat: add sql grammar with pratt parser and tests (#983)
  • a0a92fb ci: bump toolchain for check (#978)
  • da27a16 fix: DebuggerContest::load_XXX accepts impl AsRef<Path> instead of &PathBuf (...
  • 99aad5c bump toolchain to be able to install cargo-msrv (#973)
  • See full diff in compare view


Updates pest_derive from 2.7.7 to 2.7.8

Release notes

Sourced from pest_derive's releases.

v2.7.8

What's Changed

New Contributors

Full Changelog: https://github.com/pest-parser/pest/compare/v2.7.7...v2.7.8

Warning: Semantic Versioning

Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated Rule enum.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }
Commits
  • 28c01cb fix: adjust tag association in optional and repeat expressions (#985)
  • 57daac4 feat: add sql grammar with pratt parser and tests (#983)
  • a0a92fb ci: bump toolchain for check (#978)
  • da27a16 fix: DebuggerContest::load_XXX accepts impl AsRef<Path> instead of &PathBuf (...
  • 99aad5c bump toolchain to be able to install cargo-msrv (#973)
  • See full diff in compare view


Updates pest_generator from 2.7.7 to 2.7.8

Release notes

Sourced from pest_generator's releases.

v2.7.8

What's Changed

New Contributors

Full Changelog: https://github.com/pest-parser/pest/compare/v2.7.7...v2.7.8

Warning: Semantic Versioning

Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated Rule enum.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }
Commits
  • 28c01cb fix: adjust tag association in optional and repeat expressions (#985)
  • 57daac4 feat: add sql grammar with pratt parser and tests (#983)
  • a0a92fb ci: bump toolchain for check (#978)
  • da27a16 fix: DebuggerContest::load_XXX accepts impl AsRef<Path> instead of &PathBuf (...
  • 99aad5c bump toolchain to be able to install cargo-msrv (#973)
  • See full diff in compare view


Updates pest_meta from 2.7.7 to 2.7.8

Release notes

Sourced from pest_meta's releases.

v2.7.8

What's Changed

New Contributors

Full Changelog: https://github.com/pest-parser/pest/compare/v2.7.7...v2.7.8

Warning: Semantic Versioning

Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated Rule enum.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }
Commits
  • 28c01cb fix: adjust tag association in optional and repeat expressions (#985)
  • 57daac4 feat: add sql grammar with pratt parser and tests (#983)
  • a0a92fb ci: bump toolchain for check (#978)
  • da27a16 fix: DebuggerContest::load_XXX accepts impl AsRef<Path> instead of &PathBuf (...
  • 99aad5c bump toolchain to be able to install cargo-msrv (#973)
  • See full diff in compare view


Updates tempfile from 3.10.0 to 3.10.1

Changelog

Sourced from tempfile's changelog.

3.10.1

  • Handle potential integer overflows in 32-bit systems when seeking/truncating "spooled" temporary files past 4GiB (2³²).
  • Handle a theoretical 32-bit overflow when generating a temporary file name larger than 4GiB. Now it'll panic (on allocation failure) rather than silently succeeding due to wraparound.

Thanks to @​stoeckmann for finding and fixing both of these issues.

Commits


Updates winnow from 0.6.2 to 0.6.5

Changelog

Sourced from winnow's changelog.

[0.6.5] - 2024-02-29

Compatibility

  • Deprecated escaped in favor of take_escaped (rename)

Documentation

  • Fix some bugs in concrete signatures
  • Explain what "Partial version" means
  • When discussing the signature, highlight the most relevant trait for input

[0.6.4] - 2024-02-29

Documentation

  • Provide examples of concrete signatures

[0.6.3] - 2024-02-28

Fixes

  • Make take_until("") consistent between simd or not, with or without empty buffer

Documentation

  • Clarify generic and value parameters
  • Cross reference *until and *till parsers
  • (tutorial) Step through parts more slowly
Commits
  • 85d4933 chore: Release
  • 35ed9a6 docs: Update changelog
  • 305cc56 Merge pull request #491 from epage/docs
  • 5bf8c2f docs(ref): Modernize combinator tables
  • c08ee44 fix(ascii): Rename escaped to take_escaped
  • b44005d docs: Clarify what we mean by 'Partial version'
  • 6445f72 chore: Remove private docs
  • 565175c docs(binary): Reference correct stream type
  • bec3085 docs: Cross-reference example stream for discovery of other types
  • f19b064 chore: Release
  • 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 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 (65bc626) to head (7e9ec42).

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