Release 7.7.0
- Revert exception handling logic of
ReadOnlyReactiveProperty
/ReadOnlyReactivePropertySlim
to same as version 6- Version 7.0 to 7.6: When throwing an exception on Rx method chain such as
Select
,ReadOnlyReactiveProperty
ignore the exception. - After 7.7 : When throwing an exception on Rx method chain such as
Select
,ReadOnlyReactiveProperty
throw the exception. This behavior is the same as version 6 or previous.
- Version 7.0 to 7.6: When throwing an exception on Rx method chain such as
If you would like to ignore exceptions, please set ReactivePropertyMode.IgnoreException
to mode
argument to constructor or factory methods such as ToReadOnlyReactiveProperty
method.