Skip to content

Commit

Permalink
feat: support AsyncAPI 2.6.0 (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
magicmatatjahu authored Feb 6, 2023
1 parent d3362a6 commit e746966
Show file tree
Hide file tree
Showing 9 changed files with 524 additions and 185 deletions.
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

0 comments on commit e746966

Please sign in to comment.