Skip to content

Commit e6a94e8

Browse files
committed
Prepare 0.7.0 release
1 parent a7db6e8 commit e6a94e8

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ body:
1515
attributes:
1616
label: Environment
1717
description: Describe your environment (Python version, OS, FastOpenAPI version, framework used, etc.)
18-
placeholder: Python 3.11, FastOpenAPI 0.6.0, Ubuntu 22.04, Flask 2.2
18+
placeholder: Python 3.11, FastOpenAPI 0.7.0, Ubuntu 22.04, Flask 2.2
1919
validations:
2020
required: true
2121

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to FastOpenAPI are documented in this file.
44

55
FastOpenAPI follows the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.
66

7-
## [0.7.0] - Unreleased
7+
## [0.7.0] - 2025-04-27
88

99
### Changed
1010
- Replaced `json.dumps/json.loads` with pydantic_core `to_json/from_json`

docs/en/docs/changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to FastOpenAPI will be documented in this file.
44

5+
## [0.7.0] - 2025-04-27
6+
7+
### Changed
8+
- Replaced `json.dumps/json.loads` with pydantic_core `to_json/from_json`
9+
- `_serialize_response`: model list mapping now handled by Pydantic instead of manual recursion
10+
11+
### Fixed
12+
- Issue with parsing repeated query parameters in URL.
13+
14+
### Removed
15+
- The `use_aliases` from `BaseRouter` and reverted changes from 0.6.0.
16+
517
## [0.6.0] – 2025‑04‑16
618

719
### Added

fastopenapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.0"
1+
__version__ = "0.7.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fastopenapi"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "FastOpenAPI is a library for generating and integrating OpenAPI schemas using Pydantic v2 and various frameworks (AioHttp, Falcon, Flask, Quart, Sanic, Starlette, Tornado)."
55
authors = [
66
{name = "Nikita Ryzhenkov", email = "[email protected]"}

0 commit comments

Comments
 (0)