Conversation
…mux_bin why: Pick up three libtmux releases (0.53.1, 0.54.0, 0.55.0) bringing structured logging, new Pane API, configurable tmux binary, and several bug fixes that improve error propagation. what: - Bump libtmux dependency specifier ~=0.53.0 -> ~=0.55.0 in pyproject.toml - Update uv.lock (resolved 0.53.1 -> 0.55.0) libtmux 0.55.0 (2026-03-07): - Pane.set_title() wraps select-pane -T; pane_title added to format queries - Server(tmux_bin=) threads custom binary through all commands and version checks - Pre-execution DEBUG logging in tmux_cmd with structured extra - TmuxCommandNotFound raised consistently for invalid tmux_bin paths libtmux 0.54.0 (2026-03-07): - Structured lifecycle logging (INFO) across Server, Session, Window, Pane - NullHandler in __init__.py; lazy %s formatting; isEnabledFor guards - Window.rename_window() now raises on failure instead of swallowing - Server.kill() captures stderr, handles "no server running" gracefully - Server.new_session() checks kill-session stderr - Session.kill_window() target formatting fix (session_name, not window_name) libtmux 0.53.1 (2026-02-18): - Fix race condition in new_session() by avoiding list-sessions query Release: https://github.com/tmux-python/libtmux/releases/tag/v0.55.0 CHANGES: https://github.com/tmux-python/tmuxp/blob/v1.64.1/CHANGES#tmuxp-1641-2026-03-08 Changelog: https://libtmux.git-pull.com/history.html#libtmux-0-55-0-2026-03-07
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1019 +/- ##
=======================================
Coverage 80.32% 80.32%
=======================================
Files 28 28
Lines 2430 2430
Branches 462 462
=======================================
Hits 1952 1952
Misses 357 357
Partials 121 121 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
why: Document the dependency bump for the upcoming release. what: - Add Development entry for libtmux ~=0.53.0 -> ~=0.55.0 bump - Summarize key upstream changes across three releases
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.
Summary
~=0.53.0to~=0.55.0inpyproject.tomlUpstream highlights
Pane.set_title()API,Server(tmux_bin=)for custom binary, pre-execution DEBUG logging intmux_cmd,TmuxCommandNotFoundfor invalid pathsNullHandler+ lazy formatting,Window.rename_window()raises on failure,Server.kill()handles "no server running" gracefully,Session.kill_window()target fixnew_session()by avoidinglist-sessionsqueryVerification
Full test suite passes against libtmux 0.55.0:
$ uv run py.test tests/ -xTest plan
uv run py.test tests/ -x— full suite passes with no regressionsuv run ruff check .— no lint issuesuv run mypy— type checking passesReferences