norn-cli 2.0.1 → 2.2.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/.kanbn/index.md CHANGED
@@ -21,6 +21,7 @@ completedColumns:
21
21
  - [finalise-the-one-line-pitch](tasks/finalise-the-one-line-pitch.md)
22
22
  - [make-a-list-of-10-people-to-speak-to](tasks/make-a-list-of-10-people-to-speak-to.md)
23
23
  - [prepare-your-customer-interview-questions](tasks/prepare-your-customer-interview-questions.md)
24
+ - [use-the-shiplight-website-as-a-template-to-improve-norn-website](tasks/use-the-shiplight-website-as-a-template-to-improve-norn-website.md)
24
25
 
25
26
  ## In Progress
26
27
 
@@ -0,0 +1,9 @@
1
+ ---
2
+ created: 2026-04-30T21:13:26.675Z
3
+ updated: 2026-04-30T21:13:26.669Z
4
+ assigned: ""
5
+ progress: 0
6
+ tags: []
7
+ ---
8
+
9
+ # Use the shiplight website as a template to improve norn website
package/CHANGELOG.md CHANGED
@@ -4,6 +4,55 @@ All notable changes to the "Norn" extension will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [2.2.0] - 2026-05-09
8
+
9
+ ### Added
10
+ - **Starter Catalogue (VS Code)**:
11
+ - Added a Project Setup starter catalogue in the sidebar with a Back button and readable stacked sample titles/descriptions.
12
+ - Added Explorer folder context-menu parity for opening the same starter catalogue.
13
+ - Added self-contained generated starter folders for simple requests, scripts plus JSON data, a runnable SQL demo, a real SQL connection starter, and an advanced end-to-end flow with `.nornenv`, `.nornapi`, helper sequences, tests, and schema contracts.
14
+
15
+ ### Fixed
16
+ - **Environment Template Diagnostics (VS Code)**:
17
+ - Allowed `.nornenv` variables such as `{{primaryUserId}}` and `{{postTitle}}` in assertion and condition expression contexts when those values are intentionally resolved from the environment file.
18
+ - Kept the bare-variable diagnostic for local, file, and sequence variables so runtime values are still read directly in expressions.
19
+
20
+ - **Sequence Argument Resolution (Extension + CLI)**:
21
+ - Resolved bare variable paths such as `user.id` and array-indexed paths such as `todosResponse.body[0]` before binding `run SomeSequence(...)` parameters.
22
+ - Fixed advanced schema-validation flows where unresolved literal argument text could produce empty responses and misleading `matchesSchema` object errors.
23
+
24
+ ### Changed
25
+ - **Website Docs and Skills**:
26
+ - Updated website VS Code docs for the starter catalogue, self-contained samples, SQL starter split, advanced flow, and Explorer context-menu behavior.
27
+ - Added starter-catalog maintenance guidance and updated value-resolution guidance for sequence argument binding.
28
+
29
+ ## [2.1.0] - 2026-05-08
30
+
31
+ ### Improved
32
+ - **Contract Validation Results (Extension + CLI)**:
33
+ - Replaced raw `matchesSchema` assertion text in CLI, Test Explorer, and Response Panel output with schema names and property/path-level validation counts.
34
+ - Added richer Response Panel contract cards with validation pills, validated-property details, concise issue summaries, warning-only styling, and direct `View Contract Details` navigation.
35
+ - Added a validated-properties tab and `Back to Results` navigation to Contract Details.
36
+
37
+ - **`.nornapi` Authoring (VS Code)**:
38
+ - Added diagnostics for unresolved endpoint variables such as `{{baseUrl}}` when the nearest `.nornenv` file does not define them.
39
+ - Added active-environment diagnostics for `{{$env.name}}` references in endpoint URLs and header groups.
40
+ - Updated `.nornapi` syntax highlighting so `{{...}}` interpolation matches `.norn` coloring while path parameters such as `{id}` stay distinct.
41
+
42
+ ### Fixed
43
+ - **Response Panel Stability**:
44
+ - Fixed contract-result rendering paths that could leave the sequence response panel stuck on the initial spinner or after returning from Contract Details.
45
+ - Preserved the completed result header styling when rebuilding result pages for contract navigation.
46
+
47
+ - **Contract Validation Noise**:
48
+ - Suppressed Ajv warnings for OpenAPI numeric formats such as `int32`, `int64`, `float`, and `double`.
49
+ - Cleaned up Contract Details display for root-level and missing-property errors so it no longer shows placeholder paths or fake missing actual values.
50
+ - Removed the extension activation debug log from the VS Code debug console.
51
+
52
+ ### Changed
53
+ - **Website Docs**:
54
+ - Updated website documentation and the website `.nornapi` grammar copy for the new contract-result and authoring behavior.
55
+
7
56
  ## [2.0.1] - 2026-04-30
8
57
 
9
58
  ### Changed