Skip to content

Release 9.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Feb 11:42
c06c90a

This is a big major update:

The concepts are performance and focus on ReactiveProperty.Core package.

Changes

  • Move AsyncReactiveCommand to ReactiveProperty.Core package.
  • Move ObserveProperty extension method to ReactiveProperty.Core package.
  • Move ToReactivePropertySlimAsSynchronized to ReactiveProperty.Core package.
  • Add ReactiveCommandSlim to ReactiveProperty.Core package.
    • ReactiveCommandSlim has a behavior change from ReactiveCommand. When Execute method called, ReactiveCommand didn't check CanExecute state. ReactiveCommandSlim check CanExecute state, and if CanExecute is false, then Execute method does nothing.
  • Add CompositeDisposable to ReactiveProperty.Core package.
  • Add Select and Where extension methods for IObservable<T> and CombineLatest extension method for IEnumerable<IObservable<T>> to Reactive.Bindings.TinyLinq namespace of ReactiveProperty.Core package.
  • Add ValidatableReactiveProperty to ReactiveProperty.Core package.
  • Move BooleanNotifier, BusyNotifier, CountNotifier, MessageBroker and AsyncMessageBroker to ReactiveProperty.Core package.
  • Add CollectionUtilities.ObserveElementProperty and ObserveElementObservableProperty for IReadOnlyCollection<T> to ReactiveProperty 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.