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 #40

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the deps group with 12 updates:

Package From To
anstyle 1.0.4 1.0.5
itertools 0.12.0 0.12.1
reqwest 0.11.23 0.11.24
tokio 1.35.1 1.36.0
indexmap 2.2.1 2.2.2
libc 0.2.152 0.2.153
miniz_oxide 0.7.1 0.7.2
pest 2.7.6 2.7.7
pest_derive 2.7.6 2.7.7
rustix 0.38.30 0.38.31
toml 0.8.8 0.8.9
winnow 0.5.35 0.5.37

Updates anstyle from 1.0.4 to 1.0.5

Commits
  • d3142af chore: Release
  • f511839 docs(style): Update changelog
  • ea42606 Merge pull request #165 from joshtriplett/anstyle-render-helper
  • da0569e docs(anstyle): Document Style's new Display functionality
  • 03a3823 feat(anstyle): Add Alternate for Style that resets
  • 8d24f99 feat(anstyle): Impl Display for Reset directly
  • 5a264b6 feat(anstyle): Impl Display for Style directly
  • c999f0b refactor(anstyle): Pull out Style fmt code
  • 82539b6 Merge pull request #168 from epage/min
  • a507b81 test(style): Make it easier to track type size
  • Additional commits viewable in compare view


Updates itertools from 0.12.0 to 0.12.1

Changelog

Sourced from itertools's changelog.

0.12.1

