norn-cli 1.12.0 → 1.13.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/dist/cli.js +1634 -1773
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,40 @@ All notable changes to the "Norn" extension will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [1.13.1] - 2026-04-28
8
+
9
+ ### Improved
10
+ - **MCP Tool Discovery Display (VS Code)**:
11
+ - Replaced raw JSON rendering for `run mcp list` steps in the response panel with a readable tool directory showing names, descriptions, parameter metadata, required markers, and structured-output badges.
12
+ - Kept the underlying captured `tools` value unchanged for assertions, runtime variables, reports, and CLI parity.
13
+
14
+ - **Variable IntelliSense (VS Code)**:
15
+ - Added sequence-local variables and sequence parameters to `{{...}}` interpolation completions, including single-brace partial typing such as `{s`.
16
+ - Added completion fallback for `.nornenv` variable names when no active environment is selected.
17
+ - Fixed completion replacement ranges so selected interpolation suggestions apply on the current cursor line.
18
+
19
+ ### Fixed
20
+ - **Norn API IntelliSense (VS Code)**:
21
+ - Fixed `.nornapi` block detection so top-level `headers` suggestions appear after `end endpoints`, while header-name suggestions still work inside `headers ... end headers` blocks.
22
+
23
+ ## [1.13.0] - 2026-04-26
24
+
25
+ ### Added
26
+ - **Cached API Response IntelliSense (VS Code)**:
27
+ - Added sampled response-shape caching in `.norn-cache/api-response-intellisense.json` after successful `Send Request` and `Run Sequence` runs.
28
+ - Added cached property completions for `$N.body.` and captured response variables such as `user.body.`, including nested object paths.
29
+ - Added source-aware and environment-aware response-shape reuse for later body-path authoring in the editor.
30
+
31
+ ### Improved
32
+ - **Response Authoring and Diagnostics (VS Code)**:
33
+ - Improved response-property completions so partial property names filter correctly for captured responses, body paths, and common headers.
34
+ - Added undefined-base-variable diagnostics for bare `assert`, `if`, `return`, `print`, and property-assignment expressions without flagging runtime-shaped JSON paths when the base variable exists.
35
+ - Added clearer print diagnostics when a plain word is interpreted as an undefined variable instead of a quoted string literal.
36
+
37
+ ### Changed
38
+ - **Website Docs**:
39
+ - Added website docs for cached response-body IntelliSense, cache privacy boundaries, and the VS Code sequence authoring workflow.
40
+
7
41
  ## [1.12.0] - 2026-04-20
8
42
 
9
43
  ### Added