Skip to content

v1.0.0-beta14

Compare
Choose a tag to compare
@Foso Foso released this 24 Sep 12:06
· 640 commits to master since this release

NEW:

Query parameters can now be nullable, null values will be ignored in requests
Function return types can now be nullable

FIX:

Url annotation not resolved correctly #65

BREAKING CHANGES:

Changed naming of Converters:
    SuspendResponseConverter:
        is now called RequestConverter
        the wrapSuspendResponse is now called convertRequest.
        returnTypeName is replaced through typeData, you can use typeData.qualifiedName to get the same value as returnTypeName RequestConverter need to be added with the requestConverter() on your Ktorfit object.
        https://foso.github.io/Ktorfit/requestconverter/
    ResponseConverters:
        returnTypeName is replaced through typeData, you can use typeData.qualifiedName to get the same value as returnTypeName         
        https://foso.github.io/Ktorfit/responseconverter/

Full Changelog: v1.0.0-beta13...v1.0.0-beta14