Oliwia Rogala

Results 45 comments of Oliwia Rogala

Potential default values for each of them: - onComplete: `() => {}` - defined as `Function=NOOP` in documentation, used here: https://github.com/swagger-api/swagger-ui/blob/d5e56e5d75be4edc777fb8432a484e22af690bf1/src/core/plugins/on-complete/index.js#L13-L23 - modelPropertyMacro: `null` - so that we don't run...

I can confirm this is a regression in Swagger Client. This works properly in Swagger UI version 5.15.2 and stops working in 5.16.0. We updated the Swagger Client version from...

Looks like it can be reproduced without the reference inside of `allOf`: ```yaml openapi: 3.1.0 info: title: Example generation test version: 1.0.0 paths: /foo: get: responses: '200': content: application/json: schema:...

Hi everyone, I will be closing this issue and the associated pull request, as the original example is not correct in OpenAPI 3.0.x. The example provided [here](https://github.com/swagger-api/swagger-ui/issues/9293#issuecomment-2176099410) by @AlexWinder is...

Hi @benno-mueller-saxess @PeraBaja, Thanks for bringing this topic up. To clarify, special characters in paths are not supported as they are not allowed according to the [ABNF grammar for path...

Hi everyone, The [latest release](https://github.com/swagger-api/swagger-ui/releases/tag/v5.28.0) of Swagger UI adds initial support for React 19 by bumping the dependency version range. I will leave this issue open to track any problems...

After investigating, we have determined that the cause lies within the [ApiDOM](https://github.com/swagger-api/apidom) structure. The result of refracting a definition of 10 MB size will leave 100 MB of memory footprint...

Reopening this issue as it was only partially addressed by https://github.com/swagger-api/swagger-ui/pull/10373. There are still some components using the deprecated lifecycle methods.

Hi @scastria, I tried to reproduce the issue using the swagger-ui-react + NextJS template from the [wiki page](https://github.com/swagger-api/swagger-ui/wiki/Seamless-Integration-with-Bundlers-&-Test-Tools#nextjs), updating swagger-ui-react to the latest version. I was able to load OpenAPI...

@scastria It looks like this problem occurs when using the Turbopack bundler. With your `package.json`, the error appears with: ``` "dev": "next dev --turbopack", ``` but not with: ``` "dev":...