algolia / instantsearch-android

A library of widgets and helpers to build instant-search applications on Android.
https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/android/
Apache License 2.0
155 stars 28 forks source link

chore(deps): update all dependencies #377

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
gradle (source) minor 7.5.1 -> 7.6 age adoption passing confidence
com.diffplug.gradle.spotless plugin minor 6.11.0 -> 6.14.0 age adoption passing confidence
com.vanniktech.maven.publish plugin minor 0.22.0 -> 0.24.0 age adoption passing confidence
ch.qos.logback:logback-classic (source) dependencies minor 1.2.11 -> 1.4.5 age adoption passing confidence
org.slf4j:slf4j-api (source) dependencies major 1.7.36 -> 2.0.6 age adoption passing confidence
app.cash.turbine:turbine dependencies minor 0.9.0 -> 0.12.1 age adoption passing confidence
org.robolectric:robolectric (source) dependencies minor 4.8.1 -> 4.9.2 age adoption passing confidence
io.mockk:mockk (source) dependencies minor 1.12.7 -> 1.13.4 age adoption passing confidence
androidx.test:runner dependencies minor 1.4.0 -> 1.5.2 age adoption passing confidence
androidx.test.ext:junit dependencies patch 1.1.3 -> 1.1.5 age adoption passing confidence
com.google.android.material:material dependencies minor 1.6.1 -> 1.8.0 age adoption passing confidence
androidx.appcompat:appcompat (source) dependencies minor 1.4.2 -> 1.6.0 age adoption passing confidence
androidx.core:core-ktx (source) dependencies minor 1.8.0 -> 1.9.0 age adoption passing confidence
org.jetbrains.kotlinx:atomicfu dependencies minor 0.18.3 -> 0.19.0 age adoption passing confidence
io.ktor:ktor-client-mock dependencies minor 2.1.1 -> 2.2.2 age adoption passing confidence
io.ktor:ktor-client-okhttp dependencies minor 2.1.1 -> 2.2.2 age adoption passing confidence
androidx.compose.material:material-icons-extended (source) dependencies patch 1.3.0 -> 1.3.1 age adoption passing confidence
androidx.compose.material:material (source) dependencies patch 1.3.0 -> 1.3.1 age adoption passing confidence
androidx.compose.ui:ui (source) dependencies patch 1.3.0 -> 1.3.3 age adoption passing confidence
org.jetbrains.kotlin.plugin.serialization (source) plugin minor 1.7.20 -> 1.8.0 age adoption passing confidence
org.jetbrains.kotlin.multiplatform (source) plugin minor 1.7.20 -> 1.8.0 age adoption passing confidence

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

