-
Notifications
You must be signed in to change notification settings - Fork 15
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
UserAPI.userCreateToken doesn't return token #4
Comments
Ugh. I'll take a look. I knew that there was something manual I had to do to the swagger JSON. |
I've uploaded a fixed release 1.14.0 right now - this should work on all 1.14.x versions of Gitea. I'll pop a PR on to Gitea to fix this more permanently. |
We need this patch currently: dcfe46c#diff-7737fa973a12da8a4c6a99b8ab264b33fcad87756116a3ba93d16292d8878651 |
@slonopotamus do you need me to release a fixed 1.13.x? |
Yes, please, I can't upgrade due to this bug. |
Err... If you released 1.14, then it's fine, no need for additional release. |
Cool. OK 1.14.0 has been released. |
I somewhat forgot about this thing and now tried to upgrade to newer java-gitea-api again. The problem is: yes, P.S. Also note that with modern Swagger schema ( |
Note that back in older days, |
ugh sorry about this! |
Probably need to reapply a99fa0c each time. |
Maybe we should report it upstream (Gitea)? I'm not an expert in Swagger, so don't actually understand why it can't properly generate |
OK I think this should now be fixed. In terms of opening an issue in Gitea - I'll just open a PR. |
There is a subtle problem with the Swagger definition for AccessTokens which causes autogeneration of APIs for these endpoints to fail. This PR corrects these errors. Ref: zeripath/java-gitea-api#4 Signed-off-by: Andrew Thornton <art27@cantab.net>
For the record: I successfully managed to update to 1.14.0-1: git-as-svn/git-as-svn#438 |
Cool I'll close this. Sorry for missing the problem originally. |
There is a subtle problem with the Swagger definition for AccessTokens which causes autogeneration of APIs for these endpoints to fail. This PR corrects these errors. Ref: zeripath/java-gitea-api#4 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Backport go-gitea#16574 There is a subtle problem with the Swagger definition for AccessTokens which causes autogeneration of APIs for these endpoints to fail. This PR corrects these errors. Ref: zeripath/java-gitea-api#4 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Backport #16574 There is a subtle problem with the Swagger definition for AccessTokens which causes autogeneration of APIs for these endpoints to fail. This PR corrects these errors. Ref: zeripath/java-gitea-api#4 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
There is a subtle problem with the Swagger definition for AccessTokens which causes autogeneration of APIs for these endpoints to fail. This PR corrects these errors. Ref: zeripath/java-gitea-api#4 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This is broken again in 1.15.0: https://github.com/bozaro/git-as-svn/runs/3396683858#step:5:60 |
Ah. I think this breakage might be because of a slight change of name and a consequent API change rather than the code being broken. |
Oh, looks like I didn't drink enough coffee yet and though that was the same problem. No worries, class rename is easy to fix. |
Sorry for the unannounced breaking change though. |
According to Swagger schema,
userCreateToken
returnsAccessToken
: https://github.com/zeripath/java-gitea-api/blob/master/swagger.v1.json#L11452-L11495But in generated bindings,
userCreateToken
method is void: https://github.com/zeripath/java-gitea-api/blob/master/src/main/java/io/gitea/api/UserApi.java#L632The text was updated successfully, but these errors were encountered: