[PR #180] [MERGED] Bump tui from 0.6.2 to 0.7.0 #655

Closed
opened 2026-02-28 14:50:22 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/180
Author: @dependabot-preview[bot]
Created: 12/2/2019
Status: Merged
Merged: 12/2/2019
Merged by: @Rigellute

Base: masterHead: dependabot/cargo/tui-0.7.0


📝 Commits (2)

📊 Changes

3 files changed (+14 additions, -6 deletions)

View changed files

📝 Cargo.lock (+3 -3)
📝 Cargo.toml (+1 -1)
📝 src/ui/mod.rs (+10 -2)

📄 Description

Bumps tui from 0.6.2 to 0.7.0.

Release notes

Sourced from tui's releases.

v0.7.0

Changed

  • Use Constraint instead of integers to specify the widths of the Table
    widget's columns. This will allow more responsive tables.
Table::new(header, row)
  .widths(&[15, 15, 10])
  .render(f, chunk);

becomes:

Table::new(header, row)
  .widths(&[
    Constraint::Length(15),
    Constraint::Length(15),
    Constraint::Length(10),
  ])
  .render(f, chunk);
  • Bump crossterm to 0.13.
  • Use Github Actions for CI (Travis and Azure Pipelines integrations have been deleted).

Added

  • Add support for horizontal and vertical margins in Layout.
Changelog

Sourced from tui's changelog.

v0.7.0 - 2019-11-29

### Changed

  • Use Constraint instead of integers to specify the widths of the Table
    widget's columns. This will allow more responsive tables.
Table::new(header, row)
  .widths(&[15, 15, 10])
  .render(f, chunk);

becomes:

Table::new(header, row)
  .widths(&[
    Constraint::Length(15),
    Constraint::Length(15),
    Constraint::Length(10),
  ])
  .render(f, chunk);
  • Bump crossterm to 0.13.
  • Use Github Actions for CI (Travis and Azure Pipelines integrations have been deleted).

### Added

  • Add support for horizontal and vertical margins in Layout.
Commits
  • 3abafc3 Release v0.7.0
  • 055af0f chore: bump dev dependencies
  • e4873e4 feat(backend): bump crossterm to 0.13
  • 2233cdc chore: add CI based on github actions
  • 816bc9b style: fix formatting and clippy issues
  • a82c82f fix(widgets): remove compilation warning in table widget
  • bb28d02 Update docs to point encourage installing 0.6
  • 94877f4 Use constraints for table column widths
  • 3747ddb feat(backend): Refactor crossterm backend
  • 42731da Enable build failure on compilation warnings
  • Additional commits viewable in compare view

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Rigellute/spotify-tui/pull/180 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 12/2/2019 **Status:** ✅ Merged **Merged:** 12/2/2019 **Merged by:** [@Rigellute](https://github.com/Rigellute) **Base:** `master` ← **Head:** `dependabot/cargo/tui-0.7.0` --- ### 📝 Commits (2) - [`1d3bf67`](https://github.com/Rigellute/spotify-tui/commit/1d3bf676ac54bb6e77b1993212b908a7561f3338) Bump tui from 0.6.2 to 0.7.0 - [`713b707`](https://github.com/Rigellute/spotify-tui/commit/713b7076fb14f49d79371846124229c06db16118) Fix breaking changes ### 📊 Changes **3 files changed** (+14 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+3 -3) 📝 `Cargo.toml` (+1 -1) 📝 `src/ui/mod.rs` (+10 -2) </details> ### 📄 Description Bumps [tui](https://github.com/fdehau/tui-rs) from 0.6.2 to 0.7.0. <details> <summary>Release notes</summary> *Sourced from [tui's releases](https://github.com/fdehau/tui-rs/releases).* > ## v0.7.0 > ### Changed > > * Use `Constraint` instead of integers to specify the widths of the `Table` > widget's columns. This will allow more responsive tables. > > ```rust > Table::new(header, row) > .widths(&[15, 15, 10]) > .render(f, chunk); > ``` > > becomes: > > ```rust > Table::new(header, row) > .widths(&[ > Constraint::Length(15), > Constraint::Length(15), > Constraint::Length(10), > ]) > .render(f, chunk); > ``` > > * Bump crossterm to 0.13. > * Use Github Actions for CI (Travis and Azure Pipelines integrations have been deleted). > > ### Added > > * Add support for horizontal and vertical margins in `Layout`. </details> <details> <summary>Changelog</summary> *Sourced from [tui's changelog](https://github.com/fdehau/tui-rs/blob/master/CHANGELOG.md).* > ## v0.7.0 - 2019-11-29 > > ### Changed > > * Use `Constraint` instead of integers to specify the widths of the `Table` > widget's columns. This will allow more responsive tables. > > ```rust > Table::new(header, row) > .widths(&[15, 15, 10]) > .render(f, chunk); > ``` > > becomes: > > ```rust > Table::new(header, row) > .widths(&[ > Constraint::Length(15), > Constraint::Length(15), > Constraint::Length(10), > ]) > .render(f, chunk); > ``` > > * Bump crossterm to 0.13. > * Use Github Actions for CI (Travis and Azure Pipelines integrations have been deleted). > > ### Added > > * Add support for horizontal and vertical margins in `Layout`. </details> <details> <summary>Commits</summary> - [`3abafc3`](https://github.com/fdehau/tui-rs/commit/3abafc307cc648be39e11836a7d41506b4e8b7b0) Release v0.7.0 - [`055af0f`](https://github.com/fdehau/tui-rs/commit/055af0f78a89117e469530b0191beb774e06a75b) chore: bump dev dependencies - [`e4873e4`](https://github.com/fdehau/tui-rs/commit/e4873e4da9a213df7a7dc718e1f400b807870724) feat(backend): bump crossterm to 0.13 - [`2233cdc`](https://github.com/fdehau/tui-rs/commit/2233cdc9cce34342eef778912d87e0121a734f4e) chore: add CI based on github actions - [`816bc9b`](https://github.com/fdehau/tui-rs/commit/816bc9b5c81f90e1f80dea7e651b68eb19f79bf3) style: fix formatting and clippy issues - [`a82c82f`](https://github.com/fdehau/tui-rs/commit/a82c82fcd7ca323642afa4fbb6bff99aa8ecec4f) fix(widgets): remove compilation warning in table widget - [`bb28d02`](https://github.com/fdehau/tui-rs/commit/bb28d022773d2d5ca89a9ac4800f620214731ad5) Update docs to point encourage installing 0.6 - [`94877f4`](https://github.com/fdehau/tui-rs/commit/94877f4e7e974d15fa3d64b02f7886e8d8e52af2) Use constraints for table column widths - [`3747ddb`](https://github.com/fdehau/tui-rs/commit/3747ddbefb1d4c838c857b7e063031543d8064d2) feat(backend): Refactor crossterm backend - [`42731da`](https://github.com/fdehau/tui-rs/commit/42731da5465f067699a01105d0ff397425592aa6) Enable build failure on compilation warnings - Additional commits viewable in [compare view](https://github.com/fdehau/tui-rs/compare/v0.6.2...v0.7.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=tui&package-manager=cargo&previous-version=0.6.2&new-version=0.7.0)](https://dependabot.com/compatibility-score.html?dependency-name=tui&package-manager=cargo&previous-version=0.6.2&new-version=0.7.0) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 14:50:22 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotify-tui#655
No description provided.