Skip to content

Releases: openapi-generators/openapi-python-client

0.11.5

13 Aug 18:49
7955faa
Compare
Choose a tag to compare

0.11.5

Features

Fixes

0.11.4

03 Jul 00:37
Compare
Choose a tag to compare

0.11.4

Fixes

  • Invalid code generation with some oneOf and anyOf combinations [#603, #642]. Thanks @jselig-rigetti!
  • Allow relative references in all URLs [#630]. Thanks @jtv8!

0.11.3 - 2022-06-09

10 Jun 02:06
Compare
Choose a tag to compare

Fixes

  • Allow tokenUrl to be relative [#618]. Thanks @Fokko!

0.11.2 - 2022-06-02

03 Jun 02:26
Compare
Choose a tag to compare

Features

  • Allow httpx 0.23.x (#617)

Fixes

0.11.1 - 2022-01-29

29 Jan 22:46
Compare
Choose a tag to compare

Features

  • Allow httpx 0.22.* in generated clients [#577]

Fixes

  • Type annotations for optional dates and datetimes in multipart/form [#580]
  • Error generating clients with dates or datetimes in multipart/form [#579]. Thanks @lsaavedr!
  • Include nested packages in generated setup.py [#575, #576]. Thanks @tedo-benchling!

0.11.0 - 2022-01-18

19 Jan 02:54
Compare
Choose a tag to compare

Breaking Changes

  • Minimum required attrs version in generated clients is now 21.3.0.
  • Python 3.6 is officially not supported. The minimum version has been updated to reflect this.
  • Validation of OpenAPI documents is now more strict.
  • Model names generated from OpenAPI names with periods (.) in them will be different.
  • Header values will be explicitly transformed or omitted instead of blindly passed to httpx as-is.
  • datetime is now considered a reserved word everywhere, so any properties which were named datetime will now be named datetime_.
  • File uploads can now only accept binary payloads (BinaryIO).

Features

  • Don't set a cap on allowed attrs version.
  • use poetry-core as build backend in generated clients [#565]. Thanks @fabaff!
  • Use httpx.request to allow bodies for all type of requests [#545, #547]. Thanks @MalteBecker!

Fixes

0.10.8 - 2021-12-18

19 Dec 02:57
Compare
Choose a tag to compare

Features

  • New and improved docstrings in generated functions and classes [#503, #505, #551]. Thanks @rtaycher!
  • Support httpx 0.21.* (#537)

Fixes

0.10.7 - 2021-10-31

31 Oct 17:02
Compare
Choose a tag to compare

Fixes

0.10.6 - 2021-10-26

25 Oct 22:23
Compare
Choose a tag to compare

Features

  • Improve error messages related to invalid arrays and circular or recursive references [#519].
  • Add httpx 0.20.* support [#514].

Fixes

0.10.5 - 2021-09-25

26 Sep 04:26
Compare
Choose a tag to compare

Features

  • Add verify_ssl option to generated Client, allowing users to ignore or customize ssl verification (#497). Thanks @rtaycher!

Fixes

  • Properly label a path template issue as a warning (#494). Thanks @chamini2!
  • Don't allow mixed types in enums.
  • Don't crash when a null is in an enum (#500). Thanks @juspence!