norn-cli 2.8.2 → 2.9.1
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.
- package/CHANGELOG.md +25 -0
- package/dist/cli.js +603 -135542
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "Norn" extension will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.9.1] - 2026-06-22
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **Windows PTY terminal packaging** - packaged VSIX builds now include the Windows `node-pty` `conpty.node` prebuilds, fixing Norn Terminal startup failures that reported `Failed to load native module: conpty.node`.
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Native PTY staging** - `vscode:prepublish` now stages the external `node-pty` runtime, stages available npm prebuilds by default, excludes Windows `.pdb` debug files from packages, and keeps explicit `--platform` / `--arch` staging available for platform-specific proof builds.
|
|
12
|
+
|
|
13
|
+
### Testing
|
|
14
|
+
- **Release verification** - `npm test` passed with 78 Extension Host tests. `npm run test:regression` ran 195 CLI regression sequences with 195 passing.
|
|
15
|
+
- **Website docs review** - no website changes were needed for this packaging-fix release.
|
|
16
|
+
|
|
17
|
+
## [2.9.0] - 2026-06-21
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- **Git status terminal bloom** - bare `git status` commands in Norn Terminal now render a status-first graph that shows upstream divergence, HEAD, working-tree buckets, conflicts, detached/unborn states, and preserved raw output fallback while leaving scoped status commands such as `git status -s`, pathspecs, and shell pipelines untouched.
|
|
21
|
+
- **Live Git status tile** - `:pin` / `:dash` can pin the latest Git status bloom into the terminal live rail, where it refreshes against the current working directory.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- **Terminal bloom documentation** - updated the website docs, local terminal guidance, and prototype notes for the Git status bloom behavior and limits.
|
|
25
|
+
|
|
26
|
+
### Testing
|
|
27
|
+
- **Release verification** - `npm test` passed with 78 Extension Host tests. `npm run test:regression` ran 195 CLI regression sequences with 195 passing.
|
|
28
|
+
- **Website docs review** - updated website docs for the Git status bloom and `npm run build` passed in the website repo.
|
|
29
|
+
|
|
5
30
|
## [2.8.2] - 2026-06-21
|
|
6
31
|
|
|
7
32
|
### Changed
|