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
+11
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,17 @@ Programmatic usage of this project (e.g., importing it as a Python module) and t
13
13
14
14
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).
15
15
16
+
## 0.13.2
17
+
18
+
### Features
19
+
20
+
- Always generate enums with sorted members (#728)
21
+
22
+
### Fixes
23
+
24
+
- Prevent backslashes in descriptions from breaking docstrings [#735]. Thanks @robertschweizer & @bryan-hunt! (#735)
25
+
- Respect `required` field in parameters included with `$ref` (#737)
Copy file name to clipboardExpand all lines: end_to_end_tests/golden-record/my_test_api_client/api/parameter_references/get_parameter_references_path_param.py
Copy file name to clipboardExpand all lines: end_to_end_tests/golden-record/my_test_api_client/api/parameters/delete_common_parameters_overriding_param.py
Copy file name to clipboardExpand all lines: end_to_end_tests/golden-record/my_test_api_client/api/parameters/get_common_parameters_overriding_param.py
Copy file name to clipboardExpand all lines: end_to_end_tests/golden-record/my_test_api_client/api/parameters/get_same_name_multiple_locations_param.py
Copy file name to clipboardExpand all lines: end_to_end_tests/golden-record/my_test_api_client/api/responses/post_responses_unions_simple_before_complex.py
+2-1
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ def _get_kwargs(
26
26
"headers": headers,
27
27
"cookies": cookies,
28
28
"timeout": client.get_timeout(),
29
+
"follow_redirects": client.follow_redirects,
29
30
}
30
31
31
32
@@ -37,7 +38,7 @@ def _parse_response(
37
38
38
39
returnresponse_200
39
40
ifclient.raise_on_unexpected_status:
40
-
raiseerrors.UnexpectedStatus(f"Unexpected status code: {response.status_code}")
0 commit comments