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

feat: support AsyncAPI 2.6.0 #564

Merged
merged 3 commits into from
Feb 6, 2023
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
679 changes: 509 additions & 170 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
],
"dependencies": {
"@asyncapi/avro-schema-parser": "^1.1.0",
"@asyncapi/converter": "^1.1.0",
"@asyncapi/converter": "^1.2.0",
"@asyncapi/openapi-schema-parser": "^2.0.1",
"@asyncapi/parser": "^2.0.0-next-major.10",
"@asyncapi/react-component": "^1.0.0-next.45",
"@asyncapi/specs": "^4.0.1",
"@asyncapi/parser": "^2.0.0-next-major.13",
"@asyncapi/react-component": "^1.0.0-next.47",
"@asyncapi/specs": "^4.1.0",
"@ebay/nice-modal-react": "^1.2.8",
"@headlessui/react": "^1.7.4",
"@hookstate/core": "^4.0.0-rc21",
Expand Down Expand Up @@ -80,14 +80,14 @@
},
"devDependencies": {
"@asyncapi/dotnet-nats-template": "^0.11.0",
"@asyncapi/go-watermill-template": "^0.2.13",
"@asyncapi/html-template": "^0.28.2",
"@asyncapi/go-watermill-template": "^0.2.16",
"@asyncapi/html-template": "^0.28.3",
"@asyncapi/java-spring-cloud-stream-template": "^0.13.4",
"@asyncapi/java-spring-template": "^0.28.0",
"@asyncapi/java-template": "^0.2.0",
"@asyncapi/java-template": "^0.2.1",
"@asyncapi/markdown-template": "^1.2.1",
"@asyncapi/nodejs-template": "^0.13.1",
"@asyncapi/nodejs-ws-template": "^0.9.27",
"@asyncapi/nodejs-ws-template": "^0.9.28",
"@asyncapi/python-paho-template": "^0.2.13",
"@asyncapi/ts-nats-template": "^0.10.2",
"@craco/craco": "^7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/examples/real-world/gitter-streaming.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
asyncapi: '2.5.0'
asyncapi: '2.6.0'
id: 'urn:com:gitter:streaming:api'
info:
title: Gitter Streaming API
Expand Down
2 changes: 1 addition & 1 deletion src/examples/real-world/slack-rtm.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
asyncapi: '2.5.0'
asyncapi: '2.6.0'
id: 'urn:com:slack:rtm:api'
info:
title: Slack Real Time Messaging API
Expand Down
2 changes: 1 addition & 1 deletion src/examples/simple.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
asyncapi: '2.5.0'
asyncapi: '2.6.0'
info:
title: Account Service
version: 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/examples/streetlights-kafka.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
asyncapi: '2.5.0'
asyncapi: '2.6.0'
info:
title: Streetlights Kafka API
version: '1.0.0'
Expand Down
2 changes: 1 addition & 1 deletion src/examples/streetlights-mqtt.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
asyncapi: '2.5.0'
asyncapi: '2.6.0'
info:
title: Streetlights MQTT API
version: '1.0.0'
Expand Down
2 changes: 1 addition & 1 deletion src/examples/websocket-gemini.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# - Live stream about topics mentioned in part 1 and 2 articles: https://www.youtube.com/watch?v=8tFBcf31e_c
#

asyncapi: '2.5.0'
asyncapi: '2.6.0'

#
# Overal information for users of the application
Expand Down
2 changes: 1 addition & 1 deletion src/state/files.state.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import create from 'zustand';

const schema =
localStorage.getItem('document') || `asyncapi: '2.5.0'
localStorage.getItem('document') || `asyncapi: '2.6.0'
info:
title: Streetlights Kafka API
version: '1.0.0'
Expand Down