zifeo / whiz

Modern DAG/tasks runner for multi-platform monorepos with live reloading, env management, pipes, and more in a tabbed view.
https://metatype.dev/docs/reference/ecosystem?utm_source=github&utm_medium=about&utm_campaign=whiz
Mozilla Public License 2.0
19 stars 14 forks source link

chore(deps): bump the deps group with 19 updates #124

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 5 months ago

Bumps the deps group with 19 updates:

Package From To
actix 0.13.1 0.13.3
ansi-to-tui 3.1.0 4.0.1
anyhow 1.0.75 1.0.80
chrono 0.4.31 0.4.34
clap 4.4.7 4.4.18
globset 0.4.13 0.4.14
ignore 0.4.20 0.4.22
indexmap 2.1.0 2.2.5
openssl 0.10.58 0.10.64
regex 1.10.2 1.10.3
serde 1.0.190 1.0.193
serde_yaml 0.9.27 0.9.29
textwrap 0.16.0 0.16.1
tokio 1.33.0 1.36.0
ratatui 0.23.0 0.26.1
url 2.4.1 2.5.0
assert_cmd 2.0.12 2.0.14
semver 1.0.20 1.0.22
shlex 1.2.0 1.3.0

Updates actix from 0.13.1 to 0.13.3

Release notes

Sourced from actix's releases.

actix: v0.13.3

  • No significant changes since 0.13.2.

actix: v0.13.2

  • Expose ContextFut::restart.
  • Unquoted types are now allowed in the #[rtype(result = TYPE)] position when type is a path.
