norn-cli 1.6.2 → 1.8.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/cli.js +83944 -574
  3. package/package.json +29 -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.7.0] - 2026-03-07
8
+
9
+ ### Added
10
+ - **Explicit Environment Lookup (Extension + CLI)**:
11
+ - Added `{{$env.name}}` so tests, sequences, endpoints, header groups, and interpolated strings can read directly from the active environment even when a file variable, local variable, or sequence parameter uses the same name.
12
+ - Added IntelliSense for the `$env` namespace and environment variable suggestions after typing `{{$env.`.
13
+ - Added diagnostics for invalid `{{$env...}}` references and warnings when local/file/parameter variables shadow environment variables.
14
+
15
+ ### Fixed
16
+ - **Assertion String Literal Escaping**:
17
+ - Fixed escaped quotes in assertion string literals and quoted `var` expressions so values like `\"{orderId}\"` compare correctly instead of failing with visually identical expected/actual output.
18
+
19
+ - **Parameterized Test Snippet UX**:
20
+ - Updated `@data` completion to insert `data()` with the cursor inside the parentheses instead of placeholder values.
21
+
22
+ - **Decorator Syntax Highlighting**:
23
+ - Fixed `.norn` syntax coloring so decorator lines such as `@data(...)` keep their highlighting when they follow request blocks like `DELETE ...`.
24
+
7
25
  ## [1.6.2] - 2026-03-07
8
26
 
9
27
  ### Fixed