Kassam Housseny
Kassam Housseny
This issue is coming from ` OAuth::ClientCredentials::Creator#call` where we have ```ruby Doorkeeper.config.access_token_model.create_for( application: application, resource_owner: nil, scopes: scopes, **attributes, ) ``` we should have something like ```ruby Doorkeeper.config.access_token_model.create_for( application: application,...
> This sounds like a bug to me, I haven't validated it locally yet but would you (or future readers) like to submit a PR with a test on this...
we should also have in the `unpack` method ``` @results = (unpack_rslts raw) ``` instead of ``` @results += (unpack_rslts raw) ``` to not overflow the memory
For those who's experimenting this issue, have you defined correctly the `securitySchemes` within `config.swagger_docs` ? This seems to be working on my project with this configuration: ```ruby { openapi: '3.0.1',...
> ```ruby > config.rswag_dry_run = false > ``` @xkraty well, i didn't add this line on my configuration, so i'm using the default configuration (which if i'm not mistaken `true`)...
> Hey, Did you get any luck with this ? @mazoonit yes, so i ended up just doing a monkey patch of the library with this : ```ruby module OmniAuth...
Hello, i also have the same error in my docker build using `ruby:3.2.2-alpine3.19` ``` /usr/local/bundle/gems/commonmarker-1.1.5-aarch64-linux/lib/commonmarker/extension.rb:7:in `require_relative': Error relocating /usr/local/bundle/gems/commonmarker-1.1.5-aarch64-linux/lib/commonmarker/3.2/commonmarker.so: __snprintf_chk: symbol not found - /usr/local/bundle/gems/commonmarker-1.1.5-aarch64-linux/lib/commonmarker/3.2/commonmarker.so (LoadError) ``` here is a...