Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the cargo group across 1 directory with 8 updates #4

Merged
merged 1 commit into from
Jul 10, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 9, 2024

Bumps the cargo group with 7 updates in the / directory:

Package From To
bitflags 2.5.0 2.6.0
log 0.4.21 0.4.22
ratatui 0.26.3 0.27.0
serde 1.0.203 1.0.204
serde_json 1.0.117 1.0.120
superblock c7009a1 0aaece6
tui-textarea 0.4.0 0.5.0

Updates bitflags from 2.5.0 to 2.6.0

Release notes

Sourced from bitflags's releases.

2.6.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.5.0...2.6.0

Changelog

Sourced from bitflags's changelog.

2.6.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.5.0...2.6.0

Commits
  • 1351369 Merge pull request #412 from KodrAus/cargo/2.6.0
  • a187b29 prepare for 2.6.0 release
  • e1ac235 Merge pull request #411 from KodrAus/fix/impl-mode-attributes
  • dc8f03a allow specifying outer attributes in impl mode
  • 9c4b93c Merge pull request #410 from waywardmonkeys/fix-typo
  • 980c588 Fix typo
  • 9f633fe Merge pull request #408 from KodrAus/chore/ci-fix
  • 70a8247 update stderr messages
  • 650025d update to scorecard 2.3.1
  • 4020868 Merge pull request #396 from bitflags/ci/scorecard
  • Additional commits viewable in compare view

Updates log from 0.4.21 to 0.4.22

Changelog

Sourced from log's changelog.

[0.4.22] - 2024-06-27

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.21...0.4.22

Commits
  • d5ba2cf Merge pull request #634 from rust-lang/cargo/0.4.22
  • d1a8306 prepare for 0.4.22 release
  • 46894ef Merge pull request #633 from rust-lang/feat/panic-info
  • e0d389c Merge pull request #632 from rust-lang/feat/loosen-atomics
  • c9e5e13 use Location::caller() for file and line info
  • 507b672 loosen orderings for logger initialization
  • c879b01 Merge pull request #628 from Thomasdezeeuw/fix-warnings
  • 405fdb4 Merge pull request #627 from Thomasdezeeuw/check-features
  • 1307ade Remove unneeded import
  • 710560e Don't use --all-features in CI
  • Additional commits viewable in compare view

Updates ratatui from 0.26.3 to 0.27.0

Release notes

Sourced from ratatui's releases.

v0.27.0

0.27.0 - 2024-06-24

“I can’t believe it! A real gourmet kitchen, and I get to watch!” – Remy

We are excited to announce the new version of ratatui - a Rust library that's all about cooking up TUIs 🐭

In this version, we have focused on enhancing usability and functionality with new features like background styles for LineGauge, palette colors, and various other improvements including improved performance. Also, we added brand new examples for tracing and creating hyperlinks!

Release highlights: https://ratatui.rs/highlights/v027/

⚠️ List of breaking changes can be found here.

Features

  • eef1afe (linegauge) Allow LineGauge background styles by @​nowNick in #565

    This PR deprecates `gauge_style` in favor of `filled_style` and
    `unfilled_style` which can have it's foreground and background styled.
    

    cargo run --example=line_gauge --features=crossterm

    line_gauge_demo.mov

    Implements:ratatui-org/ratatui#424

  • 1365620 (borders) Add FULL and EMPTY border sets by @​joshka in #1182

    border::FULL uses a full block symbol, while border::EMPTY uses an empty space. This is useful for when you need to allocate space for the border and apply the border style to a block without actually drawing a border. This makes it possible to style the entire title area or a block rather than just the title content.

use ratatui::{symbols::border, widgets::Block};
let block = Block::bordered().title("Title").border_set(border::FULL);
let block = Block::bordered().title("Title").border_set(border::EMPTY);
  • 7a48c5b (cell) Add EMPTY and (const) new method by @​EdJoPaTo in #1143

    This simplifies calls to `Buffer::filled` in tests.
    

... (truncated)

Changelog

Sourced from ratatui's changelog.

0.27.0 - 2024-06-24

In this version, we have focused on enhancing usability and functionality with new features like background styles for LineGauge, palette colors, and various other improvements including improved performance. Also, we added brand new examples for tracing and creating hyperlinks!

Release highlights: https://ratatui.rs/highlights/v027/

⚠️ List of breaking changes can be found here.

