Changelog
Contents
Changelog¶
All notable changes to openapi_builder will be documented here.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Categories for changes are: Added, Changed, Deprecated, Removed, Fixed, Security.
Unreleased¶
Release date:
Version 0.2.8¶
Release date: 2022-02-18
Fixed bug with
Schema.default
when the default value wasNone
.
Version 0.2.7¶
Release date: 2022-02-16
Updated
add_documentation
arguments:responses
is nowresponse
, and accepts either adict
or any value. In case any value is passed, it’s converted into{200: <value>}
.input_schema
renamed intorequest_data
.query_schema
renamed intorequest_query
.
Version 0.2.6¶
Release date: 2022-02-12
Updated converters, and how to register them. This can now be done via the
Options
.
Version 0.2.5¶
Release date: 2022-02-06
Added default converters:
openapi_builder.converters.defaults
.Added
set_resource_options
andset_schema_options
.Changed specification to use
dataclass()
.
Version 0.2.4¶
Release date: 2022-01-09
Added tag support per endpoint
Added configuration page
Added support for halogen (including example).
Added class decorator for registering converters:
openapi_builder.converters.base.register_converter
.Removed
custom_converters
option toadd_documentation
.Changed loading converters lazily.
Added url parameter converters:
openapi_builder.converters.parameter
.