Skip to content

Commit c9437c6

Browse files
committed
release: v1.4.2
- Fix terminal escape sequence responses displayed on first prompt when starting tmux (#90) - Fix paste not working in PTY sessions (#89) - Bump dependencies to latest versions
1 parent 63d8481 commit c9437c6

6 files changed

Lines changed: 51 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to bssh will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.2] - 2025-12-16
9+
10+
### Fixed
11+
- **PTY Session Terminal Handling** (PR #90)
12+
- Fixed terminal escape sequence responses displayed on first prompt when starting tmux
13+
- Improved terminal compatibility with multiplexers
14+
- **PTY Session Paste** (PR #89)
15+
- Fixed paste not working in PTY sessions
16+
- Improved clipboard/paste functionality in interactive terminal sessions
17+
18+
### Changed
19+
- **Dependencies**
20+
- Bumped dependencies to latest versions for security and compatibility
21+
822
## [1.4.1] - 2025-12-16
923

1024
### Added
@@ -499,6 +513,7 @@ None
499513
- russh library for native SSH implementation
500514
- Cross-platform support (Linux and macOS)
501515

516+
[1.4.2]: https://github.com/lablup/bssh/compare/v1.4.1...v1.4.2
502517
[1.4.1]: https://github.com/lablup/bssh/compare/v1.4.0...v1.4.1
503518
[1.4.0]: https://github.com/lablup/bssh/compare/v1.3.0...v1.4.0
504519
[1.3.0]: https://github.com/lablup/bssh/compare/v1.2.2...v1.3.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bssh"
3-
version = "1.4.1"
3+
version = "1.4.2"
44
authors = ["Jeongkyu Shin <inureyes@gmail.com>"]
55
description = "Parallel SSH command execution tool for cluster management"
66
license = "Apache-2.0"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,6 +1194,7 @@ See the [LICENSE](./LICENSE) file for details.
11941194
## Changelog
11951195

11961196
### Recent Updates
1197+
- **v1.4.2 (2025/12/16):** Fix terminal escape sequence responses displayed on first prompt when starting tmux, fix paste not working in PTY sessions, bump dependencies
11971198
- **v1.4.1 (2025/12/16):** Add comprehensive TUI/streaming tests (84 new tests), extend password fallback for SSH agent auth failures, add TUI module documentation
11981199
- **v1.4.0 (2025/12/15):** Add --sudo-password flag for automated sudo authentication, password fallback with improved SSH debugging, developer tooling (githooks)
11991200
- **v1.3.0 (2025/12/10):** Add interactive TUI with 4 view modes (Summary/Detail/Split/Diff), multi-node stream management, and fix terminal escape sequence filtering in PTY sessions

debian/changelog

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
bssh (1.4.2-1~jammy1) jammy; urgency=medium
2+
3+
* v1.4.2
4+
### New Features
5+
None
6+
7+
### Improvements
8+
None
9+
10+
### Bug Fixes
11+
- **PTY Session Fixes**: Fixed terminal escape sequence responses and paste functionality
12+
- Fixed terminal escape sequence responses displayed on first prompt when starting tmux (#90)
13+
- Fixed paste not working in PTY sessions (#89)
14+
15+
### CI/CD Improvements
16+
None
17+
18+
### Technical Details
19+
- Terminal handling improvements for PTY sessions
20+
- Better compatibility with tmux and terminal multiplexers
21+
22+
### Dependencies
23+
- Bumped dependencies to latest versions
24+
25+
### Breaking Changes
26+
None
27+
28+
### Known Issues
29+
None
30+
31+
-- Jeongkyu Shin <inureyes@gmail.com> Mon, 16 Dec 2025 00:00:00 +0900
32+
133
bssh (1.4.1-1~jammy1) jammy; urgency=medium
234

335
* v1.4.1

docs/man/bssh.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for bssh
22
.\" Contact the maintainers to correct errors or typos.
3-
.TH BSSH 1 "December 2025" "v1.4.1" "bssh Manual"
3+
.TH BSSH 1 "December 2025" "v1.4.2" "bssh Manual"
44

55
.SH NAME
66
bssh \- Broadcast SSH - SSH-compatible client with parallel execution capabilities

0 commit comments

Comments
 (0)