ota42y
ota42y
When we crete column with Unicode comment, annotate gem does not update that annotation. `\w` means a word character([a-zA-Z0-9_]) and it does not match Unicode leteers. https://docs.ruby-lang.org/en/3.0.0/Regexp.html Now `column_pattern` in...
I download Jasper 0.4.0 for windows and setup. I get personal access token from github and paste correctly on setup sequence 2 ( 2. Personal Access Token). And display same...
OpenAPI 3 support `require` id header but openapi_parser not support yet :(
# Plan OpenAPI 3.0.3 support `fomat: binary` so we should support it. https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#data-types Rack set file as `Rack::Multipart::UploadedFile` so we should check it in string validator. https://github.com/ota42y/openapi_parser/blob/master/lib/openapi_parser/schema_validators/string_validator.rb#L10 # Other related...
related: https://github.com/interagent/committee/issues/255 https://github.com/ota42y/openapi_parser/issues/108 We have no time for adding binary string validation, but the user get error and need patch this library. So we fix to avoid error
Ruby 2.3 is already EOL. So I'm going to drop ruby 2.3 support. I think when committee drop ruby 2.3 support or we have a very difficult problem, we will...
coerce option don't support in header https://github.com/ota42y/openapi_parser/blob/master/lib/openapi_parser/schemas/header.rb#L14 But OpenAPI allow integer so we should support coerce.
We can't describe different templated name with same hierarchy. > Templated paths with the same hierarchy but different templated names MUST NOT exist as they are identical. But I can't...