Features

  • eef1afe (linegauge) Allow LineGauge background styles by @​nowNick in #565

    This PR deprecates `gauge_style` in favor of `filled_style` and
    `unfilled_style` which can have it's foreground and background styled.
    

    cargo run --example=line_gauge --features=crossterm

    line_gauge_demo.mov

    Implements:ratatui-org/ratatui#424

  • 1365620 (borders) Add FULL and EMPTY border sets by @​joshka in #1182

    border::FULL uses a full block symbol, while border::EMPTY uses an empty space. This is useful for when you need to allocate space for the border and apply the border style to a block without actually drawing a border. This makes it possible to style the entire title area or a block rather than just the title content.

use ratatui::{symbols::border, widgets::Block};
let block = Block::bordered().title("Title").border_set(border::FULL);
let block = Block::bordered().title("Title").border_set(border::EMPTY);
  • 7a48c5b (cell) Add EMPTY and (const) new method by @​EdJoPaTo in #1143

    This simplifies calls to `Buffer::filled` in tests.
    
  • 3f2f2cd (docs) Add tracing example by @​joshka in #1192

    Add an example that demonstrates logging to a file for:
    

... (truncated)

Commits
  • 0a18dcb chore(release): prepare for 0.27.0 (#1196)
  • 7ef2dae feat(text): support constructing Line and Text from usize (#1167)
  • 46977d8 feat(list)!: add list navigation methods (first, last, previous, next) (#1159)
  • 38bb196 docs(breaking-changes): mention LineGauge::gauge_style (#1194)
  • 1908b06 docs(borders): add missing closing code blocks (#1195)
  • 3f2f2cd feat(docs): add tracing example (#1192)
  • efa965e fix(line): remove newlines when converting strings to Lines (#1191)
  • 127d706 fix(table): ensure render offset without selection properly (#1187)
  • 1365620 feat(borders): Add FULL and EMPTY border sets (#1182)
  • cd64367 chore(symbols): add tests for line symbols (#1186)
  • Additional commits viewable in compare view

Updates serde from 1.0.203 to 1.0.204

Release notes

Sourced from serde's releases.

v1.0.204

  • Apply #[diagnostic::on_unimplemented] attribute on Rust 1.78+ to suggest adding serde derive or enabling a "serde" feature flag in dependencies (#2767, thanks @​weiznich)
Commits
  • 18dcae0 Release 1.0.204
  • 58c307f Alphabetize list of rustc-check-cfg
  • 8cc4809 Merge pull request #2769 from dtolnay/onunimpl
  • 1179158 Update ui test with diagnostic::on_unimplemented from PR 2767
  • 91aa40e Add ui test of unsatisfied serde trait bound
  • 595019e Cut test_suite from workspace members in old toolchain CI jobs
  • b0d7917 Pull in trybuild 'following types implement trait' fix
  • 8e6637a Merge pull request #2767 from weiznich/feature/diagnostic_on_unimplemented
  • 694fe05 Use the #[diagnostic::on_unimplemented] attribute when possible
  • f3dfd2a Suppress dead code warning in test of unit struct remote derive
  • Additional commits viewable in compare view

Updates serde_json from 1.0.117 to 1.0.120

Release notes

Sourced from serde_json's releases.

v1.0.120

  • Correctly specify required version of indexmap dependency (#1152, thanks @​cforycki)

v1.0.119

v1.0.118

Commits
  • bcedc3d Release 1.0.120
  • 962c0fb Merge pull request #1152 from cforycki/fix/index-map-minimal-version
  • 3480fed fix: indexmap minimal version with Map::shift_insert()
  • b48b9a3 Release 1.0.119
  • 8878cd7 Make shift_insert available for inlining like other Map methods
  • 352b7ab Document the cfg required for Map::shift_insert to exist
  • c17e63f Merge pull request #1149 from joshka/master
  • 309ef6b Add Map::shift_insert()
  • a9e089a Merge pull request #1146 from haouvw/master
  • a83fe96 chore: remove repeat words
  • Additional commits viewable in compare view

Updates superblock from c7009a1 to 0aaece6

Commits
  • 0aaece6 bootloader: Actually write correct config to correct locations
  • 62cfbde systemd_boot: Generate (in memory) configuration for loading
  • f6b4e5c blsforme: Use better IDs on ESP/XBOOTLDR for BLSFORME schema
  • dd81190 systemd_boot: Install kernels, minus just the loader config file
  • fc8da4a systemd_boot: Teach code how to generate old-style vmlinuz path
  • 5523740 bootloader: Use os-release in schema for correct loader name
  • 7af24b2 blsforme: Lock os-release into kernel schema
  • 63a287b bootloader: Some early scaffolding around kernel installs
  • 7e922e5 blsforme/file_utils: Remove now unused lifetime
  • 7bc1e6c blsforme: Switch from kernel as main driver to Entry
  • Additional commits viewable in compare view

Updates topology from c7009a1 to 0aaece6

Commits
  • 0aaece6 bootloader: Actually write correct config to correct locations
  • 62cfbde systemd_boot: Generate (in memory) configuration for loading
  • f6b4e5c blsforme: Use better IDs on ESP/XBOOTLDR for BLSFORME schema
  • dd81190 systemd_boot: Install kernels, minus just the loader config file
  • fc8da4a systemd_boot: Teach code how to generate old-style vmlinuz path
  • 5523740 bootloader: Use os-release in schema for correct loader name
  • 7af24b2 blsforme: Lock os-release into kernel schema
  • 63a287b bootloader: Some early scaffolding around kernel installs
  • 7e922e5 blsforme/file_utils: Remove now unused lifetime
  • 7bc1e6c blsforme: Switch from kernel as main driver to Entry
  • Additional commits viewable in compare view

Updates tui-textarea from 0.4.0 to 0.5.0

Release notes

Sourced from tui-textarea's releases.

v0.5.0

This is a maintenance release for supporting recent versions of ratatui crate.

  • BREAKING CHANGE: Bump the minimal versions of the following dependencies. If you're depending on the crates older than the following versions, please upgrade them before upgrading this crate. (#69, thanks @​joshka)
    • ratatui 0.27.0
    • termion 0.4.0
    • termwiz 0.22.0
  • YankText now implements Display instead of ToString directly. Since ToString is implemented for any types which implement Display, this is not a breaking change.
Changelog

Sourced from tui-textarea's changelog.

v0.5.0 - 07 Jul 2024

This is a maintenance release for supporting recent versions of ratatui crate.

  • BREAKING CHANGE: Bump the minimal versions of the following dependencies. If you're depending on the crates older than the following versions, please upgrade them before upgrading this crate. (#69, thanks @​joshka)
    • ratatui 0.27.0
    • termion 0.4.0
    • termwiz 0.22.0
  • YankText now implements Display instead of ToString directly. Since ToString is implemented for any types which implement Display, this is not a breaking change.

[Changes][v0.5.0]

Commits
  • 4b6b0b9 bump up version to v0.5.0
  • 552e36d fix clippy warnings in examples
  • 8c6bcb9 implement Display for YankText instead of ToString directly
  • 456480c Merge pull request #69 from joshka/jm/ratatui-0.27.0
  • ebbdc25 Merge pull request #64 from kyu08/fix-typo
  • 63a2604 Bump Ratatui to 0.27.0
  • 68ca07b fix typo
  • 39075bb run cargo doc check on CI
  • 8b092dc update changelog for v0.4.0 changes
  • See full diff 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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the cargo group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bitflags](https://github.com/bitflags/bitflags) | `2.5.0` | `2.6.0` |
| [log](https://github.com/rust-lang/log) | `0.4.21` | `0.4.22` |
| [ratatui](https://github.com/ratatui-org/ratatui) | `0.26.3` | `0.27.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.203` | `1.0.204` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.117` | `1.0.120` |
| [superblock](https://github.com/serpent-os/blsforme) | ``c7009a1`` | ``0aaece6`` |
| [tui-textarea](https://github.com/rhysd/tui-textarea) | `0.4.0` | `0.5.0` |



Updates `bitflags` from 2.5.0 to 2.6.0
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.5.0...2.6.0)

Updates `log` from 0.4.21 to 0.4.22
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.21...0.4.22)

Updates `ratatui` from 0.26.3 to 0.27.0
- [Release notes](https://github.com/ratatui-org/ratatui/releases)
- [Changelog](https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md)
- [Commits](ratatui/ratatui@v0.26.3...v0.27.0)

Updates `serde` from 1.0.203 to 1.0.204
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.203...v1.0.204)

Updates `serde_json` from 1.0.117 to 1.0.120
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.117...v1.0.120)

Updates `superblock` from `c7009a1` to `0aaece6`
- [Commits](AerynOS/blsforme@c7009a1...0aaece6)

Updates `topology` from `c7009a1` to `0aaece6`
- [Commits](AerynOS/blsforme@c7009a1...0aaece6)

Updates `tui-textarea` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/rhysd/tui-textarea/releases)
- [Changelog](https://github.com/rhysd/tui-textarea/blob/main/CHANGELOG.md)
- [Commits](rhysd/tui-textarea@v0.4.0...v0.5.0)

---
updated-dependencies:
- dependency-name: bitflags
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: ratatui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: superblock
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: topology
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: tui-textarea
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 9, 2024
@ikeycode ikeycode merged commit 332c315 into main Jul 10, 2024
1 check passed
@dependabot dependabot bot deleted the dependabot/cargo/cargo-c0bb745096 branch July 10, 2024 19:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant