Releases: airbnb/mavericks
2.0.0-beta3
Changes since beta 2
Make MavericksViewModel extension functions protected (#488)
Add MavericksViewModel.awaitState (#487) to access current ViewModel state via a suspend function
Mark all @RestrictTo APIs with @InternalMavericksApi (#480)
Api additions to the mocking framework (#475) (#477)
Migrated CoroutinesStateStore to SharedFlow (#469)
Launcher and mock speed optimizations (#468)
2.0.0-beta2
Coroutine api tweaks (#464)
Fix mocking docs (#465)
Never complete ViewModel.stateFlow (#460)
Tweaks and additions to the mocking framework (#461)
Allow configurable StateStore CoroutineContext (#454)
[2.0] Cleaned up and obfuscated some @RestrictTo APIs (#453)
Breaking
- If you had been using any restricted internal mvrx library functions your build may break as they have been renamed (you shouldn't be doing this, but in case you are...)
MockableMavericks.initialize
function signature has changed
2.0.0-beta1
- The
mvrx
artifact no longer has a dependency on RxJava, and the ViewModel and StateStore are now implemented with Kotlin Coroutines - You can continue accessing the previous RxJava ViewModel extensions by using the
mvrx-rxjava2
artifact - To reflect the underlying removal of RxJava from the MvRx implementation we are renaming the implementation to Mavericks
- New documentation for the rewrite is available at https://airbnb.io/MvRx/#/
- A
mvrx-mocking
artifact now provides built in support for mocking viewmodels, states, and full screens - The order of nested with and set states has changed slightly. It now matches the original intention.
If you had code like:
withState {
// W1
withState {
// W2
}
setState {
// S1
setState {
// S2
setState {
// S3
}
}
}
}
Previously, setState would only be prioritized at that nesting level so it would run:
[W1, S1, W2, S2, S3]
Now, it will run:
[W1, S1, S2, S3, W2]
- If your MvRxView/Fragment does not use any ViewModels, invalidate() will NOT be called in onStart(). In MvRx 1.x, invalidate would be called even if MvRx was not used at all. If you would like to maintain the original behavior, call
postInvalidate()
from onStart in your base Fragment class. - BaseMvRxViewModel no longer extends Jetpack ViewModel
- viewModelScope is now a property on BaseMvRxViewModel, not the Jetpack extension function for ViewModel. Functionally, this is the same but the previous viewModelScope import will now be unused.
1.5.1
1.5.0
1.4.0
2.0.0 Alpha 2
Fixes an issue in alpha 1 where the mvrx-launcher artifact wasn't actually present.
2.0.0 Alpha 1
This is a new major release with breaking changes. It incorporates a mocking system into MvRx to declare test data for screens and leverage that data with various testing tools. For a high level overview of this system, see this article series.
The main breaking change is that the debugMode
parameter no longer exists on BaseMvRxViewModel
. Instead, you define a global app wide debug setting by setting MvRx.viewModelConfigFactory = MvRxViewModelConfigFactory(applicationContext)
from your app's initialization.
See the configuration wiki for more details.
Additionally, the MvRxTestRule from the mvrx-testing artifact has changed its interface slightly. Notably the debug mode enum has been changed to a boolean. See the testing wiki page for details on this artifact.
Mocking
If you would like to use the new mocking system, you can replace the MvRx
configuration call with MvRxMocks.install(applicationContext)
.
Additionally, you can define mocks for your screens by using the MockableMvRxView
interface instead of MvRxView
. This unlocks usage of the MvRx Launcher for easily browsing all screens and mocks in your app.
For more details on the mocking system, see the wiki page
Feedback
This is an alpha so that we can receive feedback on the mocking apis and documentation (as well as bugs of course). Please let us know what you think and what changes you would like to see before the stable release!
1.3.0
- Revamp state saving to use Android Jetpack
SavedStateRegistry
(#254)
Breaking - This removes the need for MvRxViewModelStoreOwner
and BaseMvRxActivity
and thus those classes
are now deleted.
If you were using BaseMvRxActivity
you can instead now extend from AppCompatActivity
.
All usages of mvrxViewModelStore
can simply be deleted - state saving now happens completley
automatically.