ratatui / ratatui-macros

Macros for simplifying boilerplate for creating UI using Ratatui.
https://ratatui.rs
MIT License
28 stars 2 forks source link

build(deps): bump ratatui from 0.26.0-alpha.1 to 0.26.2-alpha.0 #15

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 8 months ago

Bumps ratatui from 0.26.0-alpha.1 to 0.26.2-alpha.0.

Release notes

Sourced from ratatui's releases.

v0.26.2-alpha.0

v0.26.2-alpha.0 - 2024-02-17

Features

  • 11b452d (layout) Mark various functions as const (#951)

  • 12f67e8 (uncategorized) Impl Widget for &str and String (#952)

    Currently, `f.render_widget("hello world".bold(), area)` works but
    `f.render_widget("hello world", area)` doesn't. This PR changes that my
    implementing `Widget` for `&str` and `String`. This makes it easier to
    render strings with no styles as widgets.
    

    Example usage:

    terminal.draw(|f| f.render_widget("Hello World!", f.size()))?;
    

Miscellaneous Tasks

  • b0314c5 (uncategorized) Remove conventional commit check for PR (#950)

    This removes conventional commit check for PRs.
    

    Since we use the PR title and description this is useless. It fails a lot of time and we ignore it.

    IMPORTANT NOTE: This does not mean Ratatui abandons conventional commits. This only relates to commits in PRs.

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. ✨

... (truncated)

Commits


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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@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[bot] commented 8 months ago

Superseded by #16.