@asyncapi/generator 3.1.2 → 3.2.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.
- package/CHANGELOG.md +21 -1
- package/docs/api_components.md +1258 -0
- package/docs/generator-template.md +75 -65
- package/docs/model-generation.md +1 -1
- package/docs/usage.md +9 -9
- package/docs/versioning.md +1 -2
- package/lib/conditionalGeneration.js +3 -6
- package/lib/generator.js +16 -1
- package/lib/templates/bakedInTemplates/core-template-client-kafka-java-quarkus/package.json +1 -2
- package/lib/templates/bakedInTemplates/core-template-client-websocket-dart/package.json +3 -2
- package/lib/templates/bakedInTemplates/core-template-client-websocket-java-quarkus/.ageneratorrc +1 -1
- package/lib/templates/bakedInTemplates/core-template-client-websocket-java-quarkus/package.json +5 -4
- package/lib/templates/bakedInTemplates/core-template-client-websocket-javascript/README.md +1 -1
- package/lib/templates/bakedInTemplates/core-template-client-websocket-javascript/package.json +6 -4
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/__transpiled/components/ReceiveOperationsDiscriminators.js +1 -5
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/__transpiled/components/ReceiveOperationsDiscriminators.js.map +1 -1
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/__transpiled/components/Send.js +2 -2
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/__transpiled/components/Send.js.map +1 -1
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/__transpiled/template/client.py.js +3 -7
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/__transpiled/template/client.py.js.map +1 -1
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/components/ReceiveOperationsDiscriminators.js +3 -6
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/components/Send.js +2 -2
- package/lib/templates/bakedInTemplates/core-template-client-websocket-python/package.json +3 -2
- package/lib/templates/bakedInTemplates.js +9 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @asyncapi/generator
|
|
2
2
|
|
|
3
|
+
## 3.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 643f194: Fix browserslist error when using pnpm
|
|
8
|
+
|
|
9
|
+
Set BROWSERSLIST_ROOT_PATH environment variable during template compilation
|
|
10
|
+
to prevent browserslist from searching outside the template directory. This
|
|
11
|
+
fixes an issue where pnpm's shim files were incorrectly parsed as browserslist
|
|
12
|
+
configuration, causing "Unknown browser query" errors.
|
|
13
|
+
|
|
14
|
+
Fixes: https://github.com/asyncapi/cli/issues/1781
|
|
15
|
+
|
|
16
|
+
## 3.2.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 8f06c14: Update @npmcli/arborist from v5.6 to v9.2
|
|
21
|
+
This is a large jump but there are no breaking changes that affect us across these versions
|
|
22
|
+
https://github.com/npm/cli/blob/latest/workspaces/arborist/CHANGELOG.md
|
|
23
|
+
|
|
3
24
|
## 3.1.2
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -276,7 +297,6 @@
|
|
|
276
297
|
"@babel/core": "^7.26.0",
|
|
277
298
|
"@babel/preset-env": "^7.26.0",
|
|
278
299
|
"@babel/preset-react": "^7.25.9",
|
|
279
|
-
"jest-esm-transformer": "^1.0.0",
|
|
280
300
|
"@asyncapi/generator": "*",
|
|
281
301
|
"eslint": "^6.8.0",
|
|
282
302
|
"eslint-plugin-jest": "^23.8.2",
|