norn-cli 1.3.2 → 1.3.3
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/.norn-cache/validation-results.json +33 -0
- package/CHANGELOG.md +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"results": {
|
|
4
|
+
"tests/Regression/15-contract-validation.norn:15": {
|
|
5
|
+
"schemaPath": "tests/Regression/schemas/GET-todos-1.schema.json",
|
|
6
|
+
"sourceFile": "tests/Regression/15-contract-validation.norn",
|
|
7
|
+
"assertionLine": 15,
|
|
8
|
+
"status": "pass",
|
|
9
|
+
"lastRunTime": "2026-02-08T20:13:44.031Z"
|
|
10
|
+
},
|
|
11
|
+
"tests/Regression/15-contract-validation.norn:25": {
|
|
12
|
+
"schemaPath": "tests/Regression/schemas/GET-users-1.schema.json",
|
|
13
|
+
"sourceFile": "tests/Regression/15-contract-validation.norn",
|
|
14
|
+
"assertionLine": 25,
|
|
15
|
+
"status": "pass",
|
|
16
|
+
"lastRunTime": "2026-02-08T20:16:27.876Z"
|
|
17
|
+
},
|
|
18
|
+
"tests/Regression/15-contract-validation.norn:35": {
|
|
19
|
+
"schemaPath": "tests/Regression/schemas/GET-todos-1.schema.json",
|
|
20
|
+
"sourceFile": "tests/Regression/15-contract-validation.norn",
|
|
21
|
+
"assertionLine": 35,
|
|
22
|
+
"status": "pass",
|
|
23
|
+
"lastRunTime": "2026-02-08T20:17:12.506Z"
|
|
24
|
+
},
|
|
25
|
+
"tests/Regression/15-contract-validation.norn:39": {
|
|
26
|
+
"schemaPath": "tests/Regression/schemas/GET-todos-1.schema.json",
|
|
27
|
+
"sourceFile": "tests/Regression/15-contract-validation.norn",
|
|
28
|
+
"assertionLine": 39,
|
|
29
|
+
"status": "pass",
|
|
30
|
+
"lastRunTime": "2026-02-08T20:17:12.506Z"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "Norn" extension will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.3.3] - 2026-02-08
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **Contract View Panel**: Fixed webview rendering issue that showed raw JavaScript code
|
|
9
|
+
- Removed embedded script tags that broke HTML parsing
|
|
10
|
+
- "View Contract Details" button now works correctly
|
|
11
|
+
- **Contract View Styling**: Unified appearance with Contract Report
|
|
12
|
+
- Response JSON now has proper syntax highlighting (colored keys, strings, numbers)
|
|
13
|
+
- Schema JSON has consistent styling without background highlight artifacts
|
|
14
|
+
- **Gutter Decorations**: Removed contract gutter icons and line highlights for cleaner editor appearance
|
|
15
|
+
|
|
5
16
|
## [1.3.2] - 2026-02-08
|
|
6
17
|
|
|
7
18
|
### Improved
|
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.3.
|
|
5
|
+
"version": "1.3.3",
|
|
6
6
|
"publisher": "Norn-PeterKrustanov",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Peter Krastanov"
|