Skip to content

Commit 04b30a9

Browse files
Release 0.21.4 (#1106)
> [!IMPORTANT] > Merging this pull request will create this release ## Fixes ### Allow OpenAPI 3.1-style `exclusiveMinimum` and `exclusiveMaximum` Fixed by PR #1092. Thanks @mikkelam! ### Add missing `cast` import when using `const` Fixed by PR #1072. Thanks @dorcohe! ### Correctly resolve references to a type that is itself just a single allOf reference PR #1103 fixed issue #1091. Thanks @eli-bl! ### Support `const` booleans and floats Fixed in PR #1086. Thanks @flxdot! Co-authored-by: knope-bot[bot] <152252888+knope-bot[bot]@users.noreply.github.com>
1 parent db7a064 commit 04b30a9

6 files changed

+21
-29
lines changed

.changeset/add_backward_compatibility_for_exclusiveminimum_and_exclusivemaximum.md

-7
This file was deleted.

.changeset/add_missing_cast_import_when_using_const.md

-7
This file was deleted.

.changeset/correctly_resolve_references_to_a_type_that_is_itself_just_a_single_allof_reference.md

-7
This file was deleted.

.changeset/support_const_booleans_and_floats.md

-7
This file was deleted.

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,26 @@ Programmatic usage of this project (e.g., importing it as a Python module) and t
1313

1414
The 0.x prefix used in versions for this project is to indicate that breaking changes are expected frequently (several times a year). Breaking changes will increment the minor number, all other changes will increment the patch number. You can track the progress toward 1.0 [here](https://github.com/openapi-generators/openapi-python-client/projects/2).
1515

16+
## 0.21.4 (2024-08-25)
17+
18+
### Fixes
19+
20+
#### Allow OpenAPI 3.1-style `exclusiveMinimum` and `exclusiveMaximum`
21+
22+
Fixed by PR #1092. Thanks @mikkelam!
23+
24+
#### Add missing `cast` import when using `const`
25+
26+
Fixed by PR #1072. Thanks @dorcohe!
27+
28+
#### Correctly resolve references to a type that is itself just a single allOf reference
29+
30+
PR #1103 fixed issue #1091. Thanks @eli-bl!
31+
32+
#### Support `const` booleans and floats
33+
34+
Fixed in PR #1086. Thanks @flxdot!
35+
1636
## 0.21.3 (2024-08-18)
1737

1838
### Features

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies = [
1818
"typing-extensions>=4.8.0,<5.0.0",
1919
]
2020
name = "openapi-python-client"
21-
version = "0.21.3"
21+
version = "0.21.4"
2222
description = "Generate modern Python clients from OpenAPI"
2323
keywords = [
2424
"OpenAPI",

0 commit comments

Comments
 (0)