Skip to content

Commit 4f416e2

Browse files
committed
Merge branch 'main' into issue1120-nullable-enum
2 parents 62e0c02 + 861ef56 commit 4f416e2

File tree

242 files changed

+5024
-1538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+5024
-1538
lines changed
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
default: major
3+
---
4+
5+
# Drop support for Python 3.8
6+
7+
Python 3.8 is no longer supported. "New" 3.9 syntax, like generics on builtin collections, is used both in the generator
8+
and the generated code.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
default: major
3+
---
4+
5+
# `type` is now a reserved field name
6+
7+
Because `type` is used in type annotations now, it is no longer a valid field name. Fields which were previously named
8+
`type` will be renamed to `type_`.

.github/workflows/checks.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
test:
1212
strategy:
1313
matrix:
14-
python: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
14+
python: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
1515
os: [ ubuntu-latest, macos-latest, windows-latest ]
1616
runs-on: ${{ matrix.os }}
1717
steps:
18-
- uses: actions/checkout@v4.1.7
18+
- uses: actions/checkout@v4.2.2
1919
- name: Set up Python
20-
uses: actions/setup-python@v5.2.0
20+
uses: actions/setup-python@v5.3.0
2121
with:
2222
python-version: ${{ matrix.python }}
2323

@@ -64,7 +64,7 @@ jobs:
6464
if: matrix.os == 'ubuntu-latest'
6565

6666
- name: Store coverage report
67-
uses: actions/[email protected].0
67+
uses: actions/[email protected].3
6868
if: matrix.os == 'ubuntu-latest'
6969
with:
7070
name: coverage-${{ matrix.python }}
@@ -77,7 +77,7 @@ jobs:
7777
needs: test
7878
runs-on: ubuntu-latest
7979
steps:
80-
- uses: actions/checkout@v4.1.7
80+
- uses: actions/checkout@v4.2.2
8181
- uses: actions/setup-python@v5
8282
with:
8383
python-version: "3.12"
@@ -107,7 +107,7 @@ jobs:
107107
.venv/bin/python -m coverage report --fail-under=100
108108
109109
- name: Upload HTML report if check failed.
110-
uses: actions/[email protected].0
110+
uses: actions/[email protected].3
111111
with:
112112
name: html-report
113113
path: htmlcov
@@ -127,11 +127,11 @@ jobs:
127127
ports:
128128
- "3000:3000"
129129
steps:
130-
- uses: actions/checkout@v4.1.7
130+
- uses: actions/checkout@v4.2.2
131131
- name: Set up Python
132-
uses: actions/setup-python@v5.2.0
132+
uses: actions/setup-python@v5.3.0
133133
with:
134-
python-version: "3.8"
134+
python-version: "3.9"
135135
- name: Get Python Version
136136
id: get_python_version
137137
run: echo "python_version=$(python --version)" >> $GITHUB_OUTPUT

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
permissions:
1313
id-token: write
1414
steps:
15-
- uses: actions/checkout@v4.1.7
15+
- uses: actions/checkout@v4.2.2
1616
- name: Install Hatchling
1717
run: pip install --upgrade hatchling
1818
- name: Build
1919
run: hatchling build
2020
- name: Push to PyPI
21-
uses: pypa/gh-action-pypi-publish@v1.10.1
21+
uses: pypa/gh-action-pypi-publish@v1.12.2
2222
with:
2323
attestations: true

CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,46 @@ 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.7 (2024-10-28)
17+
18+
### Fixes
19+
20+
- allow required fields list to be specified as empty (#651) (#1149)
21+
- import cast for required const properties, since it's used in the template (#1153)
22+
23+
## 0.21.6 (2024-10-20)
24+
25+
### Features
26+
27+
- update Ruff to >=0.2,<0.8 (#1137)
28+
- Add UUID string format. Thanks @estyrke! (#1140)
29+
- Support OpenAPI 3.1 prefixItems property for arrays. Thanks @estyrke! (#1141)
30+
31+
#### Add `literal_enums` config setting
32+
33+
Instead of the default `Enum` classes for enums, you can now generate `Literal` sets wherever `enum` appears in the OpenAPI spec by setting `literal_enums: true` in your config file.
34+
35+
```yaml
36+
literal_enums: true
37+
```
38+
39+
Thanks to @emosenkis for PR #1114 closes #587, #725, #1076, and probably many more.
40+
Thanks also to @eli-bl, @expobrain, @theorm, @chrisguillory, and anyone else who helped getting to this design!
41+
42+
### Fixes
43+
44+
- Typo in docstring (#1128)
45+
46+
#### Use literal value instead of `HTTPStatus` enum when checking response statuses
47+
48+
Python 3.13 renamed some of the `HTTPStatus` enum members, which means clients generated with Python 3.13 may not work
49+
with older versions of Python. This change stops using the `HTTPStatus` enum directly when checking response statuses.
50+
51+
Statuses will still be checked for validity at generation time, and transformed into `HTTPStatus` _after_ being checked
52+
at runtime.
53+
54+
This may cause some linters to complain.
55+
1656
## 0.21.5 (2024-09-07)
1757

1858
### Features

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To request a feature:
4141
### Setting up a Dev Environment
4242

4343
1. Make sure you have [PDM](https://pdm-project.org) installed and up to date.
44-
2. Make sure you have a supported Python version (e.g. 3.8) installed.
44+
2. Make sure you have a supported Python version (e.g. 3.13) installed.
4545
3. Use `pdm install` in the project directory to create a virtual environment with the relevant dependencies.
4646

4747
### Writing tests

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,17 @@ class_overrides:
9797
9898
The easiest way to find what needs to be overridden is probably to generate your client and go look at everything in the `models` folder.
9999

100+
### literal_enums
101+
102+
By default, `openapi-python-client` generates classes inheriting for `Enum` for enums. It can instead use `Literal`
103+
values for enums by setting this to `true`:
104+
105+
```yaml
106+
literal_enums: true
107+
```
108+
109+
This is especially useful if enum values, when transformed to their Python names, end up conflicting due to case sensitivity or special symbols.
110+
100111
### project_name_override and package_name_override
101112

102113
Used to change the name of generated client library project/package. If the project name is changed but an override for the package name

end_to_end_tests/3.1_specific.openapi.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,34 @@ paths:
4747
"application/json":
4848
schema:
4949
const: "Why have a fixed response? I dunno"
50+
"/prefixItems":
51+
post:
52+
tags: [ "prefixItems" ]
53+
requestBody:
54+
required: true
55+
content:
56+
"application/json":
57+
schema:
58+
type: object
59+
properties:
60+
prefixItemsAndItems:
61+
type: array
62+
prefixItems:
63+
- type: string
64+
const: "prefix"
65+
- type: string
66+
items:
67+
type: number
68+
prefixItemsOnly:
69+
type: array
70+
prefixItems:
71+
- type: string
72+
- type: number
73+
maxItems: 2
74+
responses:
75+
"200":
76+
description: "Successful Response"
77+
content:
78+
"application/json":
79+
schema:
80+
type: string

end_to_end_tests/__snapshots__/test_end_to_end.ambr

+20-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@
99
Circular $ref in request body
1010

1111

12+
If you believe this was a mistake or this tool is missing a feature you need, please open an issue at https://github.com/openapi-generators/openapi-python-client/issues/new/choose
13+
14+
'''
15+
# ---
16+
# name: test_documents_with_errors[invalid-uuid-defaults]
17+
'''
18+
Generating /test-documents-with-errors
19+
Warning(s) encountered while generating. Client was generated, but some pieces may be missing
20+
21+
WARNING parsing PUT / within default. Endpoint will not be generated.
22+
23+
cannot parse parameter of endpoint put_: Invalid UUID value: 3
24+
25+
26+
WARNING parsing POST / within default. Endpoint will not be generated.
27+
28+
cannot parse parameter of endpoint post_: Invalid UUID value: notauuid
29+
30+
1231
If you believe this was a mistake or this tool is missing a feature you need, please open an issue at https://github.com/openapi-generators/openapi-python-client/issues/new/choose
1332

1433
'''
@@ -36,7 +55,7 @@
3655

3756
Path parameter must be required
3857

39-
Parameter(name='optional', param_in=<ParameterLocation.PATH: 'path'>, description=None, required=False, deprecated=False, allowEmptyValue=False, style=None, explode=False, allowReserved=False, param_schema=Schema(title=None, multipleOf=None, maximum=None, exclusiveMaximum=None, minimum=None, exclusiveMinimum=None, maxLength=None, minLength=None, pattern=None, maxItems=None, minItems=None, uniqueItems=None, maxProperties=None, minProperties=None, required=None, enum=None, const=None, type=<DataType.STRING: 'string'>, allOf=[], oneOf=[], anyOf=[], schema_not=None, items=None, properties=None, additionalProperties=None, description=None, schema_format=None, default=None, nullable=False, discriminator=None, readOnly=None, writeOnly=None, xml=None, externalDocs=None, example=None, deprecated=None), example=None, examples=None, content=None)
58+
Parameter(name='optional', param_in=<ParameterLocation.PATH: 'path'>, description=None, required=False, deprecated=False, allowEmptyValue=False, style=None, explode=False, allowReserved=False, param_schema=Schema(title=None, multipleOf=None, maximum=None, exclusiveMaximum=None, minimum=None, exclusiveMinimum=None, maxLength=None, minLength=None, pattern=None, maxItems=None, minItems=None, uniqueItems=None, maxProperties=None, minProperties=None, required=None, enum=None, const=None, type=<DataType.STRING: 'string'>, allOf=[], oneOf=[], anyOf=[], schema_not=None, items=None, prefixItems=[], properties=None, additionalProperties=None, description=None, schema_format=None, default=None, nullable=False, discriminator=None, readOnly=None, writeOnly=None, xml=None, externalDocs=None, example=None, deprecated=None), example=None, examples=None, content=None)
4059

4160
If you believe this was a mistake or this tool is missing a feature you need, please open an issue at https://github.com/openapi-generators/openapi-python-client/issues/new/choose
4261

end_to_end_tests/baseline_openapi_3.0.json

+60
Original file line numberDiff line numberDiff line change
@@ -1666,6 +1666,47 @@
16661666
}
16671667
}
16681668
}
1669+
},
1670+
"/models/oneof-with-required-const": {
1671+
"get": {
1672+
"responses": {
1673+
"200": {
1674+
"description": "OK",
1675+
"content": {
1676+
"application/json": {
1677+
"schema": {
1678+
"oneOf": [
1679+
{
1680+
"type": "object",
1681+
"properties": {
1682+
"type": {
1683+
"const": "alpha"
1684+
},
1685+
"color": {
1686+
"type": "string"
1687+
}
1688+
},
1689+
"required": ["type"]
1690+
},
1691+
{
1692+
"type": "object",
1693+
"properties": {
1694+
"type": {
1695+
"const": "beta"
1696+
},
1697+
"texture": {
1698+
"type": "string"
1699+
}
1700+
},
1701+
"required": ["type"]
1702+
}
1703+
]
1704+
}
1705+
}
1706+
}
1707+
}
1708+
}
1709+
}
16691710
}
16701711
},
16711712
"components": {
@@ -1714,6 +1755,8 @@
17141755
"aCamelDateTime",
17151756
"a_date",
17161757
"a_nullable_date",
1758+
"a_uuid",
1759+
"a_nullable_uuid",
17171760
"required_nullable",
17181761
"required_not_nullable",
17191762
"model",
@@ -1786,6 +1829,23 @@
17861829
"type": "string",
17871830
"format": "date"
17881831
},
1832+
"a_uuid": {
1833+
"title": "A Uuid",
1834+
"type": "string",
1835+
"format": "uuid"
1836+
},
1837+
"a_nullable_uuid": {
1838+
"title": "A Nullable Uuid",
1839+
"type": "string",
1840+
"format": "uuid",
1841+
"nullable": true,
1842+
"default": "07EF8B4D-AA09-4FFA-898D-C710796AFF41"
1843+
},
1844+
"a_not_required_uuid": {
1845+
"title": "A Not Required Uuid",
1846+
"type": "string",
1847+
"format": "uuid"
1848+
},
17891849
"1_leading_digit": {
17901850
"title": "Leading Digit",
17911851
"type": "string"

0 commit comments

Comments
 (0)