-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
chore: merge master
into next-major-spec
+ fix bug in bundler
#406
Conversation
Co-authored-by: asyncapi-bot <[email protected]>
…i#298) Co-authored-by: Sergio Moya <[email protected]>
…release/github, @semantic-release/npm and semantic-release (asyncapi#381)
Co-authored-by: Lukasz Gornicki <[email protected]>
Co-authored-by: Lukasz Gornicki <[email protected]>
Co-authored-by: asyncapi-bot-eve <[email protected]>%0ACo-authored-by: asyncapi-bot <[email protected]>
master
into next-major-spec
+ fix bug in bundlermaster
into next-major-spec
+ fix bug in bundler
@derberg @jonaslagoni I need some help debugging what's the issue with the produced
However, in the |
Interesting, it is only with the oryginal schema has |
@derberg The issue is with JSON pointer here and the fact we should scape I decided to use I also added support for testing and validating the schemas without $id which was not added before. |
@smoya I don't get why you need |
My bad for the confusing explanation. Gonna try again. 1. Bug with
|
Kudos, SonarCloud Quality Gate passed! |
ah yeah, makes a lot of sense |
🎉 This PR is included in version 6.0.0-next-major-spec.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 6.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
This PR, besides merging
master
intonext-major-spec
, does the following:$ref
pointing to definitions without.json
extension fail. For example,"$ref": "http://asyncapi.com/definitions/3.0.0/operation.json#/properties/title"
like the OperationTrait in v3 has nowhttp://asyncapi.com/bindings/mqtt/0.1.0/operation.json
tobindings-mqtt-0.1.0-operation
.Both matching are now done through regex, since there is no easy silver bullet solution without doing tons of hacks.
Pinging @derberg who made the changes in the bundler for creating schemas without $id. So I expect you can review my last commits where the fix is done.