@ictechgy/lterm 1.0.27 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.ko.md +10 -1
  2. package/README.md +10 -1
  3. package/package.json +5 -5
package/README.ko.md CHANGED
@@ -17,6 +17,15 @@
17
17
  > 전체 trust boundary와 audit policy는 [SECURITY.md](SECURITY.md)를 참고하세요.
18
18
  > Non-goals(의도적으로 지원하지 않는 항목)는 [docs/non-goals.md](docs/non-goals.md)를 참고하세요.
19
19
 
20
+ ## 현재 릴리스: 1.0.28
21
+
22
+ 1.0.28 릴리스는 현재 보안·성능 hardening 기본값을 유지하고, 배포 후 문서 갱신과 CI smoke-test 안정화를 함께 포함합니다.
23
+
24
+ - **더 안전한 helper lifecycle** — cmux/status helper timeout에서 process group을 정리하고 stale PID 재사용 위험을 낮췄습니다.
25
+ - **상한이 있는 report surface** — RPC payload, scrollback buffer, wait/watch scanner에 상한을 두어 daemon memory 사용을 예측 가능하게 유지하고, 지나치게 큰 wait needle은 미리 거부합니다.
26
+ - **chunk 경계를 넘는 sanitizer 정확성** — split input에서도 유효한 UTF-8 text를 보존하고, hidden-payload 계열 sequence까지 terminal-control filtering 상태를 chunk 경계 너머로 유지합니다.
27
+ - **회귀 테스트로 고정한 호환성** — release preflight, contract check, upgrade-matrix test, focused daemon test로 hardened behavior를 검증했습니다.
28
+
20
29
  ## 왜 tmux 대신 lterm인가요?
21
30
 
22
31
  풍부한 pane/window/layout 관리를 원하면 tmux가 맞습니다. `lterm`은 AI
@@ -78,7 +87,7 @@ GitHub에서 Cargo로 설치할 때는 release tag를 고정하세요. 아래
78
87
  README 릴리스 기준이며, 더 최신 tag가 있는지는 Releases 페이지에서 확인하세요:
79
88
 
80
89
  ```bash
81
- cargo install --locked --git https://github.com/ictechgy/light_terminal --tag v1.0.27
90
+ cargo install --locked --git https://github.com/ictechgy/light_terminal --tag v1.0.28
82
91
  ```
83
92
 
84
93
  저장소를 클론한 뒤 직접 빌드하려면 Rust 1.85 이상이 필요합니다.
package/README.md CHANGED
@@ -17,6 +17,15 @@
17
17
  > See [SECURITY.md](SECURITY.md) for the full trust-boundary and audit policy details.
18
18
  > Non-goals: see [docs/non-goals.md](docs/non-goals.md).
19
19
 
20
+ ## Current release: 1.0.28
21
+
22
+ The 1.0.28 release carries the current hardening defaults and publishes the post-release documentation plus CI smoke-test stabilization:
23
+
24
+ - **Safer helper lifecycle** — cmux/status helper timeouts now clean up process groups and avoid stale PID reuse.
25
+ - **Bounded report surfaces** — RPC payloads, scrollback buffers, and wait/watch scanners are capped so daemon memory stays predictable, and oversized wait needles are rejected up front.
26
+ - **Sanitizer correctness across chunks** — sanitized reports preserve valid UTF-8 while keeping terminal-control filtering state across split input, including hidden-payload style sequences.
27
+ - **Regression-backed compatibility** — release preflight, contract checks, upgrade-matrix tests, and focused daemon tests cover the hardened behavior.
28
+
20
29
  ## Why lterm instead of plain tmux?
21
30
 
22
31
  Use tmux when you want a full terminal multiplexer with rich pane/window/layout
@@ -81,7 +90,7 @@ With Cargo from GitHub, pin a release tag. The example below uses the current
81
90
  README release; check the Releases page for newer tags:
82
91
 
83
92
  ```bash
84
- cargo install --locked --git https://github.com/ictechgy/light_terminal --tag v1.0.27
93
+ cargo install --locked --git https://github.com/ictechgy/light_terminal --tag v1.0.28
85
94
  ```
86
95
 
87
96
  Building from this checkout requires Rust 1.85 or newer:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ictechgy/lterm",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "description": "Lightweight tmux-compatible terminal session daemon with cmux-friendly notifications.",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "homepage": "https://github.com/ictechgy/light_terminal#readme",
@@ -36,10 +36,10 @@
36
36
  "scripts/validate_npm_packages.mjs"
37
37
  ],
38
38
  "optionalDependencies": {
39
- "lterm-darwin-arm64": "1.0.27",
40
- "lterm-darwin-x64": "1.0.27",
41
- "lterm-linux-arm64": "1.0.27",
42
- "lterm-linux-x64": "1.0.27"
39
+ "lterm-darwin-arm64": "1.0.28",
40
+ "lterm-darwin-x64": "1.0.28",
41
+ "lterm-linux-arm64": "1.0.28",
42
+ "lterm-linux-x64": "1.0.28"
43
43
  },
44
44
  "engines": {
45
45
  "node": ">=16"