-
-
Notifications
You must be signed in to change notification settings - Fork 130
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
AsyncAPI Studio automated updates broken #1117
Comments
actually it is a different weird bug. The switch of verbs happens only if reply is present. If I remove reply, the verb shows as SEND not RECEIVE |
I will take a look into this this weekend. |
@Shurtu-gal did you have a chance to have a look into it? |
Sorry, I was actually travelling to college 2 weeks ago and was down with fever after that. I will put this on priority. Had totally forgotten about this. |
Regarding the bump workflow should we make it customisable to make it work in monorepos? Or we can simply find package.json to max depth of 3 as I suppose that would be enough. |
I believe that this is a problem in |
After some digging around found the reason: Whenever a operation has reply according to this it should show REQUEST. cc: @derberg |
Hello, @Shurtu-gal! 👋🏼 I'm 🧞🧞🧞 Genie 🧞🧞🧞 from the magic lamp. Looks like somebody needs a hand! At the moment the following comments are supported in issues:
|
@Shurtu-gal but the problem if the issue is not that it is done wrong here, but that it is still visible wrong in studio as studio runs on old version. Or? |
I upgraded to the latest version still the problem is there. Also tried in the demo url in this repo |
you mean on your local right? |
Yeah |
ah, ok, looks like it was changed intentionally. problem is that verb @jonaslagoni do you remember why in #856 you introduced |
Looks to me like https://github.com/asyncapi/studio/blob/master/apps/studio/package.json#L44 is running on very old react component version which is not good.
Its confusing people for very long, look: https://studio.asyncapi.com/?share=3469f1ef-eae6-4e23-a53c-f4d2877fd857 it still runs on version there reverts meaning of action verbs :(
So one thing is to update the component in studio, another is to automate it.
Current automation do not work: https://github.com/asyncapi/asyncapi-react/blob/master/.github/workflows/bump.yml
It is because it uses the default workflow from
.github
that is using default location ofpackage.json
from root, to grab package name. The workflow needs an update here or in.github
but then we need to figure out, hot to overwrite defaultpackagejson_path
with custom value, like./library
. Probably environment variables.cc @Shurtu-gal so he is aware of issues in Studio.
The text was updated successfully, but these errors were encountered: