Conversation
Bump the version to 0.2.0 and promote the [Unreleased] changelog section to [0.2.0] - 2026-08-28.
Refresh the lockfile to the latest compatible versions and bump base64 from 0.22 to 0.23 (Engine/STANDARD API unchanged). notify stays on 8.x since 9.0 is only a pre-release.
The 0.9.18 in the lockfile is flagged by cargo-deny (invalid pointer dereference in the fmt::Pointer impl). 0.9.20 is the patched release.
Cutting a release promotes [Unreleased] into a dated version section, which correctly leaves [Unreleased] empty. The gate now also accepts a PR that adds a new '## [x.y.z]' section instead of demanding an [Unreleased] bullet.
fedonman
added a commit
that referenced
this pull request
Aug 28, 2026
Cuts the v0.2.0 release. Covers the full milestone: 16 roadmap items plus a dependency upgrade and CI fixes. ## Reliability - Restore the terminal on panic with an RAII guard and a chained panic hook. - Stop the file watcher from panicking on inotify limits or channel errors; failures now show in the widget. - Report background worker failures (input thread, job fetcher) instead of freezing the UI. ## Backend correctness - Show squeue and list-command failures in the flash bar instead of rendering an empty table. - Decode the %R (Reason) column, which was always blank. - Switch the squeue field separator from `|` to an ASCII control character so job names containing `|` no longer corrupt columns. - Remove the hardcoded normal/huge QoS fallback so the filter reflects the real cluster. ## UX - Follow/tail mode for stdout, stderr, and custom widgets (`f`, `End`, `Home`). - Configurable refresh interval (`+`/`-`, 1 to 60s, default 3s). - In-app help overlay listing all keybindings (`?`). - Consolidated regex filter pipeline; patterns validated once on load; `Shift+Tab` accepted regardless of reported modifier. - Clipboard copies report real success or failure; fixed a debug-build width underflow in the sidebar; job-detail cache now evicts least-recently-used entries. ## Testing and CI - Added a library target and an initial test suite: squeue argument building, job-state parsing, regex filtering, and fixture-based output decoding, with a round-trip guard that every displayable column is decoded. - Hardened the CI and release pipeline and corrected the MSRV in the changelog. ## Dependencies and CI fixes - Refreshed the lockfile to the latest compatible versions (ratatui 0.30.2, tokio 1.53, regex 1.13) and upgraded base64 to 0.23. notify stays on 8.x because 9.0 is only a pre-release. - Bumped crossbeam-epoch to 0.9.20 for RUSTSEC-2026-0204. - Fixed the changelog CI gate so it passes on release PRs, which correctly leave [Unreleased] empty.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cuts the v0.2.0 release. Covers the full milestone: 16 roadmap items plus a dependency upgrade and CI fixes.
Reliability
Backend correctness
|to an ASCII control character so job names containing|no longer corrupt columns.UX
f,End,Home).+/-, 1 to 60s, default 3s).?).Shift+Tabaccepted regardless of reported modifier.Testing and CI
Dependencies and CI fixes