@jentic/arazzo-resolver 1.0.0-alpha.17 → 1.0.0-alpha.19
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 +12 -0
- package/README.md +2 -0
- package/dist/jentic-arazzo-resolver.browser.js +5 -1
- package/dist/jentic-arazzo-resolver.browser.min.js +1 -1
- package/package.json +2 -2
- package/src/dereference/arazzo.cjs +4 -1
- package/src/dereference/arazzo.mjs +4 -1
- package/src/dereference/openapi.cjs +1 -0
- package/src/dereference/openapi.mjs +1 -0
- package/types/arazzo-resolver.d.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-alpha.19](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2026-02-23)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **arazzo-ui:** add CLI for opening any URL from command cli ([#103](https://github.com/jentic/jentic-arazzo-tools/issues/103)) ([6923e7b](https://github.com/jentic/jentic-arazzo-tools/commit/6923e7bdcb62e86266789e18ef6af5dc27459110)), closes [#96](https://github.com/jentic/jentic-arazzo-tools/issues/96)
|
|
11
|
+
|
|
12
|
+
# [1.0.0-alpha.18](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2026-02-20)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- **parser:** add support for lossless roundtrips ([#91](https://github.com/jentic/jentic-arazzo-tools/issues/91)) ([2cffe4f](https://github.com/jentic/jentic-arazzo-tools/commit/2cffe4f142c4a541126a3f5f2e3634195c906f75))
|
|
17
|
+
|
|
6
18
|
# [1.0.0-alpha.17](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2026-02-20)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -242,7 +242,9 @@ const parseResult = await dereferenceArazzo('/path/to/arazzo.json', {
|
|
|
242
242
|
},
|
|
243
243
|
parse: {
|
|
244
244
|
parserOpts: {
|
|
245
|
+
strict: false, // Required for sourceMap and style (default: true)
|
|
245
246
|
sourceMap: true, // Include source maps in parsed documents
|
|
247
|
+
style: true, // Capture format-specific style information for round-trip preservation
|
|
246
248
|
},
|
|
247
249
|
},
|
|
248
250
|
});
|
|
@@ -127,6 +127,7 @@ const defaultOptions = {
|
|
|
127
127
|
})],
|
|
128
128
|
parserOpts: {
|
|
129
129
|
sourceMap: false,
|
|
130
|
+
style: false,
|
|
130
131
|
strict: true
|
|
131
132
|
}
|
|
132
133
|
},
|
|
@@ -164,10 +165,12 @@ const defaultOptions = {
|
|
|
164
165
|
* const result = await dereferenceArazzo('https://example.com/arazzo.yaml');
|
|
165
166
|
*
|
|
166
167
|
* @example
|
|
167
|
-
*
|
|
168
|
+
* Dereference with source descriptions
|
|
169
|
+
* ```typescript
|
|
168
170
|
* const result = await dereferenceArazzo('/path/to/arazzo.json', {
|
|
169
171
|
* dereference: { strategyOpts: { sourceDescriptions: true } },
|
|
170
172
|
* });
|
|
173
|
+
* ```
|
|
171
174
|
*
|
|
172
175
|
* @example
|
|
173
176
|
* // Dereference with custom options
|
|
@@ -428,6 +431,7 @@ const defaultOptions = {
|
|
|
428
431
|
})],
|
|
429
432
|
parserOpts: {
|
|
430
433
|
sourceMap: false,
|
|
434
|
+
style: false,
|
|
431
435
|
strict: true
|
|
432
436
|
}
|
|
433
437
|
},
|