Vladimír Gorej

Results 588 comments of Vladimír Gorej

I can confirm as well. I've tried downgrading down to 2.5.x, with no effect. Still seeing the error.

For anybody looking for a solution for this problem. Here is how my workflow looked before (using this action): ```yaml name: Merge me! on: pull_request_target: jobs: merge-me: name: Merge me!...

Hi everybody, This issue has been addressed in https://github.com/swagger-api/swagger-ui/pull/9934 More info in: https://github.com/swagger-api/swagger-ui/pull/9934#issuecomment-2109548880

Hi everybody, This explanation is going to be **TL;DR**. SwaggerUI currently supports of OpenAPI 3.0.x Schema Object, which uses subset and extension of JSON Schema Draft 4/5. Schema Objects are...

> But how do you handle recursive structures such that they're not infinitely nested? This is handled by dereferencing. It's implemented as a state machine that implements advanced cycle detection...

Hi @mendrik, I wouldn't say so. Here are the tests for `allP`: ```ts RA.allP([1, 2]); // $ExpectType Promise RA.allP([Promise.resolve(1), Promise.resolve(2)]); // $ExpectType Promise RA.allP(['a', 'b']); // $ExpectType Promise RA.allP([1, 'a']);...