tui-td 0.2.10 → 0.2.12

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3eb2dc4db4af2ddbcbe377f8a3d6bddf8e1a45f3c78c85a25d8480d1e740e9f7
4
- data.tar.gz: 31a65006ceb299ba4487446932bf74305ecb92d4241288f82d7d11a0283e6bf6
3
+ metadata.gz: 98d74d9d7481eabaca77e302ae6e86e1c0467222ebeabb26320fc4668c96af72
4
+ data.tar.gz: a666b663abf34a08b08c31e57b0348ae00020f304a6296012a027a26fbbb69a9
5
5
  SHA512:
6
- metadata.gz: 706d849d8c35380fabf149bcf6cee5441d92a71b228d7ac4bc0bbba3852be4443496d9d6ae79afd15daa5217b9ede798d6ce2d15dee2cbeb5f6a0901b5269722
7
- data.tar.gz: 9595ce52cd78959dfb49f314d3272d6cf2c065dd215467e204c862b48da2a88525ab8a9dad0ab98ccdd7b7fc142e700eab4ca65ea6a8c2b90d53aefbe8eca922
6
+ metadata.gz: 22485763c32cac98cb98f8a2b4f2aaf8656c4955c97a28ff7cfdc3a3c2f82252c0b079c75630bb6d0e1ebd21a5c65d5f042be4c20e566502b6d747b88304a95d
7
+ data.tar.gz: e3d209ca2706c701efaf6e98af5d46af21ce7f1772aa0fe1a2ddbe9858442380f866883ac5c8948bb66d447843987e7ba7bfb77a6cc2aa08a6363d09deaa0320
data/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.2.12
4
+
5
+ ### Security
6
+
7
+ - Command injection prevention: use Shellwords.shellsplit + array form of PTY.spawn
8
+ - Environment variable sanitization: block dangerous vars (PATH, LD_PRELOAD, etc.)
9
+ - Path traversal prevention: validate output paths for screenshot/HTML
10
+ - ReDoS prevention: add regex timeout in find_text
11
+
12
+ ### Fixed
13
+
14
+ - ANSI erase operations (ED/EL) now reset all cell attributes (fg, bg, bold, italic,
15
+ underline), not just the character — colors and styles no longer leak across lines
16
+
17
+ ### Architecture
18
+
19
+ - Extract ANSIParser, ANSIUtils, and State into standalone tans-parser gem (v0.1.0)
20
+ - Add tans-parser as a runtime dependency (~>0.1)
21
+ - Replace extracted unit tests with forwarder integration smoke tests
22
+
23
+ ## 0.2.11
24
+
25
+ - Add RuboCop (rubocop-rake, rubocop-rspec), Reek, and Bundler-Audit linters
26
+ - Pre-commit hook runs all three checks automatically
27
+ - Fix dead code after `raise` in test_runner.rb
28
+ - Rename `is_cursor?` to `cursor_at?` in html_renderer.rb
29
+ - Merge duplicate `describe "#find_text"` blocks in state_spec.rb
30
+ - Fix ANSI parser `FormatStringToken` warnings
31
+
3
32
  ## 0.2.10
4
33
 
5
34
  - Three new MCP tools: `tui_wait_for_exit` (wait for process to end), `tui_exit_status` (get exit code), `tui_find_text` (search terminal state for text/regex matches)