Skip to content

Release 0.10.0 (2023-02-21)

Pre-release
Pre-release
Compare
Choose a tag to compare
@alexander-schranz alexander-schranz released this 21 Feb 13:54
9ec2faa

Breaking Changes | Full Changelog

Breaking Changes

Add extension placeholder to serialized medias

Before this update the preferred extension was always added to the uri.
Now the preferred extension is extracted into a new field preferredExtension and in the uri the placeholder {extension} is used instead of the extension.

For non-image medias the formatUri as well as the formatPreferredExtension fields are omitted.

Before:

{
    "formatUri": "/media/1/{format}/media-1.png?v=1-0"
}

After:

{
    "formatPreferredExtension": "png",
    "formatUri": "/media/1/{format}/media-1.{extension}?v=1-0"
}