norn-cli 1.12.0 → 1.13.0
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 +18 -0
- package/dist/cli.js +543 -525
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ All notable changes to the "Norn" extension will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [1.13.0] - 2026-04-26
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- **Cached API Response IntelliSense (VS Code)**:
|
|
11
|
+
- Added sampled response-shape caching in `.norn-cache/api-response-intellisense.json` after successful `Send Request` and `Run Sequence` runs.
|
|
12
|
+
- Added cached property completions for `$N.body.` and captured response variables such as `user.body.`, including nested object paths.
|
|
13
|
+
- Added source-aware and environment-aware response-shape reuse for later body-path authoring in the editor.
|
|
14
|
+
|
|
15
|
+
### Improved
|
|
16
|
+
- **Response Authoring and Diagnostics (VS Code)**:
|
|
17
|
+
- Improved response-property completions so partial property names filter correctly for captured responses, body paths, and common headers.
|
|
18
|
+
- 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.
|
|
19
|
+
- Added clearer print diagnostics when a plain word is interpreted as an undefined variable instead of a quoted string literal.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- **Website Docs**:
|
|
23
|
+
- Added website docs for cached response-body IntelliSense, cache privacy boundaries, and the VS Code sequence authoring workflow.
|
|
24
|
+
|
|
7
25
|
## [1.12.0] - 2026-04-20
|
|
8
26
|
|
|
9
27
|
### Added
|