You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.1.1] - 2024-08-01
9
+
10
+
### Added
11
+
12
+
- Added external documentation pointing to the official Problem details RFC in the Problem OpenAPI Schema
13
+
14
+
### Changed
15
+
16
+
-`exc_type` simplified property returned in problem responses for unhandled errors (was `<class 'path.to.module.YourError'>`, now `path.to.module.YourError`)
17
+
-`null`/`None` values are now omitted from Problem response. Problem JSON Schema has been updated to reflect that
18
+
19
+
### Fixed
20
+
21
+
- Constraints on Problem status code (`100 <= status code < 600`) is now properly displayed in the Problem JSON Schema
Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[project]
2
2
name = "fastapi-problem-details"
3
-
version = "0.1.0"
3
+
version = "0.1.1"
4
4
description = "Structure your FastAPI APIs error responses with consistent and machine readable format using the RFC 9457 \"Problem Details for HTTP APIs\" standard"
0 commit comments