1.5.1
manuel-mauky
released this
22 Jun 12:47
·
226 commits
to stable
since this release
This is a bugfix release.
ModelWrapper
- #404 A
NullPointerException
was thrown whenuseCurrentValuesAsDefault
is invoked when no model instance is set in the ModelWrapper - #402 When a new model was set the default values were overwritten. Thx to @johnp for fixing.
- #393 When the user created a field of Type
StringProperty
that uses another StringProperty as accessor (instead of simple getter and setter), the default value wasn't applied. Thx to @johnp for fixing.
Validation
- #398 In version 1.5.0 we introduced
equals
andhashCode
methods forValidationMessage
class. This change introduces a problem with theCompositeValidator
when multipe validators were producingValidationMessages
with equal message text and severity. Now the CompositeValidator handles such cases correctly. Thx to @tfleis for reporting.
Other
- #310
DelegateCommand
wasn't executing callbacks for "succeeded" and "failed" when used in synchronous mode.