4.2.7

(fix): The generated README will now have a section that links to the generated SDK Reference (in reference.md).

1## Reference
2
3A full reference for this library can be found [here](./reference.md).

4.2.7-rc2

(fix): Pydantic utilities now correctly handles cases where you have a Pydantic model, with a list of pydantic models as a field, where those models have literals. Effectively, deep_union_pydantic_objects now handles lists of objects and merges them appropriately.


4.2.7-rc0

(fix): Dynamic header suppliers, as used within the OAuth provider are now invoked on every request, not just the first. This was a regression introduced within an earlier version that is now fixed. As a results of this fix, the refresh_token is now correctly refreshed.


4.2.5

(fix): Parameters of file upload functions now default to OMIT, not None, so that the SDK appropriately filters out unset parameters, while still allowing for user specified None values.



4.2.2

(fix): The content type of non-file properties is now respected for multipart requests. For example, if you have a type called metadata that has the content type application/json, then it will be sent as:

1"metadata": (None, json.dumps(jsonable_encoder(metadata)), "application/json"),

4.2.1

(fix): When the generator runs bash commands such as poetry install and there is a failure, now the stderr and stdout is logged to help improve user debugging.


4.0.0

(fix): Generated tests that expect an empty result when they are of type text (not JSON) now appropriately expect an empty string instead of None for async functions as well. Version 3.3.4 fixed this for sync functions only, which was a bug.