FEAT: Modernized to support latest Pythons and DRF JSONAPI

This commit is contained in:
2026-08-23 12:33:13 +02:00
parent 533789645a
commit ddcf8fb039
22 changed files with 718 additions and 138 deletions
+17
View File
@@ -0,0 +1,17 @@
# Changelog
## 1.1.0
- Support Python 3.10 through 3.14 and DRF JSON:API 7.1 through 8.1.
- Add sanitized exception handling with opaque error identifiers.
- Add explicit conflict exceptions instead of converting every database
integrity failure to HTTP 409.
- Add hardened model-viewset and generic-view base classes.
- Make serializer relationship discovery safe without request context and
avoid duplicate field names.
- Add unit, packaging, lint, and compatibility-matrix verification.
## 1.0.6
- Add PATCH relationship-field handling.
- Update the DRF JSON:API dependency to the 7.1 line.