norn-cli 1.1.2 → 1.1.4

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to the "Norn" extension will be documented in this file.
4
4
 
5
+ ## [1.1.4] - 2026-02-02
6
+
7
+ ### Fixed
8
+ - **Inline comments**: Fixed syntax highlighting and execution for inline comments
9
+ - **URL highlighting**: URLs now colored as strings with variable interpolation support
10
+ - **Duplicate detection**: Diagnostics for duplicate variables, named requests, and sequences
11
+
12
+ ## [1.1.3] - 2026-02-01
13
+
14
+ ### Fixed
15
+ - **@data shorthand for single parameter**: `@data(1, 2, 3)` with a single parameter now correctly creates 3 test cases instead of 1 case with 3 values
16
+ - Example: `@data(1, 2, 3) test sequence Foo(id)` now runs 3 times with `id=1`, `id=2`, `id=3`
17
+ - Multi-parameter syntax unchanged: `@data(1, "a")` per line for each test case
18
+
5
19
  ## [1.1.2] - 2026-02-01
6
20
 
7
21
  ### Added