mirro-rs icon indicating copy to clipboard operation
mirro-rs copied to clipboard

fix(deps): update tui

Open renovate[bot] opened this issue 1 year ago • 1 comments

This PR contains the following updates:

Package Type Update Change
ratatui (source) dependencies minor 0.28.0 -> 0.29.0
tui-logger dependencies minor 0.13.0 -> 0.17.0

Release Notes

ratatui/ratatui (ratatui)

v0.29.0

Compare Source

0.30.0-alpha.1 is a pre-release of the upcoming 0.30.0 release. It is intended for testing and feedback. Please report any issues you encounter. The primary change is that we've split the crate into multiple crates. The main crate is now ratatui-core and the widgets are in ratatui-widgets. This allows for widget crates to depend on a stable core crate, and for the core crate to be used without widgets.

Features
Bug Fixes
Refactor
Documentation
Miscellaneous Tasks
Continuous Integration
New Contributors

Full Changelog: https://github.com/ratatui/ratatui/compare/v0.29.0...0.30.0-alpha.1

gin66/tui-logger (tui-logger)

v0.17.4

Compare Source

Fixed
  • fix lifetime warning in demo.rs
  • fix cargo clippy warnings by opencode+grok
  • fix documentation
  • fix README, which is controlled by lib.rs
Other
  • run cargo fmt
  • resolve lifetime warnings as proposed by compiler
  • resolve security warning for fxhash by eliminating it (#​91)
  • Create FUNDING.yml

v0.17.3

Compare Source

Other
  • update Readme
  • add ai generated documentation reference
  • add attributes of the current span for tracing subscriber (#​90)
  • work on Readme

v0.17.2

Compare Source

Other
  • update README
  • Fix invalid docs for TuiTracingSubscriverLayer (#​87)

v0.17.1

Compare Source

Other
  • run cargo fmt
  • use env_filter for configuration by environment variable as proposed by #​86
  • remove stray comment line in tests

v0.17.0

Compare Source

Other
  • file/module_path/line are now Option, because log::Record defines them as such, too

v0.16.0

Compare Source

Other
  • ExtLogRecord stores for file and module_path their static strings, if available. In addition provides module_path getter
  • provide accessors for the strings
  • update DEV_NOTES

v0.15.0

Compare Source

Fixed
  • fix bug with page up at top
Other
  • lib.rs factoring complete
  • refactor TuiLoggerError out of lib.rs
  • refactor TuiLogger API out of lib.rs
  • refactor TuiLogger out of lib.rs
  • refactor LevelConfig out of lib.rs
  • refactor TuiLoggerTargetWidget out of lib.rs
  • reduce visibility of internal structures
  • add test case for log message being larger than widget
  • turn off debugging
  • add test case with standard formatter
  • add test with wrapped lines
  • disable println in lib code with render_debug switch
  • intermediate version with debug prints
  • circular buffer allows absolute indexing
  • test cases for standard widget display and scroll

v0.14.5

Compare Source

Other
  • update Changelog and Readme
  • Made target width also use unicode_segmentation
  • Use unicode-segmentation for splitting chars
  • Split lines safely
  • change &mut to & reference in TuiWidgetState.transition as #​83
  • Update mermaid diagram in README.md
  • Update lib.rs for readme change
  • Update README.md
  • Update README.md with mermaid diagram
  • rename dev_notes.md
  • cleanup files in doc
  • udpate readme
  • new demo of the widget using vhs
  • rename cargo test workflow
  • remove stray space in github action

v0.14.4

Compare Source

Fixed
  • fix cargo test
Other
  • update Readme for custom formatter example in demo
  • example demo extended to use custom formatter in one of the widgets
  • run cargo test in github actions

v0.14.3

Compare Source

Other
  • work on Readme and add formatter() to smartwidget
  • standard formatter appears to work as before, but using Line/Span
  • assure LogFormatter Send+Sync
  • implement formatter trait as discussed in #​77 and #​82

v0.14.2

Compare Source

Fixed
  • fix warnings
Other
  • split lib.rs into several files

  • Merge pull request #​77 from tofubert/add_style_for_file

  • Merge pull request #​78 from andrei-ng/fix-order-of-fields-tracing-feature

  • Merge pull request #​79 from andrei-ng/skip-printing-message-key

  • use env::temp_dir for demo log file target

  • do not print the 'message' key in the formatter for tracing support

  • fix formatter for tracing events

  • make comment for file logging a bit better

  • give file logging format options

  • Update CHANGELOG.md

0.14.1:

  • re-export log::LevelFilter

0.14.0:

  • Update version of ratatui

0.13.2:

  • fix tracing support

0.13.1:

  • fix missing move_events() on half full buffer in case hot buffer capacity was odd

0.13.0:

  • move_events() is not published anymore, but called by a cyclic internal task. This task is called by timeout (10ms) unless the hot buffer is half full.
  • init_logger() returns now Result<(), TuiLoggerError>

0.12.1:

  • fix for issue #​69: avoid unwrap panic by using default level
  • add set_buffer_depth() to modify circular buffer size

0.12.0:

  • update ratatui to 0.28

0.11.2:

  • update ratatui to 0.27

0.11.1:

  • one line error report for demo example, if feature flag crossterm or termion not given
  • use cargo readme and test in github build
  • Fix of issue #​60: panic on too small widget size

0.11.0:

  • BREAKING CHANGE: TuiWidgetEvent::transition() method now takes a TuiWidgetEvent by value instead of by reference.
  • update ratatui to 0.25

0.10.1:

  • update ratatui to ^0.25.0

0.10.0:

0.9.6:

  • update ratatui to 0.23.0

0.9.5:

  • rework examples/demo to not use termion

0.9.4:

  • fix breaking change in 0.9.3 as reported by issue #​43

0.9.3:

  • update to ratatui 0.22 and fix clippy warnings

0.9.2:

  • update to ratatui 0.21

0.9.1:

  • Implement Eq for TuiWidgetEvent
  • suppport border_type() for TuiLoggerSmartWidget
  • Disable default features of chrono to avoid import of time v0.1.x

0.9.0:

  • support for tracing-subscriber
  • add optional ratatui support as proposed by (#​32)
  • slog is NOT a default feature anymore. Enable with slog-support

0.8.3:

  • Make TuiWidgetState.set_default_display_level() work for TuiLoggerWidget (#​30)

0.8.2:

  • Allow TuiLoggerWidget to be controlled with TuiWidgetState by calling state() builder function (#​30)
  • Extend demo for an example for this TuiLoggerWidget control

0.8.1:

  • Update to tui-rs 0.19 and slog to 2.7.0

0.8.0:

  • Update to tui-rs 0.18

0.7.1:

  • Update to tui-rs 0.17

0.7.0:

  • Update rust edition in Cargo.toml to 2021
  • Fix all warnings from cargo clippy
  • new function for TuiWidgetState to set the default display level - not impacting the recording
      set_default_display_level(self, levelfilter: LevelFilter) -> TuiWidgetState
    
  • changed signature for TuiWidgetState function from
      set_level_for_target(&self, target: &str, levelfilter: LevelFilter) -> &TuiWidgetState
    
    to
      set_level_for_target(self, target: &str, levelfilter: LevelFilter) -> TuiWidgetState
    

0.6.6:

  • Add functions to format output of log data as discussed in issue #​19 The functions are with their default values:
    output_separator(':')
    output_timestamp(Some("%H:%M:%S".to_string()))
    output_level(Some(TuiLoggerLevelOutput::Long))
    output_target(true)
    output_file(true)
    output_line(true)
    

0.6.5:

  • Use thread safe counterparts for Rc/RefCell

0.6.4:

  • Bump version up for update to tui 0.16

0.6.3:

  • Removed verbose timestamp info log (issue #​16)

0.6.2:

  • Fix by Wuelle to avoid panic on line wrapping inside a utf8 character

0.6.1:

  • Changes in README

0.6.0:

  • Support Scrollback in log history with TuiWidgetEvent::PrevPageKey, NextPageKey and EscapeKey
  • log and target panes' title can be set via .title_log(String) and .title_target(String)

0.5.1:

  • TuiWidgetEvent is now Debug, Clone, PartialEq, Hash

0.5.0:

  • Remove dispatcher completely
  • Get rid of dependency to termion and crossterm
  • KeyCommands to be translated by the application into KeyEvents for TuiWidgetState::transition()

v0.14.1

Compare Source

v0.14.0

Compare Source

v0.13.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • [ ] If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] avatar Oct 21 '24 06:10 renovate[bot]

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/mirro-rs/Cargo.toml --package [email protected] --precise 0.29.0
error: failed to acquire package cache lock

Caused by:
  failed to open: /home/ubuntu/.cargo/.package-cache

Caused by:
  failed to create directory `/home/ubuntu/.cargo`

Caused by:
  File exists (os error 17)

renovate[bot] avatar Sep 25 '25 19:09 renovate[bot]