joelkanyi / Muviz

A Jetpack compose app that consumes the TMDB API to display movie and Tv shows and their details
199 stars 30 forks source link

update all non-major dependencies #92

Open renovate[bot] opened 2 months ago

renovate[bot] commented 2 months ago

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
gradle (source) minor 8.8 -> 8.10 age adoption passing confidence
androidx.paging:paging-compose (source) dependencies patch 3.3.0 -> 3.3.2 age adoption passing confidence
androidx.lifecycle:lifecycle-viewmodel-ktx (source) dependencies patch 2.8.1 -> 2.8.4 age adoption passing confidence
androidx.lifecycle:lifecycle-viewmodel-compose (source) dependencies patch 2.8.1 -> 2.8.4 age adoption passing confidence
androidx.lifecycle:lifecycle-runtime-ktx (source) dependencies patch 2.8.1 -> 2.8.4 age adoption passing confidence
androidx.test.espresso:espresso-core dependencies minor 3.5.1 -> 3.6.1 age adoption passing confidence
io.github.raamcosta.compose-destinations:ksp dependencies patch 2.1.0-beta09 -> 2.1.0-beta11 age adoption passing confidence
io.github.raamcosta.compose-destinations:core dependencies patch 2.1.0-beta09 -> 2.1.0-beta11 age adoption passing confidence
androidx.test.ext:junit dependencies minor 1.1.5 -> 1.2.1 age adoption passing confidence
androidx.activity:activity-compose (source) dependencies patch 1.9.0 -> 1.9.1 age adoption passing confidence
com.google.dagger.hilt.android plugin minor 2.51.1 -> 2.52 age adoption passing confidence
com.google.dagger:hilt-android-compiler dependencies minor 2.51.1 -> 2.52 age adoption passing confidence
com.google.dagger:hilt-android dependencies minor 2.51.1 -> 2.52 age adoption passing confidence
androidx.compose.material3:material3 (source) dependencies patch 1.3.0-beta02 -> 1.3.0-rc01 age adoption passing confidence

[!WARNING] Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

