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
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,18 @@ All notable changes to FastOpenAPI are documented in this file.
4
4
5
5
FastOpenAPI follows the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.
6
6
7
+
## [0.6.0] – 2025‑04‑16
8
+
9
+
### Added
10
+
- The `use_aliases` parameter was added to the `BaseRouter` constructor. Default is `True`. To preserve the previous behavior (without using aliases from Pydantic), set `use_aliases=False`.
11
+
12
+
### Changed
13
+
- The `_serialize_response method` is now an instance method (was a `@staticmethod`) — to support `use_aliases`.
14
+
- The `_get_model_schema` method was temporarily changed from a `@classmethod` to a regular method — for consistent behavior with `use_aliases`.
15
+
16
+
### Deprecated
17
+
-`use_aliases` is deprecated and will be removed in version 0.7.0.
Copy file name to clipboardExpand all lines: docs/en/docs/changelog.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,19 @@
2
2
3
3
All notable changes to FastOpenAPI will be documented in this file.
4
4
5
+
## [0.6.0] – 2025‑04‑16
6
+
7
+
### Added
8
+
- The `use_aliases` parameter was added to the `BaseRouter` constructor. Default is `True`. To preserve the previous behavior (without using aliases from Pydantic), set `use_aliases=False`.
9
+
10
+
### Changed
11
+
- The `_serialize_response method` is now an instance method (was a `@staticmethod`) — to support `use_aliases`.
12
+
- The `_get_model_schema` method was temporarily changed from a `@classmethod` to a regular method — for consistent behavior with `use_aliases`.
13
+
14
+
### Deprecated
15
+
-`use_aliases` is deprecated and will be removed in version 0.7.0.
0 commit comments