norn-cli 1.4.5 → 1.5.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
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "Norn" extension will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.5.0] - 2026-02-26
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **Postman Import (VS Code, v1)**:
|
|
9
|
+
- Added a new `Norn` Activity Bar sidebar entry with `Postman Imports` actions for collection and environment JSON imports.
|
|
10
|
+
- Added a review-before-write import wizard flow (`Select -> Review -> Result`) for safer migration into Norn files.
|
|
11
|
+
- Added Postman import generation for `.nornapi`, `.norn`, and `.nornenv` outputs with warnings/blockers surfaced before writes.
|
|
12
|
+
- Added Postman import test fixtures under `tests/PostmanImport/`.
|
|
13
|
+
|
|
14
|
+
### Improved
|
|
15
|
+
- **Postman Import Conversion Output**:
|
|
16
|
+
- Collection-level Postman variables now generate into top-level global entries in `.nornenv` instead of being duplicated in each `.norn` file.
|
|
17
|
+
- Path/query placeholders are converted into endpoint parameters while base URL placeholders remain environment-driven variables.
|
|
18
|
+
- Environment imports now append into an existing `.nornenv` (with warnings for duplicate env names) instead of blocking import.
|
|
19
|
+
|
|
5
20
|
## [1.4.5] - 2026-02-24
|
|
6
21
|
|
|
7
22
|
### Fixed
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "norn-cli",
|
|
3
3
|
"displayName": "Norn - REST Client",
|
|
4
4
|
"description": "A powerful REST client for making HTTP requests with sequences, variables, scripts, and cookie support",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.5.0",
|
|
6
6
|
"publisher": "Norn-PeterKrustanov",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Peter Krastanov"
|
|
@@ -40,7 +40,10 @@
|
|
|
40
40
|
],
|
|
41
41
|
"activationEvents": [
|
|
42
42
|
"onLanguage:norn",
|
|
43
|
-
"onChatParticipant:norn.chat"
|
|
43
|
+
"onChatParticipant:norn.chat",
|
|
44
|
+
"onView:norn.sidebarHome",
|
|
45
|
+
"onCommand:norn.importPostmanCollection",
|
|
46
|
+
"onCommand:norn.importPostmanEnvironment"
|
|
44
47
|
],
|
|
45
48
|
"main": "./dist/extension.js",
|
|
46
49
|
"contributes": {
|
|
@@ -79,8 +82,36 @@
|
|
|
79
82
|
"command": "norn.refreshCoverage",
|
|
80
83
|
"title": "Refresh API Coverage",
|
|
81
84
|
"category": "Norn"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"command": "norn.importPostmanCollection",
|
|
88
|
+
"title": "Import Postman Collection JSON",
|
|
89
|
+
"category": "Norn"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"command": "norn.importPostmanEnvironment",
|
|
93
|
+
"title": "Import Postman Environment JSON",
|
|
94
|
+
"category": "Norn"
|
|
82
95
|
}
|
|
83
96
|
],
|
|
97
|
+
"viewsContainers": {
|
|
98
|
+
"activitybar": [
|
|
99
|
+
{
|
|
100
|
+
"id": "nornSidebar",
|
|
101
|
+
"title": "Norn",
|
|
102
|
+
"icon": "./images/nornapi-icon.svg"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
"views": {
|
|
107
|
+
"nornSidebar": [
|
|
108
|
+
{
|
|
109
|
+
"type": "webview",
|
|
110
|
+
"id": "norn.sidebarHome",
|
|
111
|
+
"name": "Norn"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
},
|
|
84
115
|
"languages": [
|
|
85
116
|
{
|
|
86
117
|
"id": "norn",
|