Robbe Sneyders
Robbe Sneyders
`aioprometheus` seems to [assume](https://github.com/claws/aioprometheus/blob/2fabe659c3c5259b50ac90c3106df7d41b8a3c74/src/aioprometheus/asgi/middleware.py#L145) the `app` that is stored in the state is a `starlette` app, while this is not the case in Connexion. CC: @claws I think you can...
@eharvey71 are you on Windows as well? > If I downgrade to connexion 3.0.2, all is well. Looks like 3.0.3 and above include the breaking change. I don't immediately see...
Thanks @mjp4! Agree that this would be useful, we use a gateway for security as well. I'm still thinking about the approach though. Another option would be to remove the...
You'll need to bump the `jsonschema` version to `>=4.17.3` to fix the pipeline. Can you also add this to the [CLI docs](https://github.com/spec-first/connexion/blob/main/docs/cli.rst#running-a-mock-server)?
You'll need to bump `typing-extensions` to `>=4.6.1` as well.
This is a good suggestion. [We already have the functionality available](https://github.com/spec-first/connexion/blob/5d7eb0bdab9ed404e1d294dac6ed951af3be7952/connexion/utils.py#L470), just need to call it at the right place.
Thanks for the report @abstractbyte. Agree that we can add a note on this in the documentation. This way of using Connexion is mostly meant if you already have a...
We could leverage [dataclasses-json](https://pypi.org/project/dataclasses-json/) or [SimpleNamespace](https://stackoverflow.com/a/15882054/4098821) here.
Thanks for the report @danielbprice. These are not available because Connexion already consumes them. I agree that this is not ideal. I think it would be logical if Connexion only...
Hi @tobiaswer. Please provide a minimal reproducible example.