@jentic/arazzo-resolver 1.0.0-alpha.16 → 1.0.0-alpha.18
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 +1 -0
- package/dist/jentic-arazzo-resolver.browser.js +2 -0
- package/dist/jentic-arazzo-resolver.browser.min.js +1 -1
- package/package.json +10 -10
- package/src/dereference/arazzo.cjs +1 -0
- package/src/dereference/arazzo.mjs +1 -0
- package/src/dereference/openapi.cjs +1 -0
- package/src/dereference/openapi.mjs +1 -0
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.18](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2026-02-20)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **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))
|
|
11
|
+
|
|
12
|
+
# [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)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **deps:** use caret ranges for @speclynx/\* dependencies ([#90](https://github.com/jentic/jentic-arazzo-tools/issues/90)) ([2be9f0b](https://github.com/jentic/jentic-arazzo-tools/commit/2be9f0b06a38ee28d3b2ee344ff9a764d2ed3de4))
|
|
17
|
+
|
|
6
18
|
# [1.0.0-alpha.16](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2026-02-20)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -243,6 +243,7 @@ const parseResult = await dereferenceArazzo('/path/to/arazzo.json', {
|
|
|
243
243
|
parse: {
|
|
244
244
|
parserOpts: {
|
|
245
245
|
sourceMap: true, // Include source maps in parsed documents
|
|
246
|
+
style: true, // Capture format-specific style information for round-trip preservation
|
|
246
247
|
},
|
|
247
248
|
},
|
|
248
249
|
});
|
|
@@ -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
|
},
|
|
@@ -428,6 +429,7 @@ const defaultOptions = {
|
|
|
428
429
|
})],
|
|
429
430
|
parserOpts: {
|
|
430
431
|
sourceMap: false,
|
|
432
|
+
style: false,
|
|
431
433
|
strict: true
|
|
432
434
|
}
|
|
433
435
|
},
|