norn-cli 1.4.5 → 1.5.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.
@@ -3,7 +3,7 @@
3
3
  "urls": {
4
4
  "https://petstore.swagger.io/v2/swagger.json": {
5
5
  "baseUrl": "https://petstore.swagger.io/v2",
6
- "fetchedAt": "2026-02-24T16:44:27.288Z",
6
+ "fetchedAt": "2026-02-28T11:28:13.549Z",
7
7
  "schemas": [
8
8
  {
9
9
  "operationId": "AddPet",
package/CHANGELOG.md CHANGED
@@ -2,6 +2,36 @@
2
2
 
3
3
  All notable changes to the "Norn" extension will be documented in this file.
4
4
 
5
+ ## [1.5.1] - 2026-02-28
6
+
7
+ ### Improved
8
+ - **Path IntelliSense (Import + Scripts)**:
9
+ - Added relative path completions for `import` statements and script commands (`run bash`, `run powershell`, `run js`, `run readJson`) in `.norn` files.
10
+ - Suggestions now resolve from the active file directory and continue navigation on `/`.
11
+ - File suggestions prioritize relevant extensions by context (for example `.norn`/`.nornapi` for imports, `.ps1` for PowerShell, `.js` for JS).
12
+
13
+ - **.nornenv IntelliSense**:
14
+ - Added relative import path IntelliSense in `.nornenv` files.
15
+ - `.nornenv` is now visible in path suggestions by default, even when hidden files are not explicitly prefixed.
16
+
17
+ - **Suggestion Icon Consistency**:
18
+ - Path completion entries now consistently use file/folder icons in suggest lists to avoid iconless entries.
19
+
20
+ ## [1.5.0] - 2026-02-26
21
+
22
+ ### Added
23
+ - **Postman Import (VS Code, v1)**:
24
+ - Added a new `Norn` Activity Bar sidebar entry with `Postman Imports` actions for collection and environment JSON imports.
25
+ - Added a review-before-write import wizard flow (`Select -> Review -> Result`) for safer migration into Norn files.
26
+ - Added Postman import generation for `.nornapi`, `.norn`, and `.nornenv` outputs with warnings/blockers surfaced before writes.
27
+ - Added Postman import test fixtures under `tests/PostmanImport/`.
28
+
29
+ ### Improved
30
+ - **Postman Import Conversion Output**:
31
+ - Collection-level Postman variables now generate into top-level global entries in `.nornenv` instead of being duplicated in each `.norn` file.
32
+ - Path/query placeholders are converted into endpoint parameters while base URL placeholders remain environment-driven variables.
33
+ - Environment imports now append into an existing `.nornenv` (with warnings for duplicate env names) instead of blocking import.
34
+
5
35
  ## [1.4.5] - 2026-02-24
6
36
 
7
37
  ### Fixed