Commits
  • f3a3233 chore(actix): prepare release 0.13.3
  • e67b078 docs: idiomatic ActorFuture docs
  • 07baeb8 chore(deps): bump codecov/codecov-action from 4.0.0 to 4.0.1 (#579)
  • 4e7dab3 chore: use friendlier mod names
  • a809645 docs: use intra-doc links in crate root
  • 9928306 chore(actix): prepare release 0.13.2
  • fddd075 ci: standardize job names
  • 31b0f4b ci: fix cargo-nextest install
  • 7d40ea5 ci: switch to nextest
  • c0cf913 chore: prevent dead code warnings
  • Additional commits viewable in compare view


Updates ansi-to-tui from 3.1.0 to 4.0.1

Commits


Updates anyhow from 1.0.75 to 1.0.80

Release notes

Sourced from anyhow's releases.

1.0.80

  • Fix unused_imports warnings when compiled by rustc 1.78

1.0.79

  • Work around improperly cached build script result by sccache (#340)

1.0.78

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#337)

1.0.77

1.0.76

  • Opt in to unsafe_op_in_unsafe_fn lint (#329)
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
  • 71ab53d Release 1.0.79
  • 60705a5 Merge pull request #340 from dtolnay/depinfo
  • 17e252b Include env-dep:RUSTC_BOOTSTRAP in dep-info for sccache
  • Additional commits viewable in compare view


Updates chrono from 0.4.31 to 0.4.34

Release notes

Sourced from chrono's releases.

0.4.34

Notable changes

  • In chrono 0.4.34 we finished the work to make all methods const where doing so is supported by rust 1.61.
  • We renamed the Duration type to TimeDelta. This removes the confusion between chrono's type and the later Duration type in the standard library. It will remain available under the old name as a type alias for compatibility.
  • The Windows implementation of Local is rewritten. The new version avoids panics when the date is outside of the range supported by windows (the years 1601 to 30828), and gives more accurate results during DST transitions.
  • The Display format of TimeDelta is modified to conform better to ISO 8601. Previously it converted all values greater than 24 hours to a value with days. This is not correct, as doing so changes the duration from an 'accurate' to a 'nominal' representation to use ISO 8601 terms.

Fixes

Additions

Changes

  • Rename Duration to TimeDelta, add type alias (#1406)
  • Make TimeDelta methods const (#1337)
  • Make remaining methods of NaiveDate, NaiveWeek, NaiveTime and NaiveDateTime const where possible (#1337)
  • Make methods on DateTime const where possible (#1400)
  • Make Display format of TimeDelta conform better to ISO 8601 (#1328)

Documentation

  • Fix the formatting of timestamp_micros's Example doc (#1338 via #1386, thanks @​emikitas)
  • Specify branch for GitHub Actions badge and fix link (#1388)
  • Don't mention some deprecated methods in docs (#1395)
  • Remove stray documentation from main (#1397)
  • Improved documentation of TimeDelta constructors (#1385, thanks @​danwilliams)

Internal

  • Switch branch names: 0.4.x releases are the main branch, work on 0.5 happens in the 0.5.x branch (#1390, #1402).
  • Don't use deprecated method in impl Arbitrary for DateTime and set up CI test (#1336)
  • Remove workaround for Rust < 1.61 (#1393)
  • Bump codecov/codecov-action from 3 to 4 (#1404)
  • Remove partial support for handling -0000 offset (#1411)
  • Move TOO_LONG error out of parse_internal (#1419)

Thanks to all contributors on behalf of the chrono team, @​djc and @​pitdicker!

0.4.33

This release fixes the broken docrs.rs build of chrono 0.4.32.

What's Changed

... (truncated)

Commits
  • dc19606 Prepare 0.4.34
  • 58a2149 Add StrftimeItems::parse_to_owned
  • 59eeb8c Add StrftimeItems::parse
  • 79de122 Add more documentation to StrftimeItems::new_with_locale
  • 5b7cf85 Add more documentation to StrftimeItems::new
  • be6af79 Make Display format of TimeDelta conform better to ISO 8601
  • d1cf0e9 Add test for issue 651
  • 0ef34e4 Extend test to more distant dates
  • fc67f3e Remove obsolete test
  • acb693a Windows: rewrite using GetTimeZoneInformationForYear
  • Additional commits viewable in compare view


Updates clap from 4.4.7 to 4.4.18

Release notes

Sourced from clap's releases.

v4.4.18

[4.4.18] - 2024-01-16

Fixes

  • (error) When lacking usage feature, ensure the list of required arguments is unique

v4.4.17

[4.4.17] - 2024-01-15

Fixes

  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

v4.4.16

[4.4.16] - 2024-01-12

Fixes

  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

v4.4.15

[4.4.15] - 2024-01-11

Fixes

  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

v4.4.14

[4.4.14] - 2024-01-08

Documentation

  • Fix find cookbook entry to allow repeats of flags/options

Features

  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

v4.4.13

[4.4.13] - 2024-01-04

Documentation

  • Fix link to structopt migration guide

v4.4.12

[4.4.12] - 2023-12-28

... (truncated)

Changelog

Sourced from clap's changelog.

[4.4.18] - 2024-01-16

Fixes

  • (error) When lacking usage feature, ensure the list of required arguments is unique

[4.4.17] - 2024-01-15

Fixes

  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

[4.4.16] - 2024-01-12

Fixes

  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

[4.4.15] - 2024-01-11

Fixes

  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

[4.4.14] - 2024-01-08

Documentation

  • Fix find cookbook entry to allow repeats of flags/options

Features

  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

[4.4.13] - 2024-01-04

Documentation

  • Fix link to structopt migration guide

[4.4.12] - 2023-12-28

Performance

  • Only ask TypedValueParser for possible values if needed

[4.4.11] - 2023-12-04

Features

... (truncated)

Commits


Updates globset from 0.4.13 to 0.4.14

Commits
  • 47e3717 globset-0.4.14
  • 8697946 release/doc: set date in man page
  • 9b5091b deps: bump to memmap2 0.9.0
  • d1def67 deps: bump pcre2 to 0.2.6
  • 56af4d4 cli: add simple flag suggestions
  • 6a055d9 doc: clarify errors for -z/--search-zip
  • e007523 doc: note the precedence of -t/--type
  • 88353c8 doc: be more explicit about ripgrep's behavior when printing to a tty
  • 9ed7565 cli: error when searching for NUL
  • 7bb9f35 doc: clarify that --pre can accept any kind of path
  • Additional commits viewable in compare view


Updates ignore from 0.4.20 to 0.4.22

Commits
  • 2c38975 ignore-0.4.22
  • c8e4a84 cli: prefix all non-fatal error messages with 'rg: '
  • b9c7749 ignore: fix reference cycle for compiled matchers
  • 67dd809 ignore: add some 'allow(dead_code)' annotations
  • e0a8567 complete/fish: improve shell completions for fish
  • 56c7ad1 ignore/types: add Lean
  • 2a4dba3 ignore/types: add meson.options
  • daa157b core: actually implement --sortr=path
  • 0096c74 grep-0.3.1
  • 8c48355 deps: bump grep-printer to 0.2.1
  • Additional commits viewable in compare view


Updates indexmap from 2.1.0 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.

2.2.3

  • Added move_index and swap_indices methods to IndexedEntry, OccupiedEntry, and RawOccupiedEntryMut, functioning like the existing methods on IndexMap.
  • Added shift_insert methods on VacantEntry and RawVacantEntryMut, as well as shift_insert_hashed_nocheck on the latter, to insert the new entry at a particular index.
  • Added shift_insert methods on IndexMap and IndexSet to insert a new entry at a particular index, or else move an existing entry there.

2.2.2

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

2.2.1

  • Corrected the signature of RawOccupiedEntryMut::into_key(self) -> &'a mut K, This a breaking change from 2.2.0, but that version was published for less than a day and has now been yanked.

2.2.0

  • The new IndexMap::get_index_entry method finds an entry by its index for in-place manipulation.

  • The Keys iterator now implements Index<usize> for quick access to the entry's key, compared to indexing the map to get the value.

  • The new IndexMap::splice and IndexSet::splice methods will drain the given range as an iterator, and then replace that range with entries from an input iterator.

  • The new trait RawEntryApiV1 offers opt-in access to a raw entry API for IndexMap, corresponding to the unstable API on HashSet as of Rust 1.75.

  • Many IndexMap and IndexSet methods have relaxed their type constraints, e.g. removing K: Hash on methods that don't actually need to hash.

... (truncated)

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 openssl from 0.10.58 to 0.10.64

Release notes

Sourced from openssl's releases.

openssl-v0.10.64

What's Changed

Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64

openssl-v0.10.63

What's Changed

Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...openssl-v0.10.63

openssl-v0.10.62

What's Changed

New Contributors

Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62

openssl v0.10.61

... (truncated)

Commits
  • 4a19cd4 Merge pull request #2175 from reaperhulk/changelog
  • 4e0e05a bump openssl and openssl-sys + changelogs
  • c2b124a Be explicit that aliases are not part of X.509 certificates
  • 1abf4a5 Merge pull request #2167 from alex/expose-alias
  • a644ec2 Merge pull request #2170 from botovq/crypto-free
  • 83940d1 LibreSSL 3.9: fix CRYPTO_malloc/free signatures
  • 51fc569 Merge pull request #2168 from sfackler/alex-patch-1
  • 3c53dee Added binding for EVP_default_properties_enable_fips
  • a12abe1 Expose alias on X509 structs
  • 3acf2ef Merge pull request #2157 from reaperhulk/rebuild-if-changed
  • Additional commits viewable in compare view


Updates regex from 1.10.2 to 1.10.3

Changelog

Sourced from regex's changelog.

1.10.3 (2024-01-21)

This is a new patch release that fixes the feature configuration of optional dependencies, and fixes an unsound use of bounds check elision.

Bug fixes:

Commits
  • 0c09903 1.10.3
  • 653bb59 deps: bump regex-automata to 0.4.4
  • e7b5401 regex-automata-0.4.4
  • 1bc667d changelog: 1.10.3
  • fbd2537 safety: guard in Input::new against incorrect AsRef implementations
  • 027eebd cargo: set 'default-features = false' for memchr and aho-corasick
  • dc0a9d2 ci: small clean-ups
  • a3d5975 doc: fix link in Index<&str> impl docs
  • 4f5992f doc: tweak Captures documentation
  • 837fd85 regex-cli-0.2.0
  • Additional commits viewable in compare view


Updates serde from 1.0.190 to 1.0.193

Release notes

Sourced from serde's releases.

v1.0.193

v1.0.192

v1.0.191

  • Documentation improvements
Commits
  • 44613c7 Release 1.0.193
  • c706281 Merge pull request #2655 from dtolnay/rangestartend
  • 65d75b8 Add RangeFrom and RangeTo tests
  • 332b0cb Merge pull request #2654 from dtolnay/rangestartend
  • 8c4af41 Fix more RangeFrom / RangeEnd mixups
  • 24a78f0 Merge pull request #2653 from emilbonnek/fix/range-to-from-de-mixup
  • c91c334 Fix Range{From,To} deserialize mixup
  • 2083f43 Update ui test suite to nightly-2023-11-19
  • 4676abd Release 1.0.192
  • 35700eb Merge pull request #2646 from robsdedude/fix/2643/allow-tag-field-in-untagged
  • Additional commits viewable in compare view


Updates serde_yaml from 0.9.27 to 0.9.29

Release notes

Sourced from serde_yaml's releases.

0.9.29

  • Turn on deny(unsafe_op_in_unsafe_fn) lint

0.9.28

  • Update unsafe-libyaml dependency to pull in unaligned write fix
Commits
  • b957d2b Release 0.9.29
  • 007fc2d Merge pull request #401 from dtolnay/unsafeop
  • 5bac247 Fill in unsafe blocks inside unsafe functions
  • 0f6dba1 Turn on deny(unsafe_op_in_unsafe_fn)
  • 1b6e448 Release 0.9.28
  • ec1a314 Force unsafe-libyaml version that contains unaligned write fix
  • a6b2dc0 Update name of blocks_in_if_conditions clippy lint
  • See full diff in compare view


Updates textwrap from 0.16.0 to 0.16.1

Release notes

Sourced from textwrap's releases.

textwrap-0.16.1

Version 0.16.1 (2024-02-17)

This release fixes display_width to ignore inline-hyperlinks. The minimum supported version of Rust is now documented to be 1.56.

  • #526: Ignore ANSI hyperlinks in display_width: calculations.
  • #521: Add Options::width setter method.
  • #520: Clarify that WordSeparator is an enum rather than a trait.
  • #518: Test with latest stable and nightly Rust, but check that we can build with Rust 1.56.
Changelog

Sourced from textwrap's changelog.

Version 0.16.1 (2024-02-17)

This release fixes display_width to ignore inline-hyperlinks. The minimum supported version of Rust is now documented to be 1.56.

  • #526: Ignore ANSI hyperlinks in display_width: calculations.
  • #521: Add Options::width setter method.
  • #520: Clarify that WordSeparator is an enum rather than a trait.
  • #518: Test with latest stable and nightly Rust, but check that we can build with Rust 1.56.
Commits
  • 39914e0 Merge pull request #533 from mgeisler/release-0.16.1
  • 8f84d66 Bump version to 0.16.1
  • a87c395 Update changelog for version 0.16.1
  • 3dd0774 Add dependency graph for version 0.16.1
  • b656c07 Merge pull request #532 from mgeisler/skip-ansi-escape-sequence-early-return
  • 599b78a Early return in skip_ansi_escape_sequence
  • e7a20ef Merge pull request #526 from tertsdiepraam/ansi-hyperlink
  • 5d28004 display_width: support BEL as a separator in hyperlinks
  • aa09798 Merge pull request #529 from mgeisler/dependabot/npm_and_yarn/examples/wasm/w...
  • 12feb68 Bump follow-redirects from 1.15.2 to 1.15.4 in /examples/wasm/www
  • Additional commits viewable in compare view


Updates tokio from 1.33.0 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 ratatui from 0.23.0 to 0.26.1

Release notes

Sourced from ratatui's releases.

v0.26.1

0.26.1 - 2024-02-12

This is a patch release that fixes bugs and adds enhancements, including new iterators, title options for blocks, and various rendering improvements. ✨

Features

  • 74a0511 (rect) Add Rect::positions iterator (#928)

    Useful for performing some action on all the cells in a particular area.
    E.g.,
    
    fn render(area: Rect, buf: &amp;mut Buffer) {
       for position in area.positions() {
            buf.get_mut(position.x, position.y).set_symbol(&quot;x&quot;);
        }
    }
    

  • 9182f47 (uncategorized) Add Block::title_top and Block::title_top_bottom (#940)

    This adds the ability to add titles to the top and bottom of a block
    without having to use the `Title` struct (which will be removed in a
    future release - likely v0.28.0).
    

    Fixes a subtle bug if the title was created from a right aligned Line and was also right aligned. The title would be rendered one cell too far to the right.

    Block::bordered()
        .title_top(Line::raw(&quot;A&quot;).left_aligned())
        .title_top(Line::raw(&quot;B&quot;).centered())
        .title_top(Line::raw(&quot;C&quot;).right_aligned())
        .title_bottom(Line::raw(&quot;D&quot;).left_aligned())
        .title_bottom(Line::raw(&quot;E&quot;).centered())
        .title_bottom(Line::raw(&quot;F&quot;).right_aligned())
        .render(buffer.area, &amp;mut buffer);
    // renders
    &quot;┌A─────B─────C┐&quot;,
    &quot;│             │&quot;,
    &quot;└D─────E─────F┘&quot;,
    </code></pre>
    </li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    
    <p><em>Sourced from <a href="https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md">ratatui's changelog</a>.</em></p>
    <blockquote>
    <h2><a href="https://github.com/ratatui-org/ratatui/releases/tag/0.26.1">0.26.1</a> - 2024-02-12</h2>
    <p>This is a patch release that fixes bugs and adds enhancements, including new iterators, title options for blocks, and various rendering improvements. ✨</p>
    <h3>Features</h3>
    <ul>
    <li>
    <p><a href="https://github.com/ratatui-org/ratatui/commit/74a051147a4059990c31e08d96a8469d8220537b">74a0511</a>
    <em>(rect)</em> Add Rect::positions iterator (<a href="https://redirect.github.com/ratatui-org/ratatui/issues/928">#928</a>)</p>
    <pre lang="text"><code>Useful for performing some action on all the cells in a particular area.
    E.g.,
    
    ```rust
    fn render(area: Rect, buf: &amp;mut Buffer) {
       for position in area.positions() {
            buf.get_mut(position.x, position.y).set_symbol(&quot;x&quot;);
        }
    }
    

  • 9182f47 (uncategorized) Add Block::title_top and Block::title_top_bottom (#940)

    This adds the ability to add titles to the top and bottom of a block
    without having to use the `Title` struct (which will be removed in a
    future release - likely v0.28.0).
    

    Fixes a subtle bug if the title was created from a right aligned Line and was also right aligned. The title would be rendered one cell too far to the right.

    Block::bordered()
        .title_top(Line::raw(&quot;A&quot;).left_aligned())
        .title_top(Line::raw(&quot;B&quot;).centered())
        .title_top(Line::raw(&quot;C&quot;).right_aligned())
        .title_bottom(Line::raw(&quot;D&quot;).left_aligned())
        .title_bottom(Line::raw(&quot;E&quot;).centered())
        .title_bottom(Line::raw(&quot;F&quot;).right_aligned())
        .render(buffer.area, &amp;mut buffer);
    // renders
    &quot;┌A─────B─────C┐&quot;,
    &quot;│             │&quot;,
    &quot;└D─────E─────F┘&quot;,
    

    Addresses part of

    dependabot[bot] commented 4 months ago

    Looks like these dependencies are updatable in another way, so this is no longer needed.