-
-
Notifications
You must be signed in to change notification settings - Fork 127
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
Which AsyncAPI versions are supported? #456
Comments
@leonheess hey, we support all from 2.0.0 up. I think you did not notice info that was at the top of the readme
I'm pretty sure |
I made quick check with latest version of <!DOCTYPE html>
<html>
<head>
<!-- next version -->
<link rel="stylesheet" href="https://unpkg.com/@asyncapi/[email protected]/styles/default.min.css">
<!-- master version -->
<script src="https://unpkg.com/@webcomponents/[email protected]/webcomponents-bundle.js"></script>
<script src="https://unpkg.com/@asyncapi/[email protected]/lib/asyncapi-web-component.js" defer></script>
</head>
<body>
<!-- master version -->
<asyncapi-component
schemaUrl="https://raw.githubusercontent.com/asyncapi/spec/master/examples/streetlights-kafka.yml"
schemaFetchOptions='{"method":"GET","mode":"cors"}'
cssImportPath="https://unpkg.com/@asyncapi/[email protected]/lib/styles/fiori.css">
</asyncapi-component>
<div id="next"></div>
<!-- next version -->
<script src="https://unpkg.com/@asyncapi/[email protected]/browser/standalone/index.js"></script>
<script>
AsyncApiStandalone.render({
schema: {
url: 'https://raw.githubusercontent.com/asyncapi/spec/master/examples/streetlights-kafka.yml',
},
config: {
show: {
sidebar: true,
}
},
}, document.getElementById('next'));
</script>
</body>
</html> and I see: |
Thank you, @magicmatatjahu, maybe consider adding the first part to the readme. I don't think this distinction is clear otherwise (: Is there a timeline on when master will support the new content? |
@leonheess you can freely use but regarding readme on master, if you say it is not clear, I say we need to make it even more clearer, as community is the boss here. @leonheess best would be if you could open a PR with change suggestion. Let us know if you are keen to do it
The goal is that once |
Right, Fran will be back tomorrow so I will ping him :)
Partially right, but I wonder if we should also wait for the implementation of this proposition (Proposal to define Modules aka Plugins for UI component and Studio). If we go with 1.0.0, we will have to do 2.0.0 when implementing the proposition. Additionally, we finally have a graphic designer, so the styles will change again soon so again, next breaking-change :)
if you want to do the PR yourself, go ahead, but we can also do it ourselves if you don't have time :) |
Plugins for UI component and Studio). If we go with 1.0.0, we will have to do 2.0.0 when implementing the proposition. Additionally, we finally have a graphic designer, so the styles will change again soon so again, next breaking-change I'm always in the position that we should not be afraid to release 2.0 a month after 1.0 if it makes sense and is useful for the community 🤷🏼 Work on plugins and using it and validating in studio is not something that will happen in a week or 2. Regarding |
And for that I used sentence |
I expected the latest release to support all available AsyncAPI versions. However, this is not the case. Are the supported versions listed somewhere and is there maybe a roadmap telling me when support for the newer versions will drop?
The text was updated successfully, but these errors were encountered: