misc/sesh: Update to 2.28.0
Picker TUI gains preview pane, custom icons, index jumping and session
aliases.
Changes since 2.27.0:
- fix: remove placeholder debug log statements from main()
- feat: enrich tmux session names with GitHub issue titles
- fix: create wildcard windows when connecting from outside tmux
- Fix wildcard matching for relative connect paths
- fix(shell): run preview_command through the shell so operators like &&
work
- Show window names in the picker
- Session aliases with optional auto-connect
- Add an opt-in preview pane to the picker TUI
- fix(picker): cap the fuzzy length penalty so long names can rank first
- Picker TUI: #{1-9} index jump and a --query prefill flag
- Support custom icons for configured sessions and wildcards in the picker
py-tmuxp: update to 1.74.0
User-visible changes since 1.67.0:
1.74.0 tmuxp debug-info reports the full tmux version, keeping the
point-release letter (3.7a) it used to normalize away.
1.73.0 Workspaces can select a third-party builder with the
workspace_builder key; new workspace_builder_options with
pane_readiness: auto|always|never. The new default, auto,
waits for the shell prompt only under zsh -- previously it
waited everywhere.
1.72.0 tmux 3.7 features (floating panes, new options, format
variables and command flags) reachable from the Python API
and tmuxp shell. YAML workspace format unchanged.
1.71.0 tmux 3.7 supported; no change for older tmux.
1.70.1 Fix: the pytest plugin failed to import under pytest 9.1,
breaking test collection for users of tmuxp's fixtures.
1.70.0 Fix: session and window listing could silently return empty
results under a non-UTF-8 locale.
[3 lines not shown]
py-libtmux: Update to 0.61.0
0.61.0 (2026-07-04) -- hardening for the tmux 3.7 patch line.
- Pane.break_pane() no longer names the broken-out window "libtmux" on
tmux 3.7a/3.7b when no window_name is given; tmux's own default
(usually the running command) is kept.
- New libtmux.common.get_version_str(), returning the raw tmux version
string with the point-release suffix ("3.7a") that get_version()
strips for numeric comparison.
- The test suite now passes against tmux 3.7a and 3.7b. A window-name
test had assumed the ":"/"." rejection introduced in 3.7, which tmux
reverted in 3.7a.
0.60.0 (2026-06-28) -- completes tmux 3.7 feature parity. Every 3.7-only
surface is version-gated, so tmux 3.2a-3.6 keep working unchanged.
- Floating panes via Window.new_pane() and Pane.new_pane(): a pane that
sits above the tiled layout like a popup but behaves like a real pane.
[17 lines not shown]
py-tox: updated to 4.60.0
Features - 4.60.0
Add {home} and {tox_root_name} substitutions; set work_dir to e.g. "{home}/.local/state/tox/{tox_root_name}" to keep environments outside of the project tree - by @WhyNotHugo.
Bug fixes - 4.60.0
Provision the requested tox version before reading env_list, allowing configuration syntax introduced by that version - by @CAOShurong
Improved documentation - 4.60.0
Fix nine source-code links in the onboarding guide that pointed at paths which no longer exist, and correct the class names of the TOML configuration sources and loaders they refer to - by @Yusuf-Gadelrab.
py-django-q2: updated to 1.11.0
1.11.0
- AttributeError when start_event is None, and guard process faster stop
- Add croniter as optional extra.
- Migrate poetry to uv
- Add support for python 3.13 and 3.14
- Add django 6.1 support
- Postpone SECRET_KEY evaluation to the qcluster command execution
py-uv py-uv-build: updated to 0.12.5
0.12.5
Python
Add CPython 3.10.21, 3.11.16, and 3.12.14
Prefer newer versions and standard variants when selecting between equally prioritized Python interpreters
Enhancements
Simplify errors and hints for invalid editable requirements, and redact credentials in requirement URLs
Preview features
Allow --index and --default-index to select configured package indexes by name with the index-by-name preview feature
Include distribution artifact URLs and hashes in CycloneDX SBOM exports by default
Fall back to logical file sizes when using cache-physical-space on filesystems that do not support physical-space accounting
[3 lines not shown]
devel/gitpane: update to 0.12.0
[0.12.0] - 2026-08-17
Added
p pulls and P pushes the selected repo or worktree from anywhere, lazygit-style, and the GitHub panel toggle moved from p to =. Modified keys (Ctrl/Alt combinations) never trigger the repo-mutating shortcuts, and the reserved-key documentation covers the new bindings. Thanks @expoli.
Sleep-when-hidden now also applies outside tmux, superseding the v0.11.0 note that outside-tmux behavior was unchanged. With watch.sleep_when_hidden = true (the default), a session with no input for watch.doze_after_secs (default 120) drops to deep sleep: periodic polling, fetching, and watcher-driven refreshes all pause until the next input. Any deliberate input counts as presence (keys, mouse clicks and scrolls, paste, resize, focus changes), the idle timer wakes exactly once at the deadline instead of polling every 3 seconds, and the probe reports its state immediately on startup so a resumed session never sits stale. Thanks @expoli.
Fixed
Pull and push no longer hard-code origin. A branch with a configured upstream or push remote runs bare, so git's own config decides the destination, including renamed upstream branches; otherwise gitpane resolves the repo's real remote (origin when present, else the workspace's own remote, as in Gerrit and mirror setups). Submodule update-to-latest, GitHub owner/repo detection, and the review launcher's default-branch base follow the same resolution. Thanks @expoli.
Quitting no longer hangs for tens of seconds while in-flight status queries drain on a large workspace. Mutating operations (pull, push, submodule updates) still complete before exit, with a status-bar notice and a second q as the force-quit escape, and a panic no longer reintroduces the hang or interrupts an in-flight pull mid-write. Thanks @expoli.
Pasting no longer copies the clipboard content an extra time per paste event.