Added

  • Documented iteration order guarantee for Itertools::[tuple_]combinations (#822)
  • Documented possible panic in iterate (#842)
  • Implemented Clone and Debug for Diff (#845)
  • Implemented Debug for WithPosition (#859)
  • Implemented Eq for MinMaxResult (#838)
  • Implemented From<EitherOrBoth<A, B>> for Option<Either<A, B>> (#843)
  • Implemented PeekingNext for RepeatN (#855)

Changed

  • Made CoalesceBy lazy (#801)
  • Optimized Filter[Map]Ok::next, Itertools::partition, Unique[By]::next[_back] (#818)
  • Optimized Itertools::find_position (#837)
  • Optimized Positions::next[_back] (#816)
  • Optimized ZipLongest::fold (#854)
  • Relaxed Debug bounds for GroupingMapBy (#860)
  • Specialized ExactlyOneError::fold (#826)
  • Specialized Interleave[Shortest]::fold (#849)
  • Specialized MultiPeek::fold (#820)
  • Specialized PadUsing::[r]fold (#825)
  • Specialized PeekNth::fold (#824)
  • Specialized Positions::[r]fold (#813)
  • Specialized PutBackN::fold (#823)
  • Specialized RepeatN::[r]fold (#821)
  • Specialized TakeWhileInclusive::fold (#851)
  • Specialized ZipLongest::rfold (#848)

Notable Internal Changes

  • Added test coverage in CI (#847, #856)
  • Added semver check in CI (#784)
  • Enforced clippy in CI (#740)
  • Enforced rustdoc in CI (#840)
  • Improved specialization tests (#807)
  • More specialization benchmarks (#806)
Commits
  • 98d3978 Prepare v0.12.1 release
  • dffac1f Bump obi1kenobi/cargo-semver-checks-action from 2.2 to 2.3
  • 00998a4 CoalesceBy: missing field in Debug
  • a0411d6 CombinationsWithReplacement: use a boxed slice internally
  • 8dd75f1 Permutations: use boxed slices internally
  • b785403 ExactlyOneError: implement Debug differently
  • 7a1c22b FlattenOk: Debug with macro
  • 94452e3 GroupingMapBy: fix Debug implementation
  • 2e325a0 TakeWhileInclusive: missing field in Debug
  • a48c5b4 WithPosition: implement Debug
  • Additional commits viewable in compare view


Updates reqwest from 0.11.23 to 0.11.24

Release notes

Sourced from reqwest's releases.

v0.11.24

What's Changed

  • Add Certificate::from_pem_bundle() to add a bundle.
  • Add http3_prior_knowledge() to blocking client builder.
  • Remove Sync bounds requirement for Body::wrap_stream().
  • Fix HTTP/2 to retry REFUSED_STREAM requests.
  • Fix instances of converting Url to Uri that could panic.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.11.23...v0.11.24

Changelog

Sourced from reqwest's changelog.

v0.11.24

  • Add Certificate::from_pem_bundle() to add a bundle.
  • Add http3_prior_knowledge() to blocking client builder.
  • Remove Sync bounds requirement for Body::wrap_stream().
  • Fix HTTP/2 to retry REFUSED_STREAM requests.
  • Fix instances of converting Url to Uri that could panic.
Commits


Updates tokio from 1.35.1 to 1.36.0

Release notes

Sourced from tokio's releases.

Tokio v1.36.0

1.36.0 (February 2nd, 2024)

Added

  • io: add tokio::io::Join (#6220)
  • io: implement AsyncWrite for Empty (#6235)
  • net: add support for anonymous unix pipes (#6127)
  • net: add UnixSocket (#6290)
  • net: expose keepalive option on TcpSocket (#6311)
  • sync: add {Receiver,UnboundedReceiver}::poll_recv_many (#6236)
  • sync: add Sender::{try_,}reserve_many (#6205)
  • sync: add watch::Receiver::mark_unchanged (#6252)
  • task: add JoinSet::try_join_next (#6280)

Changed

  • io: make copy cooperative (#6265)
  • io: make repeat and sink cooperative (#6254)
  • io: simplify check for empty slice (#6293)
  • process: use pidfd on Linux when available (#6152)
  • sync: use AtomicBool in broadcast channel future (#6298)

Documented

  • io: clarify clear_ready docs (#6304)
  • net: document that *Fd traits on TcpSocket are unix-only (#6294)
  • sync: document FIFO behavior of tokio::sync::Mutex (#6279)
  • chore: typographic improvements (#6262)
  • runtime: remove obsolete comment (#6303)
  • task: fix typo (#6261)

#6220: tokio-rs/tokio#6220 #6235: tokio-rs/tokio#6235 #6127: tokio-rs/tokio#6127 #6290: tokio-rs/tokio#6290 #6311: tokio-rs/tokio#6311 #6236: tokio-rs/tokio#6236 #6205: tokio-rs/tokio#6205 #6252: tokio-rs/tokio#6252 #6280: tokio-rs/tokio#6280 #6265: tokio-rs/tokio#6265 #6254: tokio-rs/tokio#6254 #6293: tokio-rs/tokio#6293 #6238: tokio-rs/tokio#6238 #6152: tokio-rs/tokio#6152 #6298: tokio-rs/tokio#6298 #6262: tokio-rs/tokio#6262 #6303: tokio-rs/tokio#6303 #6261: tokio-rs/tokio#6261

... (truncated)

Commits


Updates indexmap from 2.2.1 to 2.2.2

Changelog

Sourced from indexmap's changelog.

2.2.2

  • Added indexing methods to raw entries: RawEntryBuilder::from_hash_full, RawEntryBuilder::index_from_hash, and RawEntryMut::index.
Commits


Updates libc from 0.2.152 to 0.2.153

Release notes

Sourced from libc's releases.

0.2.153

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/libc/compare/0.2.152...0.2.153

Commits
  • ccf8a3e Merge pull request #3554 from GuillaumeGomez/update-0.2
  • 036fe2e Merge pull request #3553 from rusty-snake/mfd-exec
  • adaec1d Merge pull request #3570 from heiher/fs-ioctl
  • 9a07431 Add ioctl FS_IOC_{G,S}{ETVERSION,ETFLAGS} for LoongArch64
  • 3726d14 Update crate version to 0.2.153
  • d5d3700 Ignore some android constants not found in tests
  • 738f901 Add missing constants for Android
  • 8b68569 Add MFD_NOEXEC_SEAL and MFD_EXEC
  • b56e4b3 Merge pull request #3557 from JohnTitor/fix-ci
  • 941f825 Fix CI for v0.2
  • Additional commits viewable in compare view


Updates miniz_oxide from 0.7.1 to 0.7.2

Changelog

Sourced from miniz_oxide's changelog.

0.7.2 - 2024-02-03

Bug Fixes

  • (inflate) Return MZError::Buf when calling inflate with MZFlush::Finish in line with orig miniz and zlib - (0f50464) - oyvindln
  • (miniz_oxide) fix tests when with-alloc is not enabled (running with --no-default-features) and make add test run of it to ci - (4fd32da) - oyvindln
  • (miniz_oxide) fix compiler and clippy warnings - (657c5b2) - oyvindln

Documentation

Performance

  • Code size reduction from panic reduction (#145) - (201ef39) - Kornel
  • Optimize match_len == 3 (#146) - (10ff5a0) - Kornel

Other

  • Add a roundtrip fuzz target (#138) - (ee29e37) - Sergey "Shnatsel" Davidoff

Commits


Updates pest from 2.7.6 to 2.7.7

Commits


Updates pest_derive from 2.7.6 to 2.7.7

Release notes

Sourced from pest_derive's releases.

v2.7.7

What's Changed

New Contributors

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

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


Updates rustix from 0.38.30 to 0.38.31

Commits


Updates toml from 0.8.8 to 0.8.9

Commits
  • f5c6f4b chore: Release
  • 24e599e docs: Update changelog
  • d00d616 Merge pull request #670 from epage/span
  • 7e23971 fix(serde): Improve spans for empty tables
  • d5423f6 test(serde): Show bad span
  • 9db97b3 Merge pull request #668 from JustusAdam/patch-1
  • 5381d7b docs: Describe Table order based on concepts
  • 106d51f test: Update compliance suite
  • 062e058 Merge pull request #665 from toml-rs/renovate/actions-setup-python-5.x
  • 0da2b51 Merge pull request #666 from toml-rs/renovate/github-codeql-action-3.x
  • Additional commits viewable in compare view


Updates winnow from 0.5.35 to 0.5.37

Changelog

Sourced from winnow's changelog.

[0.5.37] - 2024-02-02

Features

  • Initial support for error recovery behind unstable-recover feature

[0.5.36] - 2024-01-31

Compatibility

  • Deprecate fold_repeat in favor of repeat().fold()

Features

  • Add repeat().fold()
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 7 months ago

Codecov Report

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

Comparison is base (5c3a0f4) 82.86% compared to head (ab01a05) 82.86%.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #40 +/- ## ======================================= Coverage 82.86% 82.86% ======================================= Files 7 7 Lines 3268 3268 ======================================= Hits 2708 2708 Misses 560 560 ```

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