Skip to content

Commit e746966

Browse files
feat: support AsyncAPI 2.6.0 (#564)
1 parent d3362a6 commit e746966

File tree

9 files changed

+524
-185
lines changed

9 files changed

+524
-185
lines changed

package-lock.json

Lines changed: 509 additions & 170 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
],
2828
"dependencies": {
2929
"@asyncapi/avro-schema-parser": "^1.1.0",
30-
"@asyncapi/converter": "^1.1.0",
30+
"@asyncapi/converter": "^1.2.0",
3131
"@asyncapi/openapi-schema-parser": "^2.0.1",
32-
"@asyncapi/parser": "^2.0.0-next-major.10",
33-
"@asyncapi/react-component": "^1.0.0-next.45",
34-
"@asyncapi/specs": "^4.0.1",
32+
"@asyncapi/parser": "^2.0.0-next-major.13",
33+
"@asyncapi/react-component": "^1.0.0-next.47",
34+
"@asyncapi/specs": "^4.1.0",
3535
"@ebay/nice-modal-react": "^1.2.8",
3636
"@headlessui/react": "^1.7.4",
3737
"@hookstate/core": "^4.0.0-rc21",
@@ -80,14 +80,14 @@
8080
},
8181
"devDependencies": {
8282
"@asyncapi/dotnet-nats-template": "^0.11.0",
83-
"@asyncapi/go-watermill-template": "^0.2.13",
84-
"@asyncapi/html-template": "^0.28.2",
83+
"@asyncapi/go-watermill-template": "^0.2.16",
84+
"@asyncapi/html-template": "^0.28.3",
8585
"@asyncapi/java-spring-cloud-stream-template": "^0.13.4",
8686
"@asyncapi/java-spring-template": "^0.28.0",
87-
"@asyncapi/java-template": "^0.2.0",
87+
"@asyncapi/java-template": "^0.2.1",
8888
"@asyncapi/markdown-template": "^1.2.1",
8989
"@asyncapi/nodejs-template": "^0.13.1",
90-
"@asyncapi/nodejs-ws-template": "^0.9.27",
90+
"@asyncapi/nodejs-ws-template": "^0.9.28",
9191
"@asyncapi/python-paho-template": "^0.2.13",
9292
"@asyncapi/ts-nats-template": "^0.10.2",
9393
"@craco/craco": "^7.0.0",

src/examples/real-world/gitter-streaming.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
asyncapi: '2.5.0'
1+
asyncapi: '2.6.0'
22
id: 'urn:com:gitter:streaming:api'
33
info:
44
title: Gitter Streaming API

src/examples/real-world/slack-rtm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
asyncapi: '2.5.0'
1+
asyncapi: '2.6.0'
22
id: 'urn:com:slack:rtm:api'
33
info:
44
title: Slack Real Time Messaging API

src/examples/simple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
asyncapi: '2.5.0'
1+
asyncapi: '2.6.0'
22
info:
33
title: Account Service
44
version: 1.0.0

src/examples/streetlights-kafka.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
asyncapi: '2.5.0'
1+
asyncapi: '2.6.0'
22
info:
33
title: Streetlights Kafka API
44
version: '1.0.0'

src/examples/streetlights-mqtt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
asyncapi: '2.5.0'
1+
asyncapi: '2.6.0'
22
info:
33
title: Streetlights MQTT API
44
version: '1.0.0'

src/examples/websocket-gemini.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# - Live stream about topics mentioned in part 1 and 2 articles: https://www.youtube.com/watch?v=8tFBcf31e_c
1313
#
1414

15-
asyncapi: '2.5.0'
15+
asyncapi: '2.6.0'
1616

1717
#
1818
# Overal information for users of the application

src/state/files.state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import create from 'zustand';
22

33
const schema =
4-
localStorage.getItem('document') || `asyncapi: '2.5.0'
4+
localStorage.getItem('document') || `asyncapi: '2.6.0'
55
info:
66
title: Streetlights Kafka API
77
version: '1.0.0'

0 commit comments

Comments
 (0)