vanniktech/gradle-maven-publish-plugin ### [`v0.24.0`](https://togithub.com/vanniktech/gradle-maven-publish-plugin/blob/HEAD/CHANGELOG.md#​0240--2023-01-29-) [Compare Source](https://togithub.com/vanniktech/gradle-maven-publish-plugin/compare/0.23.2...0.24.0) - Support arbitrary Sonatype hosts instead of just oss.sonatype.org and s01.oss.sonatype.org. - Support adjusting timeouts for Sonatype related requests and operations. [See docs](https://vanniktech.github.io/gradle-maven-publish-plugin/central/#timeouts) - Internal change on how the sources jar is created. ### [`v0.23.2`](https://togithub.com/vanniktech/gradle-maven-publish-plugin/blob/HEAD/CHANGELOG.md#​0232--2023-01-17-) [Compare Source](https://togithub.com/vanniktech/gradle-maven-publish-plugin/compare/0.23.1...0.23.2) - Fix signing when using Gradle 8.0. - Finding a matching staging profile in Sonatype is more lenient. If there is just one that one will always be used. The plugin will also fallback to any staging profile that has a matching prefix with the group id. - As a workaround for an issue in Gradle that causes invalid module metadata for `java-test-fixtures` projects, `project.group` and `project.version` are now being set again for those projects. [#​490](https://togithub.com/vanniktech/gradle-maven-publish-plugin/pull/490) ### [`v0.23.1`](https://togithub.com/vanniktech/gradle-maven-publish-plugin/blob/HEAD/CHANGELOG.md#​0231--2022-12-30-) [Compare Source](https://togithub.com/vanniktech/gradle-maven-publish-plugin/compare/0.23.0...0.23.1) - Also support publishing sources for the `java-test-fixtures` plugin in Kotlin/JVM projects. - Suppress Gradle warnings when publishing a project that uses `java-test-fixtures`. ### [`v0.23.0`](https://togithub.com/vanniktech/gradle-maven-publish-plugin/blob/HEAD/CHANGELOG.md#​0230--2022-12-29-) [Compare Source](https://togithub.com/vanniktech/gradle-maven-publish-plugin/compare/0.22.0...0.23.0) Updated docs can be found on [the new website](https://vanniktech.github.io/gradle-maven-publish-plugin/). - **NEW**: It is now possible to set group id, artifact id directly through the DSL ```groovy mavenPublishing { coordinates("com.example", "library", "1.0.3") } ``` - `project.group` and `project.version` will still be used as default values for group and version if the `GROUP`/`VERSION_NAME` Gradle properties do not exist and `coordinates` was not called, however there are 2 **behavior changes**: - The `GROUP` and `VERSION_NAME` Gradle properties take precedence over `project.group` and `project.version` instead of being overwritten by them. If you need to define the properties but replace them for some projects, please use the new `coordinates` method instead. - The `GROUP` and `VERSION_NAME` Gradle properties will not be explicitly set as `project.group` and `project.version` anymore. - **NEW**: Added `dropRepository` task that will drop a Sonatype staging repository. It is possible to specify which repository to drop by adding a `--repository` parameter with the id of the staging repository that was printed during `publish`. If no repository is specified and there is only one staging repository, that one will be dropped. - Added workaround to also publish sources for the `java-test-fixtures` plugin - Fixed publishing Kotlin/JS projects with the base plugin. - Fixed that a POM configured through the DSL is incomplete when publishing Gradle plugins. - The minimum supported Gradle version has been increased to 7.3. - The plugin now requires using JDK 11+ to run Gradle.
cashapp/turbine ### [`v0.12.1`](https://togithub.com/cashapp/turbine/blob/HEAD/CHANGELOG.md#​0121) [Compare Source](https://togithub.com/cashapp/turbine/compare/0.12.0...0.12.1) ##### Changed - Build with Kotlin 1.7.20 ##### Fixed - `takeItem()` no longer throws an exception when returning a `null` value. - `await`-prefixed methods no longer interfere with virtual time control from a `TestScheduler` (such as inside `runTest`). ### [`v0.12.0`](https://togithub.com/cashapp/turbine/blob/HEAD/CHANGELOG.md#​0120) [Compare Source](https://togithub.com/cashapp/turbine/compare/0.11.0...0.12.0) ##### Added - Support specifying a human-readable name for differentiating the failures of multiple Turbines ##### Fixed - Properly catch all `Throwable` subtypes from failures in flows and channels as events. ### [`v0.11.0`](https://togithub.com/cashapp/turbine/blob/HEAD/CHANGELOG.md#​0110) [Compare Source](https://togithub.com/cashapp/turbine/compare/0.10.0...0.11.0) ##### Added - Restore timeout support. By default a 1-second timeout will be enforced when awaiting an event. This can be customized by supplying a `timeout` argument or by using the `withTurbineTimeout` wrapper function. Timeouts will always use wall clock time even when using a virtual time dispatcher. ##### Changed - When `runTest` (or any `TestCoroutineScheduler`) is in use, switch to the `UnconfinedTestScheduler` internally to ensure virtual time remains working. ### [`v0.10.0`](https://togithub.com/cashapp/turbine/blob/HEAD/CHANGELOG.md#​0100) [Compare Source](https://togithub.com/cashapp/turbine/compare/0.9.0...0.10.0) ##### Changed - Remove `ReceiveTurbine.ignoreRemainingEvents` from public API. ##### Fixed - Restore usage of `Unconfined` dispatcher preventing value conflation (as much as possible) so that intermediate values can always be observed.
mockk/mockk ### [`v1.13.4`](https://togithub.com/mockk/mockk/releases/tag/v1.13.4) #### What's Changed - Remove redundant spread (\*) operator by [@​SimonMarquis](https://togithub.com/SimonMarquis) in [https://github.com/mockk/mockk/pull/986](https://togithub.com/mockk/mockk/pull/986) - Inline mocked subclass of sealed class along with the sealed class itself by [@​m-burst](https://togithub.com/m-burst) in [https://github.com/mockk/mockk/pull/988](https://togithub.com/mockk/mockk/pull/988) - Document InaccessibleObjectException/IllegalAccessException on JDK 16+ with solution by [@​sergey-volkov-lm](https://togithub.com/sergey-volkov-lm) in [https://github.com/mockk/mockk/pull/965](https://togithub.com/mockk/mockk/pull/965) - fix: \[[#​989](https://togithub.com/mockk/mockk/issues/989)] Slf4J 2.0+ Support by [@​Slava-Miligoulo-Target](https://togithub.com/Slava-Miligoulo-Target) in [https://github.com/mockk/mockk/pull/990](https://togithub.com/mockk/mockk/pull/990) - Fixes [#​647](https://togithub.com/mockk/mockk/issues/647) by allowing `classBeingRedefined` to be `null` by [@​gmazzo](https://togithub.com/gmazzo) in [https://github.com/mockk/mockk/pull/985](https://togithub.com/mockk/mockk/pull/985) - bump Gradle to 7.6 by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/992](https://togithub.com/mockk/mockk/pull/992) - bump Kover to 0.6.1 by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/993](https://togithub.com/mockk/mockk/pull/993) - Code cleanup by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/976](https://togithub.com/mockk/mockk/pull/976) - Update ByteBuddy to 1.12.20 by [@​ansman](https://togithub.com/ansman) in [https://github.com/mockk/mockk/pull/1002](https://togithub.com/mockk/mockk/pull/1002) - Customize jobs name to make the matrix values more explicit by [@​SimonMarquis](https://togithub.com/SimonMarquis) in [https://github.com/mockk/mockk/pull/1004](https://togithub.com/mockk/mockk/pull/1004) - Replaced with fully qualified imports by [@​Sandhya2902](https://togithub.com/Sandhya2902) in [https://github.com/mockk/mockk/pull/1006](https://togithub.com/mockk/mockk/pull/1006) - Update to Junit test by [@​Sandhya2902](https://togithub.com/Sandhya2902) in [https://github.com/mockk/mockk/pull/1007](https://togithub.com/mockk/mockk/pull/1007) - Update to Junit5 from Junit4 by [@​Sandhya2902](https://togithub.com/Sandhya2902) in [https://github.com/mockk/mockk/pull/1009](https://togithub.com/mockk/mockk/pull/1009) - Updated with right class name in logger by [@​Sandhya2902](https://togithub.com/Sandhya2902) in [https://github.com/mockk/mockk/pull/1010](https://togithub.com/mockk/mockk/pull/1010) - Don't call match an extra time during verification by [@​camhashemi](https://togithub.com/camhashemi) in [https://github.com/mockk/mockk/pull/1017](https://togithub.com/mockk/mockk/pull/1017) - [#​1013](https://togithub.com/mockk/mockk/issues/1013) uncouple proxy objects from cancellable to make proxy available… by [@​bakomchik](https://togithub.com/bakomchik) in [https://github.com/mockk/mockk/pull/1018](https://togithub.com/mockk/mockk/pull/1018) - Update Kotlin to 1.8.0 by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/1023](https://togithub.com/mockk/mockk/pull/1023) - Edit RecordingStateTest, CommonCallRecorderTest by [@​bossm0n5t3r](https://togithub.com/bossm0n5t3r) in [https://github.com/mockk/mockk/pull/1028](https://togithub.com/mockk/mockk/pull/1028) - Edit CapturingGenericArgumentsTest by [@​bossm0n5t3r](https://togithub.com/bossm0n5t3r) in [https://github.com/mockk/mockk/pull/1029](https://togithub.com/mockk/mockk/pull/1029) - De-duplicate ProxyMaker by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/1025](https://togithub.com/mockk/mockk/pull/1025) #### New Contributors - [@​sergey-volkov-lm](https://togithub.com/sergey-volkov-lm) made their first contribution in [https://github.com/mockk/mockk/pull/965](https://togithub.com/mockk/mockk/pull/965) - [@​Slava-Miligoulo-Target](https://togithub.com/Slava-Miligoulo-Target) made their first contribution in [https://github.com/mockk/mockk/pull/990](https://togithub.com/mockk/mockk/pull/990) - [@​ansman](https://togithub.com/ansman) made their first contribution in [https://github.com/mockk/mockk/pull/1002](https://togithub.com/mockk/mockk/pull/1002) - [@​Sandhya2902](https://togithub.com/Sandhya2902) made their first contribution in [https://github.com/mockk/mockk/pull/1006](https://togithub.com/mockk/mockk/pull/1006) - [@​camhashemi](https://togithub.com/camhashemi) made their first contribution in [https://github.com/mockk/mockk/pull/1017](https://togithub.com/mockk/mockk/pull/1017) - [@​bakomchik](https://togithub.com/bakomchik) made their first contribution in [https://github.com/mockk/mockk/pull/1018](https://togithub.com/mockk/mockk/pull/1018) **Full Changelog**: https://github.com/mockk/mockk/compare/1.13.3...v1.13.4 ### [`v1.13.3`](https://togithub.com/mockk/mockk/releases/tag/1.13.3) [Compare Source](https://togithub.com/mockk/mockk/compare/1.13.2...1.13.3) #### What's Changed - Add `Awaits` extensions similar to `Runs` to await suspend functions until cancelled by [@​SimonMarquis](https://togithub.com/SimonMarquis) in [https://github.com/mockk/mockk/pull/927](https://togithub.com/mockk/mockk/pull/927) - Upgrade Kotlin to stable 1.7.20 in GitHub workflow by [@​SimonMarquis](https://togithub.com/SimonMarquis) in [https://github.com/mockk/mockk/pull/940](https://togithub.com/mockk/mockk/pull/940) - Add missing test annotation to LambdaTest by [@​bossm0n5t3r](https://togithub.com/bossm0n5t3r) in [https://github.com/mockk/mockk/pull/946](https://togithub.com/mockk/mockk/pull/946) - Fix verifier logic for slots and different matchers by [@​m-burst](https://togithub.com/m-burst) in [https://github.com/mockk/mockk/pull/951](https://togithub.com/mockk/mockk/pull/951) - Fix InstantiationError when using any() where a sealed type is expected by [@​cliffred](https://togithub.com/cliffred) in [https://github.com/mockk/mockk/pull/939](https://togithub.com/mockk/mockk/pull/939) - Adding throwsMany exception by [@​daniel-dios](https://togithub.com/daniel-dios) in [https://github.com/mockk/mockk/pull/955](https://togithub.com/mockk/mockk/pull/955) - Add more doc comments with samples by [@​NotWoods](https://togithub.com/NotWoods) in [https://github.com/mockk/mockk/pull/958](https://togithub.com/mockk/mockk/pull/958) - added basic jitpack config by [@​hduerkop](https://togithub.com/hduerkop) in [https://github.com/mockk/mockk/pull/962](https://togithub.com/mockk/mockk/pull/962) - add kotlin 1.8-Beta to the test matrix by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/974](https://togithub.com/mockk/mockk/pull/974) - bump bytebuddy and objenesis by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/975](https://togithub.com/mockk/mockk/pull/975) - Update README.md to include note about 2-year-old 'known issue' for spy and suspend function by [@​iainism](https://togithub.com/iainism) in [https://github.com/mockk/mockk/pull/979](https://togithub.com/mockk/mockk/pull/979) #### New Contributors - [@​SimonMarquis](https://togithub.com/SimonMarquis) made their first contribution in [https://github.com/mockk/mockk/pull/927](https://togithub.com/mockk/mockk/pull/927) - [@​bossm0n5t3r](https://togithub.com/bossm0n5t3r) made their first contribution in [https://github.com/mockk/mockk/pull/946](https://togithub.com/mockk/mockk/pull/946) - [@​m-burst](https://togithub.com/m-burst) made their first contribution in [https://github.com/mockk/mockk/pull/951](https://togithub.com/mockk/mockk/pull/951) - [@​cliffred](https://togithub.com/cliffred) made their first contribution in [https://github.com/mockk/mockk/pull/939](https://togithub.com/mockk/mockk/pull/939) - [@​daniel-dios](https://togithub.com/daniel-dios) made their first contribution in [https://github.com/mockk/mockk/pull/955](https://togithub.com/mockk/mockk/pull/955) - [@​NotWoods](https://togithub.com/NotWoods) made their first contribution in [https://github.com/mockk/mockk/pull/958](https://togithub.com/mockk/mockk/pull/958) **Full Changelog**: https://github.com/mockk/mockk/compare/1.13.2...1.13.3 ### [`v1.13.2`](https://togithub.com/mockk/mockk/releases/tag/1.13.2) [Compare Source](https://togithub.com/mockk/mockk/compare/1.13.1...1.13.2) #### What's Changed - update dependencies in readme to reflect new multiplatform structure by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/926](https://togithub.com/mockk/mockk/pull/926) - Properly handle sealed classes with Kotlin 1.7 and JDK 17 by [@​stuebingerb](https://togithub.com/stuebingerb) in [https://github.com/mockk/mockk/pull/916](https://togithub.com/mockk/mockk/pull/916) - add jdk 19 to workflow test matrix by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/933](https://togithub.com/mockk/mockk/pull/933) #### New Contributors - [@​stuebingerb](https://togithub.com/stuebingerb) made their first contribution in [https://github.com/mockk/mockk/pull/916](https://togithub.com/mockk/mockk/pull/916) **Full Changelog**: https://github.com/mockk/mockk/compare/1.13.1...1.13.2 ### [`v1.13.1`](https://togithub.com/mockk/mockk/releases/tag/1.13.1) New major release, mainly because the dependency to be included in gradle/maven files has changed from `io.mockk:mockk` to `io.mockk:mockk-`, where platform is either `jvm` or `android`. #### What's Changed - value class check - catch KotlinReflectionInternalError by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/922](https://togithub.com/mockk/mockk/pull/922) **Full Changelog**: https://github.com/mockk/mockk/compare/v1.12.8...1.13.1 ### [`v1.12.8`](https://togithub.com/mockk/mockk/releases/tag/v1.12.8) Big thanks to [@​aSemy](https://togithub.com/aSemy), [@​qoomon](https://togithub.com/qoomon) and [@​kubode](https://togithub.com/kubode) for investigating and fixing the bugs introduced in v1.12.7 and further improving the library! ##### What's Changed - fix: handle isValue exceptions by [@​qoomon](https://togithub.com/qoomon) in [https://github.com/mockk/mockk/pull/890](https://togithub.com/mockk/mockk/pull/890) - Fix Android Instrumentation dispatcher.jar inclusion by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/899](https://togithub.com/mockk/mockk/pull/899) - Standardise JVM target to be 1.8 by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/900](https://togithub.com/mockk/mockk/pull/900) - introduce Kotlinx Benchmark tests (copied from [#​763](https://togithub.com/mockk/mockk/issues/763)) by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/904](https://togithub.com/mockk/mockk/pull/904) - try reverting Android minSdk to 21 by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/901](https://togithub.com/mockk/mockk/pull/901) - expose more mockk projects as API dependencies by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/905](https://togithub.com/mockk/mockk/pull/905) - make Java source code target jvm 8 by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/907](https://togithub.com/mockk/mockk/pull/907) - Fix an issue that Android Instrumentation Test fails by [@​kubode](https://togithub.com/kubode) in [https://github.com/mockk/mockk/pull/895](https://togithub.com/mockk/mockk/pull/895) - use the official Gradle GHA by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/914](https://togithub.com/mockk/mockk/pull/914) - De-duplicate `ValueClassSupport` by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/913](https://togithub.com/mockk/mockk/pull/913) - add 1.7.20-RC to test matrix by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/mockk/mockk/pull/918](https://togithub.com/mockk/mockk/pull/918) **Full Changelog**: https://github.com/mockk/mockk/compare/1.12.7...v1.12.8
material-components/material-components-android ### [`v1.8.0`](https://togithub.com/material-components/material-components-android/releases/tag/1.8.0) [Compare Source](https://togithub.com/material-components/material-components-android/compare/1.7.0...1.8.0) ### What's new since 1.7.0 - Brand new Side Sheet component with standard, modal and coplanar variants! Check out the Side Sheet [design guidance](https://m3.material.io/components/side-sheets/overview) and [developer documentation](https://togithub.com/material-components/material-components-android/blob/master/docs/components/SideSheet.md) for more details. - Brand new Search component! Check out the Search [design guidance](https://m3.material.io/components/search/overview) and [developer documentation](https://togithub.com/material-components/material-components-android/blob/master/docs/components/Search.md) for more details. - Integrated tokens for Bottom Sheet, Checkbox, Chip, Dialog, Divider, MaterialButton, NavigationRail, ProgressIndicator, Slider, Switch, Tabs, and TextInputLayout. #### Dependency Updates | Dependency | Previous version | New version | | - | - | - | | ext.kotlinVersion | 1.3.50 | - | | errorproneVersion | - | 2.15.0 | | compileSdkVersion | 32 | 33 | | targetSdkVersion | 32 | 33 | #### Library Updates - `A11y` - Improve date input validation feedback follow up ([`1200e25`](https://togithub.com/material-components/material-components-android/commit/1200e25d1bbe91672172ae6682ff2a2b32a75da6)) - Improve date input validation feedback ([`f394903`](https://togithub.com/material-components/material-components-android/commit/f394903fd3552f9331bbc772f26be879c9515696)) - Improve TalkBack focus order when selecting a day ([`dff70c0`](https://togithub.com/material-components/material-components-android/commit/dff70c062d680257ef647ea89ac3e9eea4e43f2d)) - Improve date selection announcements ([`5c5b1e8`](https://togithub.com/material-components/material-components-android/commit/5c5b1e82586166187082f8d958a6db57e542f4f9)) - Announce start/end dates ([`2f9844b`](https://togithub.com/material-components/material-components-android/commit/2f9844b34a6fdc54bf1468f7609c3aeed3ef73f7)) - Announce current year and day ([`c6539f2`](https://togithub.com/material-components/material-components-android/commit/c6539f23901dbb6ca5fbbd6e311bcad04412ec72)) - Fix TalkBack announcements when switching between year/day selection views ([`62b2b19`](https://togithub.com/material-components/material-components-android/commit/62b2b19d60ae66989506626f95ea0d264fbaa1c6)) - Announce selection ([`be8b8d4`](https://togithub.com/material-components/material-components-android/commit/be8b8d44de785f1a4826d02c7e82115f549de9cd)) - Improve focus handling ([`ceacaa6`](https://togithub.com/material-components/material-components-android/commit/ceacaa699a7663aeebc69a1a143fb5c74f64fd18)) - Request focus on search menu when showing ([`968e035`](https://togithub.com/material-components/material-components-android/commit/968e035e835364faf38a481160d25838151a0942)) - Fix focus when changing input mode ([`eca825f`](https://togithub.com/material-components/material-components-android/commit/eca825fd37738e49aae5bd9b0aeb20480d3d133f)) - Update hour content description for 24h clock ([`ee19b01`](https://togithub.com/material-components/material-components-android/commit/ee19b01e2eada55f31aad5caf5b6d789095a4aa5)) - Make Clock text scale with system font size ([`e9fc0a0`](https://togithub.com/material-components/material-components-android/commit/e9fc0a033a10ec2e53d8a721aa68779dbc33aa7c)) - `Badging` - Fix NPE in BadgeState ([`23b7157`](https://togithub.com/material-components/material-components-android/commit/23b7157a648411cf01ca22eb7071fc4f4ad5ac05)) - `BottomAppBar` - Request layout for FAB when BAB changes so that FAB will always be aware of BAB changes ([`10fe695`](https://togithub.com/material-components/material-components-android/commit/10fe695ed989b7e7017b3ca28ee16aa6a54f16b8)) - Add attribute to remove shadow on container ([`1322e61`](https://togithub.com/material-components/material-components-android/commit/1322e61c4ca4229f07cc9b1ad0af6042a459d80c)) - Added the handle to the bottom sheet. ([`4c11606`](https://togithub.com/material-components/material-components-android/commit/4c11606122d260b16cf863ad9d9ef12ecdeb6029)) - Update motion specs for show/hide bar ([`fdd8dae`](https://togithub.com/material-components/material-components-android/commit/fdd8dae9822a1e6cbc56f35190404b9e0f5c509a)) - Updating catalog to remove M2 options ([`8bec167`](https://togithub.com/material-components/material-components-android/commit/8bec1675e6671eacffd77ce46efbc6a5e322c952)) - Small bugs and padding adjustments ([`63f98bf`](https://togithub.com/material-components/material-components-android/commit/63f98bf5f9cb7b643b852418918eea39f74dceee)) - `BottomNavigationView` - Remove elevation shadows ([`e393748`](https://togithub.com/material-components/material-components-android/commit/e3937483c36449f71bc00a5b9376198345060f89)) - Updated active text label to use a bold typeface. ([`11e98f2`](https://togithub.com/material-components/material-components-android/commit/11e98f2d1159cee2e1983a392cde6beb3e9436dc)) - Fix hardcoded number of children ([`a2ce1dd`](https://togithub.com/material-components/material-components-android/commit/a2ce1dd1020ec992234836394330aeeac9ac0a64)) - `BottomSheet` - Update motion attributes for bottom sheet dialog animation ([`1cdb371`](https://togithub.com/material-components/material-components-android/commit/1cdb371c307a8b4057120677b06aa7ba96339dda)) - Token integration ([`e474cf4`](https://togithub.com/material-components/material-components-android/commit/e474cf4796a884d3485db142fd645360d1ce972c)) - Update elevation to match specs ([`617e582`](https://togithub.com/material-components/material-components-android/commit/617e5822f9fabe7838052266a0df6a599407ac7b)) - Sync custom actions with drag handle views ([`0804031`](https://togithub.com/material-components/material-components-android/commit/080403173c073f2e4d3bd6412dd508283f956124)) - Only remove round corners in M3 styles when it's fullscreen ([`6631abb`](https://togithub.com/material-components/material-components-android/commit/6631abbdb53e789589951452f99d1e0bbedd30bd)) - Add shouldRemoveExpandedCorners attribute ([`6e6c53a`](https://togithub.com/material-components/material-components-android/commit/6e6c53a4f4408604dd010bdb3d88117fb102128c)) - Add method to calculate slide offset ([`2958d8d`](https://togithub.com/material-components/material-components-android/commit/2958d8d51b2363bc441eb5eb3e842094c1b5788f)) - Add attribute for significant velocity threshold ([`d845db8`](https://togithub.com/material-components/material-components-android/commit/d845db8979cc5ba59362886768dd8c3c0f3c01be)) - Corrected guidance to use modal bottom sheet default style theme attribute for standard bottom sheets and added a callout explaining that there is no default style theme attribute for standard bottom sheets. ([`4865639`](https://togithub.com/material-components/material-components-android/commit/48656398cbad7cd19aa1015a606d4fe200765362)) - Disable drag handle when restricting expansion ([`c9e855e`](https://togithub.com/material-components/material-components-android/commit/c9e855e7d930c7720fd01bb7a70148dde38b93e7)) - `Catalog` - Fix incorrect time stamps ([`305e19d`](https://togithub.com/material-components/material-components-android/commit/305e19df335f18f4fb3bdbb389b82f76bdef4ad8)) - Updated search demo to change search bar hint ([`fafee33`](https://togithub.com/material-components/material-components-android/commit/fafee33a869bf1be4d758d438b6f84a0ab95ef68)) - Updated Catalog demo to change search bar/view demo title. ([`df85be2`](https://togithub.com/material-components/material-components-android/commit/df85be268f9eed5c65f616d4e59c477a87073161)) - Applied edge-to-edge to preferences bottom sheet ([`c440d86`](https://togithub.com/material-components/material-components-android/commit/c440d868f83d79ed7b9a9d9c51e17ea7ceae17cb)) - Add themed icon ([`45a569f`](https://togithub.com/material-components/material-components-android/commit/45a569f858bc67b09ecc3654da329ac7d9a243d8)) - Add input mode selector ([`09f1ee5`](https://togithub.com/material-components/material-components-android/commit/09f1ee56444aa12f75f2a11c4640d47b6d97dfb4)) - Fix navigation bar overlaps ui [#​2927](https://togithub.com/material-components/material-components-android/issues/2927) ([`5c2eb45`](https://togithub.com/material-components/material-components-android/commit/5c2eb45fd9eee06374a4e687aec93550a750610f)) - Replace android.support dependencies with androidx ([`3d32f73`](https://togithub.com/material-components/material-components-android/commit/3d32f73f4d661af9dfd5856147c6b964f22896f3)) - Update date picker demo text appearances to M3 ([`c19efa0`](https://togithub.com/material-components/material-components-android/commit/c19efa03e524278238e0c5c53bf58115cacc9f73)) - Updated button demo to provide the correct content description for icon only buttons. ([`2697e0f`](https://togithub.com/material-components/material-components-android/commit/2697e0f699c66dcc7f2bcb0a7eec5e9ce4a169df)) - Added search/filter functionality to MDC Catalog. ([`549fe19`](https://togithub.com/material-components/material-components-android/commit/549fe191340452403605a80946c40d21de37e211)) - Fix the favorite icon vertical alignment on demo landing rows ([`745acfd`](https://togithub.com/material-components/material-components-android/commit/745acfdfc7914be14414dea7642741f8647eb3af)) - Update Catalog preferences demo to use MaterialSwitch ([`229eb9d`](https://togithub.com/material-components/material-components-android/commit/229eb9d64f0e2f3972fddb0abcd12baa3e9e96cb)) - Fix favorite row button alignment in lower apis. ([`849be73`](https://togithub.com/material-components/material-components-android/commit/849be73edb5510748d66e8b84d50639ee9082856)) - Updated catalog preferences for shape corner sizes. ([`3daa028`](https://togithub.com/material-components/material-components-android/commit/3daa028e42314b79bd72ad50a123045bed21a5c8)) - `Checkbox` - Update unselected outline color to ?attr/colorOnSurfaceVariant to match tokens. ([`5d261f5`](https://togithub.com/material-components/material-components-android/commit/5d261f516aece8e5243394fd1ca9fbb2f96098fb)) - Integrated tokens ([`e67e68d`](https://togithub.com/material-components/material-components-android/commit/e67e68d6b422c065421f4da6078c04dd568420a3)) - Fixed NPE crash due to layer drawable's constant state issue in APIs < 23. ([`b8e1b57`](https://togithub.com/material-components/material-components-android/commit/b8e1b5780478a7ea77312d067e708bffd35dac4a)) - Fix a11y announcement for indeterminate state. ([`6f474b3`](https://togithub.com/material-components/material-components-android/commit/6f474b3e48a84aadc7eefe8a0c166cb8f1b5701a)) - Fixed pre 21 issue where the icon did not update its color according to its state properly ([`ccf67f7`](https://togithub.com/material-components/material-components-android/commit/ccf67f7edf867d26c003aaba63d1b171aa442d61)) - Added indeterminate state support to the checkbox. ([`8f149b1`](https://togithub.com/material-components/material-components-android/commit/8f149b10dcebf807157c313f483f167b75f0c73f)) - Fixed icon color not updating correctly in light mode in pre 21. ([`a4d6f51`](https://togithub.com/material-components/material-components-android/commit/a4d6f51b4b9104294507c7b79c17f602225626a8)) - Fix pre-21 issue where a child of the layer drawable (the button and/or the icon drawables) may not have its constant state set up properly. ([`079371f`](https://togithub.com/material-components/material-components-android/commit/079371fd1069daf578cb6812335a5c018db0a1da)) - Fixed issue where AppCompatCheckBox would not display its drawable when a Material theme was being used. ([`9ca8a80`](https://togithub.com/material-components/material-components-android/commit/9ca8a804682cd0fec13d738f0d46d4c14e5f4c53)) - `Chip` - Integrate Chip component tokens to Chip styles in M3. ([`cb65cc6`](https://togithub.com/material-components/material-components-android/commit/cb65cc6e60d370971f531b329ae3f84acaea432a)) - `CollapsingToolbarLayout` - Exposing methods to set text size for collapsed and expanded text size ([`29bed9a`](https://togithub.com/material-components/material-components-android/commit/29bed9a021dd84b07fdab38a055bf3bb72cfff1a)) - `Color` - Updated Builder class for content color ([`2351fd9`](https://togithub.com/material-components/material-components-android/commit/2351fd9f6cd49a57fe33dbe700526dc02a9e3146)) - Implement content color with resources loader ([`4619f31`](https://togithub.com/material-components/material-components-android/commit/4619f31bc79ea7e25790980b8031ffa036b1332c)) - Added content color api ([`8ca326a`](https://togithub.com/material-components/material-components-android/commit/8ca326ac5203a2c026413a8ef1c35d65c916fb90)) - Added the rest of the library for content color support. ([`8510596`](https://togithub.com/material-components/material-components-android/commit/85105965281085d6571e0290b69e3d09bdf504c5)) - Updated material color utilities library implementation. ([`f0e5bda`](https://togithub.com/material-components/material-components-android/commit/f0e5bdafab07ace15491514ce79c1dbdb9cd3fca)) - Refactored material color utilities library into its own directory. ([`9897bc2`](https://togithub.com/material-components/material-components-android/commit/9897bc293d20341e8c9ba7e4bf91cb65d6800846)) - Add additional condition to check dynamic color supported devices ([`17ac05d`](https://togithub.com/material-components/material-components-android/commit/17ac05d0e93596771e762bce708be9f5527d1724)) - `Dialog` - Updated enter/exit animation to use fade pattern and motion tokens. ([`8d8a0d1`](https://togithub.com/material-components/material-components-android/commit/8d8a0d14ae1c7923eb1b409db266b612e7434b44)) - `Divider` - Change shouldDrawDivider from private to protected to allow for more user flexibility. ([`b08257b`](https://togithub.com/material-components/material-components-android/commit/b08257bce32e8fbbf51aa16415d2c4bb3ea18cfd)) - Integrated M3 tokens and updated color. ([`2f6ebb4`](https://togithub.com/material-components/material-components-android/commit/2f6ebb4001adbee3552b20eb4a2174f121f2c371)) - Fixed logic of determining whether to draw divider in MaterialDividerItemDecoration. ([`6f547d4`](https://togithub.com/material-components/material-components-android/commit/6f547d4fd3ed090a7686d4020761b43428848c27)) - `Documentation` - Added warning about known issue in slider where label doesn't scroll along with the screen. ([`ca54c65`](https://togithub.com/material-components/material-components-android/commit/ca54c659a4b6c6251b3527f23b2516fb6f428aab)) - Add android dev doc and source link to the Material dev doc ([`00c9ce5`](https://togithub.com/material-components/material-components-android/commit/00c9ce51dd49b45e03e16997eb6d4c636f5b9a6d)) - Update docs to remove links to Kotlin docs and remove Kotlin from dependency ([`bde2092`](https://togithub.com/material-components/material-components-android/commit/bde20921169f6b0476203a5ef805ae72127b2611)) - Update text field doc to include information about android:textColorHighlight ([`ae788ac`](https://togithub.com/material-components/material-components-android/commit/ae788ac4815e4b0cc28d285d499156e7a4895828)) - Changing the name for the AGP compatibility variable so that the IDE points to the right documentation. ([`2527cc2`](https://togithub.com/material-components/material-components-android/commit/2527cc25c83b385b44dc7ebe201e70cf4ae5e7dd)) - Update typography guideline to M3. ([`bc1ec5a`](https://togithub.com/material-components/material-components-android/commit/bc1ec5af8f82daeedebcb6937f3b86270c290156)) - `ExposedDropdownMenu` - Dismiss modal popup in dismissDropDown ([`644d141`](https://togithub.com/material-components/material-components-android/commit/644d141359559f17e9307e8c248f92ddca3bc845)) - Fix MaterialAutoCompleteTextView.setDropDownBackgroundDrawable(Drawable). ([`db115f0`](https://togithub.com/material-components/material-components-android/commit/db115f0a1f0489ff2d32c5ad0c12e810527c1bba)) - Fixed missing icon activated color. ([`9147704`](https://togithub.com/material-components/material-components-android/commit/91477044684b426bef5f82d5dc3d3c201c0dd7b1)) - `ExtendedFloatingActionButton` - Add a `extendToWrapContent` attribute that can disable the current eFAB behavior of extending to wrap content (thus allowing `extend` to return to its original width before shrinking) ([`d5b41c1`](https://togithub.com/material-components/material-components-android/commit/d5b41c185ff41243f961784aa5a8382a387aa25a)) - Update extend/shrink motion spec ([`9db041c`](https://togithub.com/material-components/material-components-android/commit/9db041cc52472b1e5d2ad0643acaaa5879d9fed8)) - `MaterialButton` - Integrate M3 Tokens. ([`b9e8fb8`](https://togithub.com/material-components/material-components-android/commit/b9e8fb89fa2711999619e6ae376cedd8147835c1)) - Use Layout to measure text width. ([`3b333ee`](https://togithub.com/material-components/material-components-android/commit/3b333ee8343dc0bde20d110a39ccc4654977eb23)) - Added support for toggleable Icon buttons. ([`8a4af07`](https://togithub.com/material-components/material-components-android/commit/8a4af079796a9594c97315a943d73d5bceb95bd3)) - `MaterialButtonToggleGroup` - handle setEnable childs ([`e8bfad5`](https://togithub.com/material-components/material-components-android/commit/e8bfad56446af18b7bcaf2e7e63d573b025221c9)) - Added the default Material3 toggleGroupStyle ([`b6c6600`](https://togithub.com/material-components/material-components-android/commit/b6c6600ad80caacc91879a37a2b67494775a4a91)) - `MaterialCardView` - Update motion specs for Z-shadow ([`3975a2e`](https://togithub.com/material-components/material-components-android/commit/3975a2e908353b816d3dfe67cee3b756d72c2aed)) - Add fade animation for checked icon drawable ([`7d129ea`](https://togithub.com/material-components/material-components-android/commit/7d129eae21e97eba46d515cf8fd9ad287c6ff94b)) - `MaterialDatePicker` - Fix headerTitle text size ([`147463f`](https://togithub.com/material-components/material-components-android/commit/147463f33d090d8b3b1f9d9beb92d3ee631c91fe)) - Update text appearances ([`ffbf835`](https://togithub.com/material-components/material-components-android/commit/ffbf8351958a122ac7b4a42ff1747eb88c2c7ade)) - Update elevation to match specs ([`b813b2b`](https://togithub.com/material-components/material-components-android/commit/b813b2b441cca6599a4c0eb635a2c7282c6c1187)) - Improve inputs validation ([`4046525`](https://togithub.com/material-components/material-components-android/commit/4046525b20ff81c4f4fef654b9e8f09ffd7f5a81)) - Exposed method to set a custom formatter for text input fields. ([`276c117`](https://togithub.com/material-components/material-components-android/commit/276c1171b08ac3d9f6a188f4bb90345a0d5b5a17)) - Enable auto-sizing of the date selection text ([`32f1118`](https://togithub.com/material-components/material-components-android/commit/32f111817f1c0e846a638d19cb8063d9dc02eec1)) - Update string translation for datepicker. ([`8dcdd26`](https://togithub.com/material-components/material-components-android/commit/8dcdd268341d00f9e330c87f358fa6bb1177f34c)) - Add method to specify a content description to decorated views ([`7bc5689`](https://togithub.com/material-components/material-components-android/commit/7bc5689789489b14ccf38e574a29bcbba521a834)) - Make new public getter methods for start/end/openAt values with long return types for CalendarConstraints ([`6643695`](https://togithub.com/material-components/material-components-android/commit/6643695c3e6d9ee03e5f58623db901124ed1ce02)) - Update doc to include DayViewDecorator. ([`aff6a94`](https://togithub.com/material-components/material-components-android/commit/aff6a9453901e07be8212d7106d255d4ac6b51d7)) - Expose CalendarConstraints start and end getter methods ([`95ab979`](https://togithub.com/material-components/material-components-android/commit/95ab9794cbe5a3915999059f1479b94984aaf546)) - Add initialize() method to DayViewDecorator to better support configuration changes ([`be650c4`](https://togithub.com/material-components/material-components-android/commit/be650c4f57aa437c873c0696e77d66a8fcd872d6)) - Refactor header styling to allow for multiline title with description text ([`debe22e`](https://togithub.com/material-components/material-components-android/commit/debe22e3978ffd41ea31c9fe9fe9b0e3d78ef1b6)) - Hide month pagination from the year picker ([`51b6054`](https://togithub.com/material-components/material-components-android/commit/51b605412af7ff6c69b35900c922dcb67f606f26)) - Add ability to customize background color to DayViewDecorator ([`24201b4`](https://togithub.com/material-components/material-components-android/commit/24201b42467773c612fd2093c62f517f0ec180fd)) - Add support for decorating day views and a demo for circle indicators ([`bca0f2e`](https://togithub.com/material-components/material-components-android/commit/bca0f2ea8eee79c45a5684cafa550815d3951c6c)) - `NavigationRail` - Added design tokens for M3 NavigationRail Component. ([`d1b682f`](https://togithub.com/material-components/material-components-android/commit/d1b682f9fd95dcfceb64d9f276b4dd35fc048f0e)) - `NavigationView` - Disable drawing left and right insets if the nav bar is not edge to edge ([`cb384c5`](https://togithub.com/material-components/material-components-android/commit/cb384c5c2c16f8323abbb9bcc8db45aab3d44369)) - Fix subheaderInsetEnd setter ([`88c448e`](https://togithub.com/material-components/material-components-android/commit/88c448ed19673e7b5d9f53690b3482a6bed06fd2)) - `ProgressIndicator` - Integrates tokens into M3 styles. ([`ab063b7`](https://togithub.com/material-components/material-components-android/commit/ab063b7b7f86e3e8fb16fd67f6dd3d9389f5e6eb)) - Finish all visibility animations when animate = false ([`26aa22b`](https://togithub.com/material-components/material-components-android/commit/26aa22b26df23c05818fe9e35e7399cf1e42a684)) - `Search` - Added search bar component. ([`4e323fa`](https://togithub.com/material-components/material-components-android/commit/4e323fa18be5f9cdd32765b57143cdcc55c993c6)) - Fixed issue that caused the wrong component to be focused on automatically when talkback is active. ([`8cbfd20`](https://togithub.com/material-components/material-components-android/commit/8cbfd20

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), 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 has been generated by Mend Renovate. View repository job log here.