grinspins

Results 6 comments of grinspins

Thank you for the quick fix @zupo, this looks good to me. In your comment on the issue you specifically mentioned that this should take care of the 1. issue...

Thanks for your reply. For the first issue an example I can think of is request parameter unpacking in APIs that have both openapi and non-openapi routes. E.g. something like...

The problem seems to be this [for loop](https://github.com/projectstorm/react-diagrams/blob/d2f05438b8620147d7aa835f2799a0f56397d4e3/packages/react-diagrams-routing/src/link/RightAngleLinkModel.ts#L22) in `RightAngleLinkModel`. ```javascript for (let i = 1; i < points.length; i += points.length - 2) { ``` The serialization seems to...

I found you have to dig a little deeper into the exceptions to get the exact problem. OpenApiError has a `__cause__` attribute that points to the `InvalidSchemaValue` that's raised by...

I was also looking into upgrading from V2 to V3 and the lack of dependency declarations stopped me from doing so. Having to manage the dependencies on the application level...

I'm facing the same issue when trying to mock network requests that are initiated by a direct dependency. This [issue](https://github.com/vitest-dev/vitest/issues/1336) mentions `deps.inline` as possible solution. This option is no longer...