Update dependency ReactiveUI.AndroidX to v24 - #1370
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
20.2.45→24.0.0Release Notes
reactiveui/reactiveui (ReactiveUI.AndroidX)
v24.0.0Compare Source
ReactiveUI 24.0.0
ReactiveUI 24 is a major release. ReactiveUI now runs on the allocation-conscious
ReactiveUI.Primitivesengine, with System.Reactive becoming optional. This changes public type identities and, for the System.Reactive-compatible distribution, namespaces, so review the migration path before upgrading.Choose your distribution
Both distributions use the same ReactiveUI.Primitives engine, custom schedulers, and optimized sinks. Choose one package family consistently based on the reactive types you want in your public API.
ReactiveUI,ReactiveUI.WPF,ReactiveUI.WinForms,ReactiveUI.WinUI,ReactiveUI.Maui,ReactiveUI.Blazor,ReactiveUI.AndroidX, etc.ReactiveUIRxVoid,ISequencer,Signal<T>ReactiveUI.Reactive,ReactiveUI.WPF.Reactive,ReactiveUI.WinForms.Reactive,ReactiveUI.WinUI.Reactive,ReactiveUI.Maui.Reactive,ReactiveUI.Blazor.Reactive, etc.ReactiveUI.ReactiveandReactiveUI.Reactive.BuilderUnit,IScheduler,Subject<T>New default: ReactiveUI.Primitives types
Keeping the existing package names selects the new default distribution. The normal
ReactiveUInamespaces remain, but these public reactive types change:System.Reactive.Concurrency.ISchedulerbecomesReactiveUI.Primitives.Concurrency.ISequencer.System.Reactive.UnitbecomesReactiveUI.Primitives.RxVoid.Subject<T>,BehaviorSubject<T>, andReplaySubject<T>becomeSignal<T>,BehaviorSignal<T>, andReplaySignal<T>.IObservable<T>, so the default distribution does not require System.Reactive for observable composition. System.Reactive can still coexist with the default packages; choose the.Reactivefamily when you specifically want ReactiveUI APIs to use System.Reactive'sISchedulercompatibility seam (together withUnitand subject interop types).Use System.Reactive schedulers with ReactiveUI: choose the
.ReactivepackagesUse the
.Reactivepackages when you want ReactiveUI itself to accept and expose System.Reactive'sISchedulertypes. Merely referencing or using System.Reactive elsewhere does not require this distribution. Replace each ReactiveUI package with its matching.Reactivepackage; for example, useReactiveUI.ReactivewithReactiveUI.WPF.Reactiveinstead ofReactiveUIwithReactiveUI.WPF.The compatibility packages intentionally have distinct type identities. Most ReactiveUI APIs move from
ReactiveUItoReactiveUI.Reactive, builder APIs move toReactiveUI.Reactive.Builder, and platform XAML/CLR namespace mappings may also need updating. This namespace change is part of why version 24 is a major release.The
.Reactivepackages are not the old implementation: they use the same Primitives engine and performance work as the default packages, while exposing System.Reactive 7 types at the interop boundary.Other changes to know about
RoutingState,IScreen, andRoutedViewHostremain in the main package. DynamicData-backed routing, change-set, collection, and auto-persist helpers now live inReactiveUI.Routing, orReactiveUI.Routing.Reactivefor the System.Reactive distribution.WhenAnyValue/ToPropertysubscription and emission, with 5–13× less allocation. Both distributions benefit because both run on Primitives.IActivatableView.WhenActivatedoverloads accept anIObservable<object?>ViewModel-change source and avoid reflection and trim warnings.WhenAnyValueno longer loses a concurrent first change, WPF main-thread scheduling now dispatches correctly from background threads, suspension state is materialized before shutdown persistence, interaction task handlers resume on the captured UI context, and pureObservableMixinshelpers work before builder initialization..Reactivepackage now resolves its XAML namespace and ships the default theme required byViewModelViewHost.ReactiveUI.Internal.SingleValueObservable<T>orSyncExecuteObservable<T>should use the equivalentReactiveUI.Primitives.Advancedsignal types (ReturnSignal<T>andStartSignal<T>).🗞️ What's Changed
💥 Breaking Changes
6433b00refactor!: drop duplicate sinks for Primitives 5.7.0 concretes (#4387) @glennawatson✨ Features
42b4ccefeat: re-platform ReactiveUI onto ReactiveUI.Primitives — leaner, faster, System.Reactive optional (#4382) @glennawatson2f34b56feat: add AOT-friendly WhenActivated for IActivatableView (#4413) @glennawatson♻️ Refactoring
ff88f13refactor(winui): share routed host setup (#4419) @glennawatson873e9c3refactor: consolidate duplicated reactive plumbing (#4418) @glennawatson🐛 Fixes
fed5931fix: WaitForDispatcherScheduler marshals to UI thread from non-UI threads (fixes #4354) (#4361) @ChrisPulman @Copilotc18940efix: use ObservableMixins helpers before RxAppBuilder initialization (#4410) @glennawatson5a82114fix(release): use empty MinVer tag prefix to match unprefixed tags @glennawatson4a4efcffix(wpf): resolve XAML namespace under REACTIVE_SHIM in AutoDataTemplateBindingHook (#4404) @deeferentleeg9f1b734fix(wpf): ship a default theme in ReactiveUI.WPF.Reactive so ViewModelViewHost renders (#4412) @glennawatson2eb48f2fix: resume interaction task handlers on the captured context (#4409) @glennawatsone5dbcfefix: Winforms design mode detection regressed (#4369) @xackusd9133b6fix: support .NET Core in winforms activation design mode check (#4358) @xackus69586a4Fix: WhenAnyValue subscribes to PropertyChanged before reading the initial value (#4381) @dwcullop⚡ Performance
4680609perf: use custom reactive sinks to improve allocations and performance (#4363) @glennawatson🧹 General Changes
180a40bbuild: update package dependencies (#4417) @glennawatsonb37934cci(security): pin 3rd-party actions to commit SHAs (CodeQL actions/unpinned-tag) @glennawatson2c6f400build: allow stable packages with net11 previews @glennawatson6dc538echore: enable the expanded StyleSharp analyzer rule set and resolve all violations (#4385) @ChrisPulman @glennawatson0a1a74eci(release): grant packages:read so the release workflow can pull the signer image @glennawatson3823cc3ci(release): add alpha/beta/rc release channel (#4388) @glennawatsonc9e11d4chore(deps): update NuGet dependencies to latest (#4389) @glennawatson4680756ci(release): migrate signing from SSL.com eSigner to Certum SimplySign @glennawatson9b92273chore(deps): bump NuGet dependencies and drop EOL net9 MAUI targets (#4391) @glennawatson1330c80chore: Delete MERGE_FOLLOWUPS.md @glennawatsone6088d3chore(deps): adopt the Sharp analyzer suite, update Primitives, modernize (#4414) @glennawatson9fd2d8cchore: remove stray .dotnet-home template cache and gitignore it (#4371) @glennawatson742cb4eci(release): allow releasing from a historical ref @glennawatson📦 Dependencies
5aa92cc(10.0.8), reactiveui/ReactiveUI@30dcf2f(10.0.9), reactiveui/ReactiveUI@2715bb2(10.0.10) @renovate[bot]8fb69dc(18.7.0), reactiveui/ReactiveUI@d4c290b(18.8.1) @renovate[bot]1f35503(10.0.300), reactiveui/ReactiveUI@6665a55(10.0.301) @renovate[bot]ca7f343chore(deps): update microsoft.extensions to 10.0.9 (#4378) @renovate[bot]4068079chore(deps): update dependency stylesharp.analyzers to 3.11.2 (#4384) @renovate[bot]4908bebchore(deps): update rx.net (system.reactive) to v7 (#4407) @renovate[bot]fb0c249chore(deps): update dependency microsoft.windows.cswinrt to 2.3.1 (#4415) @renovate[bot]0a8fe1dchore(deps): update .net test stack (#4334) @renovate[bot]ce0fbeb(2.2.3), reactiveui/ReactiveUI@6102207(2.3.1), reactiveui/ReactiveUI@e0eea47(2.3.2) @renovate[bot]b50c47a(10.27.0.140913), reactiveui/ReactiveUI@fcf16d8(10.29.0.143774) @renovate[bot]3f04004chore(deps): update dependency microsoft.windowsappsdk to 2.3.1 (#4406) @renovate[bot]719f6e6chore(deps): update dependency microsoft.testing.extensions.codecoverage to 18.7.0 (#4362) @renovate[bot]7033d0cchore(deps): update microsoft.testing (#4395) @renovate[bot]b90f96cchore(deps): update actions/setup-dotnet action to v6 (#4405) @renovate[bot]8a7ff35(10.0.8), reactiveui/ReactiveUI@9d9331d(10.0.10) @renovate[bot]📌 Other
bd27fbcFix suspension persistence to materialize app state before shutdown save (#4353) @ChrisPulman🔗 Full Changelog: reactiveui/ReactiveUI@23.2.28...24.0.0
🙌 Contributions
🌱 New contributors since the last release: @deeferentleeg, @dwcullop
💖 Thanks to all the contributors: @ChrisPulman, @deeferentleeg, @dwcullop, @glennawatson, @xackus
🤖 Automated services that contributed: @Copilot, @renovate[bot]
v23.2.28Compare Source
🔏 23.2.28 — consolidated, re-signed release
This is the recommended 23.x release. It supersedes and folds together
23.1.1,23.1.8,23.2.1,23.2.19, and23.2.27, which were signed with a code-signing certificate that has since been revoked — NuGet restore fails on them withNU3012.23.2.28is identical in code to23.2.27but re-signed with a valid certificate, and it depends on the re-signed Splat19.4.1. Those superseded releases have been removed and their notes consolidated here.🗞️ What's Changed
🐛 Fixes
DependencyPropertylookup (#4350, fixes #3921)BindCommandpassing the wrong parameter after a new ViewModel is assigned to the View (#4324)ComponentModelFallbackConverterfalse positives + missingConverterServiceregistrations (#4313)WithWinForms()initialization + ReactiveCommand output-propagation tests (#4314)StackOverflow, activator negative ref-count, a binding regression, and testing extensions (#4301)✨ Enhancements
WithCoreServices()and additional platform converters (#4316)🧹 Build, CI & signing
23.2.27source)📦 Dependencies
19.4.1(re-signed)🔗 Full Changelog: reactiveui/ReactiveUI@22.3.1...23.2.28
🙌 Contributions
💖 Thanks to all the contributors — @glennawatson, @ChrisPulman, @Copilot, and Maciej Walczak (see the linked PRs for attribution).
🤖 Automated services that contributed: @renovate[bot], @github-code-quality[bot]
v23.2.27Compare Source
v23.2.19Compare Source
v23.2.1Compare Source
v23.1.8Compare Source
v23.1.1Compare Source
v22.3.1Compare Source
🗞️ What's Changed
🐛 Fixes
d6b0cedFix race condition in ReactiveCommand cancellation test (#4196) @Copilot @copilot-swe-agent[bot] @glennawatson📦 Dependencies
9d25a55chore(deps): update dotnet monorepo to 9.0.11 (#4202) @renovate[bot]74a572achore(deps): update windows sdk & app sdk (#4197) @renovate[bot]c333339chore(deps): update .net test stack (#4198) @renovate[bot]ff1b00fchore(deps): update dependency nerdbank.gitversioning to 3.9.50 (#4201) @renovate[bot]8c0630echore(deps): update dependency benchmarkdotnet to 0.15.6 (#4199) @renovate[bot]cae2b65chore(deps): update dependency verify.nunit to 31.0.4 (#4194) @renovate[bot]f02755fchore(deps): update dependency publicapigenerator to 11.5.1 (#4206) @renovate[bot]📌 Other
f2f9022Adding ReactiveOwningComponentBase (#4205) @BekAllaev346e3bbReduce allocations within ReactiveObject and ReactiveRecord (#4195) @Glenn @jl0pdda99d4aBump version from 22.2 to 22.3.x @glennawatson🔗 Full Changelog: reactiveui/ReactiveUI@22.2.1...22.3.1
🙌 Contributions
🌱 New contributors since the last release: @BekAllaev, @jl0pd
💖 Thanks to all the contributors: @BekAllaev, @Copilot, @Glenn, @glennawatson, @jl0pd
🤖 Automated services that contributed: @copilot-swe-agent[bot], @renovate[bot]
v22.2.1Compare Source
🗞️ What's Changed
🐛 Fixes
9e7eac7Fix RxSchedulers not being set by ReactiveUI.Testing SchedulerExtensions (#4184) @Cheesebaronc3d6d99fix: ensure consistent schedulers across threads by removing ThreadStatic in RxSchedulers (#4192) @glennawatsona05b475Fix test isolation issue in RxSchedulersTest causing intermittent failures on Linux (#4193) @Copilot @copilot-swe-agent[bot] @glennawatson🧹 General Changes
221a25ehousekeeping: Release 22.2.x of ReactiveUI @glennawatson📦 Dependencies
61cfabcchore(deps): update dependency verify.nunit to 31.0.3 (#4190) @renovate[bot]73577efchore(deps): update dotnet monorepo to 9.0.10 (#4187) @renovate[bot]50cfdbachore(deps): update dependency microsoft.windows.cswinrt to 2.3.0-prerelease.251015.2 (#4188) @renovate[bot]8eeca30chore(deps): update dependency microsoft.windowsappsdk to 1.8.251003001 (#4186) @renovate[bot]64e7c38chore(deps): update dependency publicapigenerator to 11.5.0 (#4182) @renovate[bot]c2f5c32chore(deps): update dependency verify.nunit to 31.0.2 (#4181) @renovate[bot]e3ed43dchore(deps): update dependency verify.nunit to v31 (#4179) @renovate[bot]🔗 Full Changelog: reactiveui/ReactiveUI@22.1.1...22.2.1
🙌 Contributions
💖 Thanks to all the contributors: @Cheesebaron, @Copilot, @glennawatson
🤖 Automated services that contributed: @copilot-swe-agent[bot], @renovate[bot]
v22.1.1Compare Source
🗞️ What's Changed
✨ Features
d59db7cfeature: AOT-Friendly Scheduler Access for ReactiveUI (#4122) @ChrisPulman @Copilot @copilot-swe-agent[bot] @glennawatson🐛 Fixes
073e07eFix InitRxUI to account for order of passed registration namespaces (#3887) @Glenn @Metadorius9deb481Fix TFMs missing for ReactiveUI.Testing (#4171) @Cheesebaron🧹 General Changes
9dbac6echore: Stabilize ReactiveUI.Tests with state restoration and de-parallelization (#4168) @Copilot @copilot-swe-agent[bot] @glennawatson8605872chore: Update target frameworks for Maui and Testing projects (#4174) @ChrisPulman @Glenn @TomaszCielecki📦 Dependencies
a26f6f2chore(deps): update dependency verify.nunit to 30.20.1 (#4176) @renovate[bot]c339577chore(deps): update dependency roslynator.analyzers to 4.14.1 (#4175) @renovate[bot]e67aeeechore(deps): update dependency verify.nunit to 30.20.0 (#4172) @renovate[bot]1ed95b6chore(deps): update dependency microsoft.net.test.sdk to v18 (#4169) @renovate[bot]f8b49b5chore(deps): update dependency nunit3testadapter to 5.2.0 (#4177) @renovate[bot]📌 Other
0c24fb5Bump version from 22.0 to 22.1.x @glennawatson🔗 Full Changelog: reactiveui/ReactiveUI@22.0.1...22.1.1
🙌 Contributions
🌱 New contributors since the last release: @Cheesebaron, @Metadorius, @TomaszCielecki
💖 Thanks to all the contributors: @Cheesebaron, @ChrisPulman, @Copilot, @Glenn, @glennawatson, @Metadorius, @TomaszCielecki
🤖 Automated services that contributed: @copilot-swe-agent[bot], @renovate[bot]
v22.0.1Compare Source
🗞️ What's Changed
Major
💥 Breaking Changes
b3fd1c2breaking: remove deprecated Android.Preferences APIs and modernize to AndroidX (#4119) @Copilot @copilot-swe-agent[bot] @GlennWatson♻️ Refactoring
c0dc37crefactor: Deprecate obsolete MAUI Cell controls and introduce CollectionView-compatible alternatives (#4146) @Copilot @copilot-swe-agent[bot] @glennawatson🐛 Fixes
a83c0e0fix: cross platform build and tests (#4132) @glennawatson89d9200Fix Test : InteractionBinder: immediately unregister interaction handlers when ViewModel becomes null (#4140) @glennawatson🧹 General Changes
944f1b8housekeeping: Fix test targets @glennawatson1b13eefchore: Add windows net8 targets @glennawatsonf65ffa6chore: Remove WinUI building on linux/macos @glennawatson1246a6achore: Copilot instructions - Revise build and test instructions for ReactiveUI - .net 10 @glennawatson42bc37eUpdate CI build workflow permissions and environment variables @glennawatson1bfc062housekeeping: Fix solution file name in CI workflow @glennawatson297a63cchore: Update build badge link in README.md @glennawatson📦 Dependencies
56f2de2chore(deps): update dependency benchmarkdotnet to 0.15.4 (#4149) @renovate[bot]a662703chore(deps): update dependency verify.nunit to 30.19.1 (#4158) @renovate[bot]6d0812dchore(deps): update dependency xamarin.androidx.media to 1.7.1 (#4145) @renovate[bot]a4e0956chore(deps): update dependency verify.nunit to 30.12.0 (#4142) @renovate[bot]09e0483chore(deps): update dependency xamarin.androidx.fragment to 1.8.9 (#4138) @renovate[bot]304c036chore(deps): update windows sdk & app sdk (#4156) @renovate[bot]04f4c65chore(deps): update dependency verify.nunit to 30.13.0 (#4148) @renovate[bot]af6715fchore(deps): update dependency reactive.wasm to v3 (#4130) @renovate[bot]9d780f3chore(deps): update dependency verify.nunit to 30.18.0 (#4153) @renovate[bot]1f0d870chore(deps): update dependency verify.nunit to 30.19.2 (#4163) @renovate[bot]430af1fchore(deps): update dependency xamarin.androidx.fragment.ktx to 1.8.9 (#4139) @renovate[bot]1b04ee1chore(deps): update dependency microsoft.windowsappsdk to 1.8.250907003 (#4137) @renovate[bot]20528f1chore(deps): update dependency system.collections.immutable to v9 (#4131) @renovate[bot]650d6abchore(deps): update dependency verify.nunit to 30.8.0 (#4129) @renovate[bot]5a0d9e5chore(deps): update dependency verify.nunit to 30.11.0 (#4135) @renovate[bot]7776b48chore(deps): update rx.net (system.reactive) to 6.1.0 (#4162) @renovate[bot]aac10c0chore(deps): update dependency system.text.json to 9.0.9 (#4136) @renovate[bot]54ee58bchore(deps): update dependency verify.nunit to 30.10.0 (#4133) @renovate[bot]6264b77chore(deps): update dependency nerdbank.gitversioning to 3.8.118 (#4152) @renovate[bot]c6cac4cchore(deps): update dependency benchmarkdotnet to 0.15.3 (#4141) @renovate[bot]📌 Other
be45653Migrate xUnit + FluentAssertions to NUnit 4.4.0 with Controlled Concurrency and Proper STA Thread Support (#4121) @Copilot @copilot-swe-agent[bot] @glennawatsond47bd31Add NonParallelizable attribute to tests (#4161) @glennawatson04badefCreate Copilot instructions for ReactiveUI - Windows-only build, AOT patterns with DynamicallyAccessedMembersAttribute, and code style guidelines (#4115) @Copilot @copilot-swe-agent[bot] @glennawatsona9fa39cAdd BuildApp and WithInstance methods to builder (#4124) @ChrisPulman @Glenn939cd4eEnhanced Cross-Platform Build System for ReactiveUI Contributors (#4128) @Copilot @copilot-swe-agent[bot] @glennawatsonf121a03Revise validation and quality assurance guidelines @glennawatsone2c4499Rename Directory.build.targets to Directory.Build.targets @glennawatsonba46af7Remove local DisposeWith use System.Reactive.Disposables.Fluent (#4164) @ChrisPulman @Glenn @renovate[bot]aad0b0dRename Directory.build.props to Directory.Build.props @glennawatsonf81d84aBump version from 21.0.x to 22.0.x @glennawatson🔗 Full Changelog: reactiveui/ReactiveUI@21.0.1...22.0.1
🙌 Contributions
🌱 New contributors since the last release: @Copilot
💖 Thanks to all the contributors: @ChrisPulman, @Copilot, @Glenn, @glennawatson, @GlennWatson
🤖 Automated services that
Configuration
📅 Schedule: (in timezone Asia/Shanghai)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.