Releases: runceel/ReactiveProperty
Releases · runceel/ReactiveProperty
Release 9.2.0
- Update System.Reactive to v6.0.0
Release 9.2.0-pre202305241301
Changes
- Update System.Reactive to v6.0.0
Release 9.1.2
Fix
- Fix skip validation process case when calling
ForceNotify
method ofValidatableReactiveProperty<T>
.
Add
- Add support for
ValidatableReactiveProperty
toReactivePropertiesValidator<T>
for Blazor.
Release 9.0.0
This is a big major update:
The concepts are performance and focus on ReactiveProperty.Core
package.
Changes
- Move
AsyncReactiveCommand
toReactiveProperty.Core
package. - Move
ObserveProperty
extension method toReactiveProperty.Core
package. - Move
ToReactivePropertySlimAsSynchronized
toReactiveProperty.Core
package. - Add
ReactiveCommandSlim
toReactiveProperty.Core
package.ReactiveCommandSlim
has a behavior change fromReactiveCommand
. WhenExecute
method called,ReactiveCommand
didn't checkCanExecute
state.ReactiveCommandSlim
checkCanExecute
state, and ifCanExecute
is false, thenExecute
method does nothing.
- Add
CompositeDisposable
toReactiveProperty.Core
package. - Add
Select
andWhere
extension methods forIObservable<T>
andCombineLatest
extension method forIEnumerable<IObservable<T>>
toReactive.Bindings.TinyLinq
namespace ofReactiveProperty.Core
package. - Add
ValidatableReactiveProperty
toReactiveProperty.Core
package. - Move
BooleanNotifier
,BusyNotifier
,CountNotifier
,MessageBroker
andAsyncMessageBroker
toReactiveProperty.Core
package. - Add
CollectionUtilities.ObserveElementProperty
andObserveElementObservableProperty
forIReadOnlyCollection<T>
toReactiveProperty
package. - All classes of
ReactiveProperty.Core
are NOT thread safe. If you want to access those classes from multi threads, please access from single thread.
Release 9.0.0-pre202301050852
Many classes move to ReactiveProperty.Core package from ReactiveProperty.
See #402.
Release 8.2.0
No feature updates. Just re-build on .NET 7 SDK.
- Add .NET 7 as target framework.
Release 8.1.2
Fix
- Nullable warning on SetValidateNotifyError method of ReactiveProperty class #385
Release 8.1.1
Bug fix
- Fix: Index out of range exception in FilteredReadOnlyObservableCollection #379
Release 8.1.0
Added
- Add ReactiveProperty.Blazor package to support Blazor's
EditForm
validation feature with ReactiveProperty.ReactivePropertiesValidator
component for that.
Release 8.0.5
No any new features. Just adding support for Source Link.