gradle/gradle (gradle) ### [`v8.10`](https://togithub.com/gradle/gradle/compare/v8.9.0...v8.10.0) [Compare Source](https://togithub.com/gradle/gradle/compare/v8.9.0...v8.10.0) ### [`v8.9`](https://togithub.com/gradle/gradle/compare/v8.8.0...v8.9.0) [Compare Source](https://togithub.com/gradle/gradle/compare/v8.8.0...v8.9.0)
raamcosta/compose-destinations (io.github.raamcosta.compose-destinations:ksp) ### [`v2.1.0-beta11`](https://togithub.com/raamcosta/compose-destinations/releases/tag/2.1.0-beta11) [Compare Source](https://togithub.com/raamcosta/compose-destinations/compare/2.1.0-beta10...2.1.0-beta11) #### Changes - Fixes [#​668](https://togithub.com/raamcosta/compose-destinations/issues/668) - Updated dependencies (official navigation to 2.8.0-beta06) - Check [release notes of previous release if you're coming from beta09 or below](https://togithub.com/raamcosta/compose-destinations/releases/tag/2.1.0-beta10) **Full Changelog**: https://github.com/raamcosta/compose-destinations/compare/2.1.0-beta10...2.1.0-beta11 ### [`v2.1.0-beta10`](https://togithub.com/raamcosta/compose-destinations/releases/tag/2.1.0-beta10) [Compare Source](https://togithub.com/raamcosta/compose-destinations/compare/2.1.0-beta09...2.1.0-beta10) #### Changes - DestinationsNavHost start destination can now also have mandatory navigation arguments! πŸ™Œ - ⚠️ Small breaking change, rename `startRoute` to `start`, for more, read below πŸ‘‡ - Result back feature now supports all types that normal navigation supports! πŸš€ - Dependencies update - (navigation now used is `2.8.0-beta05`) - New debug mode - Fixes [#​653](https://togithub.com/raamcosta/compose-destinations/issues/653) - Fixes [#​661](https://togithub.com/raamcosta/compose-destinations/issues/661) (related with NavHost now accepting initial nav arguments) - Small improvements ##### DestinationsNavHost start destination can now also have mandatory navigation arguments! πŸ™Œ If you were passing a `startRoute` parameter when calling `DestinationsNavHost`, you'll now need to update it to just `start` and the parameter type is now a `Direction` (same type navigate method receives). So you can pass arguments here, like: ```kotlin DestinationsNavHost( start = MyStartDestination(someArgs), // .... ) ``` Besides, in order for Compose Destinations to be sure you won't get a runtime exception, if your start route has mandatory arguments, then you'll need to either make them non mandatory (by adding defaults to them or making them null), or if you don't want to do that (let's say that Destination is also navigated to in a lot of other places, and the defaults in those cases are not ideal), you can: ```kotlin @​NavHostDefaultStartArgs // for a RootGraph which has a ... val defaultRootStartArgs = GreetingScreenNavArgs( // ...`GreetingScreen` has its start destination, with `GreetingScreenNavArgs` strArgument = "oneArgument", idArgument = 0 ) ``` These arguments will be automatically "sent" to `GreetingScreenDestination` (taking the above example) when the NavHost is first called! ##### Result back feature now supports all types that normal navigation supports! πŸš€ Previously, only these result types were allowed: - String, Boolean, Float, Int, Long, Serializable, or Parcelable. - Type cannot have type arguments itself (f.e you can't use Array even though it is Serializable) Now it allows all of these (same as normal navigation): - String - Boolean - Int - Long - Float - Parcelable - Serializable - Enums - [@​kotlinx.serialization.Serializable](https://togithub.com/Kotlin/kotlinx.serialization) annotated types - [Custom navigation types](https://composedestinations.rafaelcosta.xyz/destination-arguments/navigation-arguments/#custom-navigation-argument-types) (Types for which the user has defined a serialization to and from string) - Array and ArrayList of the above types > For Boolean, Int, Float, Long, you'll need to use BooleanArray, IntArray, FloatArray, LongArray instead of Array, Array, Array, Array. ⚠️ **If you were manually calling a Composable Destination which receives either a `ResultBackNavigator` or a `ResultRecipient`** you will need to update those calls to pass in a `DestinationsNavType` corresponding to your result type. You can check the corresponding generated Destination and see how it calls your Composable, and do the same, or you can just start typing your result class type name (lower case) and IDE will help you. For example, if your Destination receives a: - `ResultBackNavigator` you'll want to pass in `resultBackNavigator(booleanNavType)` (`booleanNavType` is a top level field you can import from core library) - `ResultBackNavigator` you'll pass `resultBackNavigator(myParcelableClassNavType)` (`myParcelableClassNavType` is a top level field you can import from generated code). If not calling it manually, then generated code will do this for you, so no need to change anything in that case. ##### New debug mode This is mainly to help me understand users' setup when there's a reported issue so that I can find the root cause and fix it quicker. New ksp configuration added: ```kotlin ksp { arg("compose-destinations.debugMode", "$rootDir") } ``` When set, it will write some debug files to a folder on `$rootDir/composeDestinationsDebug` (taking above example). Please make sure to: - add this configuration for all modules that use compose destinations ksp - do ./gradle clean and delete previous debug folder - run the app or build the project - share the files with me somehow (ex: through the github issue, DM on Kotlin slack, etc). - remove the configuration and delete the debug folder DO NOT leave the configuration ON as it may slow down builds for no reason, just remove it after sending me the files. **Full Changelog**: https://github.com/raamcosta/compose-destinations/compare/2.1.0-beta09...2.1.0-beta10

Configuration

πŸ“… Schedule: Branch creation - "on friday" in timezone Africa/Nairobi, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

πŸ‘» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR was generated by Mend Renovate. View the repository job log.