openapi-core
openapi-core copied to clipboard
Openapi-core is a Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.
Bumps [django](https://github.com/django/django) from 3.2.13 to 3.2.15. Commits 653a7bd [3.2.x] Bumped version for 3.2.15 release. b3e4494 [3.2.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header. cb7fbac [3.2.x] Fixed collation tests on...
I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. -...
I'm not sure whether it was intended that these were not updated or whether it was because [caret requirements](https://python-poetry.org/docs/dependency-specification/#caret-requirements) behave specially for `0.y.z` and that was overlooked. I had to...
I noticed that the deserializers for `application/json` and `multipart/form-data` both support bytes values, but the deserializer for `application/x-www-form-urlencoded` does not. So in this PR I'm adding that support. I'm also...
When validating a property of type ``` type: string format: byte ``` it is assumed that the base64 encoded value can be represented as utf-8 string. As a result `InvalidSchemaFormatValue`...
This PR is build on top of: - https://github.com/p1c2u/openapi-schema-validator/pull/18 - https://github.com/p1c2u/openapi-spec-validator/pull/128 Support for Python 3.6 is dropped as in the alpha release of jsonschema.
Since the release of `openapi-spec-validator` yesterday (https://github.com/p1c2u/openapi-spec-validator/releases/tag/0.3.2), the resolved dependencies for `openapi-core` no longer work: ``` There are incompatible versions in the resolved dependencies: jsonschema=3.2.0 (from openapi-spec-validator==0.3.2->openapi-core==0.13.8 jsonschema=4.0.0 (from openapi-schema-validator==0.3.0a1->openapi-core==0.13.8...
OpenAPI v3.1 was released today: https://www.openapis.org/blog/2021/02/18/openapi-specification-3-1-released It comes with some great improvements. Are there plans to add support for the new specification?
Hi, I've just upgrade openapi-core on my project to 0.13.3, after some months without upgrading, and now nullable schemas are not validating `None` values anymore. I found a commit which...
With the latest `openapi-core` version (i.e. `0.14.2`) Falcon request factory (i.e. `FalconOpenAPIRequestFactory`) not working at all. It's the same behavior with embedded middleware and custom one. Code for reproducing: ```...