Skip to content

Releases: MvvmCross/MvvmCross

Release 9.2.0

22 Feb 18:15
Compare
Choose a tag to compare

This release adds .NET 7 and 8 support for MvvmCross and removes support for .NET 6.

Also, this contains changes to the startup process and Dependency Injection in MvvmCross to prepare and help switching to a different Dependency Injection provider in the future. This means that the methods CallbackWhenRegistered have been removed from IMvxIoCProvider and has been removed from Plugins which were using this functionality. This also meant that those plugins which relied on it broke, which has been fixed by initializing them at a different time during startup.

Plugin registration InitializePluginFramework has been move to just before InitializeApp and InitializeLastChance in MvxSetup and you can check the new order of initialization here: https://github.com/MvvmCross/MvvmCross/blob/develop/MvvmCross/Core/MvxSetup.cs#L150

What's Changed

New Contributors

Full Changelog: 9.1.1...9.2.0

Release 9.2.0-beta.7

05 Feb 08:14
393e1e6
Compare
Choose a tag to compare
Release 9.2.0-beta.7 Pre-release
Pre-release

What's Changed

Full Changelog: 9.2.0-beta.6...9.2.0-beta.7

Release 9.2.0-beta.6

17 Jan 09:07
af92938
Compare
Choose a tag to compare
Release 9.2.0-beta.6 Pre-release
Pre-release

What's Changed

Full Changelog: 9.2.0-beta.5...9.2.0-beta.6

Release 9.2.0-beta.5

07 Dec 14:41
cf02a4f
Compare
Choose a tag to compare
Release 9.2.0-beta.5 Pre-release
Pre-release

What's Changed

  • Move plugin registration to before Last chance by @Cheesebaron in #4771
  • Call App.Initialize() later by @Cheesebaron in #4787
  • Bugfix. ModalControllerDelegate.WillDismiss() closes a ViewController when the ViewController is not actually dismissed by a user by @evgenyvalavin in #4785

Full Changelog: 9.2.0-beta.4...9.2.0-beta.5

Release 9.2.0-beta.4

16 Nov 13:48
Compare
Choose a tag to compare
Release 9.2.0-beta.4 Pre-release
Pre-release

This release is built against the stable .NET SDK 8.0.100

What's Changed

New Contributors

Full Changelog: 9.2.0-beta.3...9.2.0-beta.4

Release 9.2.0-beta.3

23 Oct 06:41
Compare
Choose a tag to compare
Release 9.2.0-beta.3 Pre-release
Pre-release

What's Changed

Full Changelog: 9.2.0-beta.2...9.2.0-beta.3

Release 9.2.0-beta.2

23 Oct 06:38
bfe6213
Compare
Choose a tag to compare
Release 9.2.0-beta.2 Pre-release
Pre-release

What's Changed

Full Changelog: 9.2.0-beta.1...9.2.0-beta.2

Release 9.2.0-beta.1 with .NET 8.0 Support

14 Sep 15:50
Compare
Choose a tag to compare

This is a release which removes the .NET 6.0 Target Frameworks as they are out of support. MvvmCross now targets .NET 7.0 and .NET 8.0.

What's Changed

Full Changelog: 9.1.1...9.2.0-beta.1

Hotfix 9.1.1

01 Aug 15:23
Compare
Choose a tag to compare

What's Changed

  • Revert PR (#4650) Remove ViewModel Cache as it broke Android Activity navigation
  • Use WeakRef for Single ViewModel Cache by @Cheesebaron in #4661

Full Changelog: 9.1.0...9.1.1

7.1.1

21 Oct 11:09
Compare
Choose a tag to compare

Hotfix to fix PendingIntent in MvxAndroidViewPresenter not being able to be set from an inheritor.