Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update package @asyncapi/bundler to version 0.6.1 #1492

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ weight: 30

## Node and npm

To use the AsyncAPI CLI tool, you must install NPM and Node.js version 10 or higher. To check if you already have both installed, run the following commands in your terminal:
To use the AsyncAPI CLI tool, you must install NPM and Node.js version 16 or higher. To check if you already have both installed, run the following commands in your terminal:

```sh
# check if node is installed
Expand Down
22 changes: 17 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"bugs": "https://github.com/asyncapi/cli/issues",
"dependencies": {
"@asyncapi/avro-schema-parser": "^3.0.23",
"@asyncapi/bundler": "^0.5.3",
"@asyncapi/bundler": "^0.6.1",
"@asyncapi/converter": "^1.4.20",
"@asyncapi/diff": "^0.4.1",
"@asyncapi/modelina-cli": "^4.0.0-next.48",
Expand Down
5 changes: 0 additions & 5 deletions test/integration/bundle/feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,3 @@ info:
title: Account Service
version: 1.0.0
description: This service is in charge of processing user logouts
channels:
user/loggedOut:
unsubcribe:
message:
$ref: 'test/integration/bundle/messages.yaml#/messages/UserLoggedOut'
4 changes: 0 additions & 4 deletions test/integration/bundle/final-asyncapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ channels:
subscribe:
message:
$ref: '#/components/messages/UserSignedUp'
user/loggedOut:
unsubcribe:
message:
$ref: '#/components/messages/UserLoggedOut'
components:
messages:
UserSignedUp:
Expand Down
2 changes: 1 addition & 1 deletion test/integration/bundle/first-asyncapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ channels:
user/signedup:
subscribe:
message:
$ref: "./test/integration/bundle/messages.yaml#/messages/UserSignedUp"
$ref: "./messages.yaml#/messages/UserSignedUp"
2 changes: 1 addition & 1 deletion test/integration/bundle/first-asyncapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ info:
description: Example Service.
channels:
commentLikedChannel:
$ref: './test/integration/bundle/channels.yaml#/channels/commentLikedChannel'
$ref: './channels.yaml#/channels/commentLikedChannel'
Loading