Releases: reactiveui/ReactiveUI
9.9.5
Overview
This release is a bug maintenance release. It addresses that you could not use interfaces in ReactiveUI binding, and also now in .NET Native applications when first adding the NuGet reference we add a configuration file to allow for compiling.
What's Changed
- fix: .NET Native Support (#1937) @worldbeater
- housekeeping: Make ReactiveUI compile on VisualStudio for Mac (#1932) @glennawatson
- housekeeping: Prefer WireUpControls over manual lookup (#1934) @worldbeater
- Fix: class generic constraint prevents interface use on WhenAny (#1940) @ajpinedam
9.9.1
Overview
We have a bug fix from a new contributor @ajpinedam that prevents inaccurate error messages being spammed for the View Locator's.
There is also a fix up in terms of the memory used by the ObservableAsPropertyHelper<T>
which reduced the memory dramatically used in the default instance.
Creating 3000 OAPH on .Net Core 2.1 and System.Reactive 4.0.
Method | Mean | Error | StdDev | Gen 0/1k Op | Gen 1/1k Op | Gen 2/1k Op | Allocated Memory/Op |
---|---|---|---|---|---|---|---|
Create | 130.4 ms | 2.567 ms | 5.127 ms | 6000.0000 | 2000.0000 | 1000.0000 | 38.14 MB |
With the new implementation:
Method | Mean | Error | StdDev | Gen 0/1k Op | Gen 1/1k Op | Gen 2/1k Op | Allocated Memory/Op |
---|---|---|---|---|---|---|---|
Create | 134.4 ms | 2.680 ms | 7.775 ms | 5000.0000 | 2000.0000 | 750.0000 | 27.29 MB |
What's changed:
- fix: Memory usage of OAPH and ReactiveObject (#1936) @glennawatson and @cabauman
- Fix 1918 removing misleading debug information (#1935) @ajpinedam
9.8.23
9.8.22
Overview
This is a maintenance release to fix a regression on the UWP platform where the WhenActivate would happen too soon.
What's changed:
- Fix UWP activating too soon (#1930) @glennawatson
- housekeeping: Fix ReactiveCommand tests failing on .net core 2.0 (#1929) @glennawatson
- housekeeping: .NET Core App 2.0 tests & Tests Cleanups (#1926) @glennawatson
9.8.19
Overview
This is a bug fix to fix a ComboBox RxUI binding issue. Also some documentation updates thanks to @worldbeater
What's changed
- fix: Fix when a combobox SelectedIndex -1 it would crash (#1927) @glennawatson
- housekeeping: Change over to using the github svg generator (#1925) @glennawatson
- housekeeping: Add ReactiveUI.Fody package to Table (#1924) @worldbeater
- housekeeping: Use the new Logo in README (#1923) @worldbeater
- housekeeping: update nuget packages to show new logo @worldbeater
10.0.0-preview.3
9.8.15
We are updating our branding with a new logo.
What's Changed
- housekeeping: Show stable NuGet versions (#1921) @worldbeater
- housekeeping: Use the new Logo in README (#1923) @worldbeater
9.8.13
Overview
- Minor bug fixes and updating some NuGet dependencies.
Changes:
- housekeeping: Make debugtype embedded. @glennawatson
- housekeeping: Add ReactiveCommand usage examples (#1919) @worldbeater
- housekeeping: Bump Microsoft.Xaml.Behaviors.Uwp.Managed from 1.1.0 to 2.0.0 (#1916) @dependabot[bot]
- housekeeping; Add dependabot logo to the project readme.md @glennawatson
9.8.9
Overview
This is a bug fix release, it fixes a issue with WPF where if you use Bind() with a Combobox and use the ViewModelViewHost functionality, the Combobox selected item wouldn't show.
Changes:
- fix: Combobox not updating when using Bind() generated ViewModelViewHost (#1906) @glennawatson
- housekeeping: Update the cinephile example (#1904) @glennawatson
- housekeeping: Add more tests to the resolver (#1901) @cabauman
10.0.0-preview.1
Overview
This is a preview release, which removes legacy interfaces, and also adds WPF/WinForms .NET Core 3.0 support.
Changes:
- dbb7189 feature: Add support for .NET Core 3.0 with WPF/Winforms @glennawatson