openapi-core icon indicating copy to clipboard operation
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.

Results 138 openapi-core issues
Sort by recently updated
recently updated
newest added

### Actual Behavior If I visit https://openapi-core.readthedocs.io/en/latest/integrations/fastapi.html and click "see `starlette` integration" ![Screenshot 2024-07-31 at 07 12 11](https://github.com/user-attachments/assets/c3766255-2da4-453a-a30a-5332d4c6015f) Then I get a 404, because the extension is .rst `https://openapi-core.readthedocs.io/en/latest/integrations/starlette.rst` ###...

kind/bug/confirmed
area/documentation
kind/bug

### Actual Behavior ``` ============================================== FAILURES ============================================== ______________________________ TestImportModelCreate.test_dynamic_model ______________________________ self = def test_dynamic_model(self): factory = ModelPathFactory() schema = SchemaPath.from_dict({"x-model": "TestModel"}) test_model_class = factory.create(schema, ["name"]) assert is_dataclass(test_model_class) assert test_model_class.__name__ ==...

kind/bug

Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.2.2 to 2.5.0. Release notes Sourced from urllib3's releases. 2.5.0 🚀 urllib3 is fundraising for HTTP/2 support urllib3 is raising ~$40,000 USD to release HTTP/2 support and...

dependencies
python

Bumps [pytest-flake8](https://github.com/coherent-oss/pytest-flake8) from 0.1 to 1.3.0. Changelog Sourced from pytest-flake8's changelog. v1.3.0 Features Compatible for Flake8 from version flake8>=4. (#4) v1.2.2 Bugfixes Pin to flake8<6 as it's incompatible. (#2) Remove...

dependencies
python

Bumps [djangorestframework](https://github.com/encode/django-rest-framework) from 3.15.2 to 3.16.0. Release notes Sourced from djangorestframework's releases. v3.16.0 This release is considered a significant release to improve upstream support with Django and Python. Some of...

dependencies
python

Bumps [requests](https://github.com/psf/requests) from 2.32.3 to 2.32.4. Release notes Sourced from requests's releases. v2.32.4 2.32.4 (2025-06-10) Security CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted environment will retrieve...

dependencies
python

Bumps [starlette](https://github.com/encode/starlette) from 0.44.0 to 0.46.2. Release notes Sourced from starlette's releases. Version 0.46.2 What's Changed Use correct index on backwards compatible logic in TemplateResponse by @​alex-oleshkevich in encode/starlette#2909 Prevents...

dependencies
python

Bumps [werkzeug](https://github.com/pallets/werkzeug) from 3.0.6 to 3.1.3. Release notes Sourced from werkzeug's releases. 3.1.3 This is the Werkzeug 3.1.3 fix release, which fixes bugs but does not otherwise change behavior and...

dependencies
python

### Actual Behavior I have this in my api spec: ```json "properties": { "active": { "type": "boolean" } } ``` If in my request body I pass: ```json { "active":...

kind/bug