Release Notes / Version 13.2512.0
Table Of Contents
@Param (FQN:
com.coremedia.transform.dispatch.Param) got its
parameter alias changed from type
String to String[].
The new feature is used for a typo in the
brightness operation parameter “amount” that was
misspelled as “amout”. The definition is now rewritten to also still
support “amout” if used in any stored transformation Strings:
@Operation(alias = "b")
void brightness(ImageTransformerState<Image> state,
@Param(name = "amount", alias = {"a", "amout"}) double amount,
@Param(name = "contrast", alias = "c", defaultValue = "1.0") double contrast);
Upgrade Information
The type-change of @Param.alias does not affect any
annotation usage, as former specifications like
@Param(name="op", alias="o")
will still continue to work.
If you processed @Param annotations though, you
need to adapt your code.
(CMS-28410)


