·
5 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
Fixed
- CI: ruff 0.8.x compatibility —
isinstance(v, (X, Y))forms converted toX | Yinokf/frontmatter.py(UP038). The lint job pinsruff~=0.8.0which enforces the newer syntax that newer local ruff releases don't flag. - CI: dashboard test skip when fastapi absent —
tests/test_security.py::test_dashboard_build_app_rejects_cross_originnow usespytest.importorskip("fastapi"). FastAPI is a[dashboard]extra, not[dev], so the CI test job (which installs.[dev]) was failing withModuleNotFoundError.