Skip to content

Commit a90a01b

Browse files
committed
doc: prepare release 0.1.1
1 parent d51ffdc commit a90a01b

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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
22+
823
## [0.1.0] - 2024-07-30
924

1025
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fastapi-problem-details"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Structure your FastAPI APIs error responses with consistent and machine readable format using the RFC 9457 \"Problem Details for HTTP APIs\" standard"
55
authors = [{ name = "g0di", email = "[email protected]" }]
66
dependencies = ["fastapi>=0.100.0", "pydantic>=2.0.0"]

0 commit comments

Comments
 (0)