Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bump] Update all non-major dependencies #10

Closed
wants to merge 1 commit into from

Conversation

glovo-renovate[bot]
Copy link
Contributor

@glovo-renovate glovo-renovate bot commented May 23, 2022

This PR contains the following updates:

Package Type Update Change
org.jetbrains.kotlinx:kotlinx-coroutines-test dependencies minor 1.6.4 -> 1.7.3
com.jraska.livedata:testing-ktx dependencies minor 1.2.0 -> 1.3.0
io.mockk:mockk-android (source) dependencies patch 1.13.5 -> 1.13.8
io.mockk:mockk (source) dependencies patch 1.13.5 -> 1.13.8
org.mockito.kotlin:mockito-kotlin dependencies minor 4.0.0 -> 4.1.0
org.mockito:mockito-inline dependencies minor 4.5.1 -> 4.11.0
com.squareup.okhttp3:logging-interceptor (source) dependencies minor 4.11.0 -> 4.12.0
com.squareup.okhttp3:okhttp-urlconnection (source) dependencies minor 4.9.3 -> 4.12.0
com.squareup.okhttp3:okhttp (source) dependencies minor 4.11.0 -> 4.12.0
org.jetbrains.kotlinx:kotlinx-coroutines-android dependencies minor 1.6.4 -> 1.7.3
io.reactivex.rxjava3:rxjava dependencies patch 3.1.6 -> 3.1.8
com.google.android.material:material dependencies minor 1.9.0 -> 1.10.0
androidx.lifecycle:lifecycle-livedata-ktx (source) dependencies patch 2.6.1 -> 2.6.2
androidx.lifecycle:lifecycle-runtime-ktx (source) dependencies patch 2.6.1 -> 2.6.2
androidx.lifecycle:lifecycle-viewmodel-ktx (source) dependencies patch 2.6.1 -> 2.6.2
androidx.recyclerview:recyclerview (source) dependencies patch 1.3.0 -> 1.3.2
androidx.core:core-ktx (source) dependencies minor 1.10.1 -> 1.12.0
androidx.fragment:fragment-ktx (source) dependencies patch 1.6.0 -> 1.6.2
org.jetbrains.kotlin:kotlin-gradle-plugin (source) dependencies minor 1.8.22 -> 1.9.21
com.android.tools.build:gradle (source) dependencies minor 8.0.2 -> 8.2.0

Release Notes

Kotlin/kotlinx.coroutines (org.jetbrains.kotlinx:kotlinx-coroutines-test)

v1.7.3

Compare Source

  • Disabled the publication of the multiplatform library metadata for the old (1.6 and earlier) KMP Gradle plugin (#​3809).
  • Fixed a bug introduced in 1.7.2 that disabled the coroutine debugger in IDEA (#​3822).

v1.7.2

Compare Source

Bug fixes and improvements
  • Coroutines debugger no longer keeps track of coroutines with empty coroutine context (#​3782).
  • CopyableThreadContextElement now properly copies an element when crossing the coroutine boundary in flowOn (#​3787). Thanks @​wanyingd1996!
  • Coroutine timeouts no longer prevent K/N newSingleThreadContext from closing (#​3768).
  • A non-linearizability in Mutex during tryLock/unlock sequence with owners is fixed (#​3745).
  • Atomicfu version is updated to 0.21.0.

v1.7.1

Compare Source

Bug fixes and improvements
  • Special characters in coroutine names in JSON dumps are supported (#​3747)
  • The binary compatibility of the experimental overload of runTest is restored (#​3673)
  • Channels that don't use onUndeliveredElement now allocate less memory (#​3646)

v1.7.0

Compare Source

Core API significant improvements
  • New Channel implementation with significant performance improvements across the API (#​3621).
  • New select operator implementation: faster, more lightweight, and more robust (#​3020).
  • Mutex and Semaphore now share the same underlying data structure (#​3020).
  • Dispatchers.IO is added to K/N (#​3205)
    • newFixedThreadPool and Dispatchers.Default implementations on K/N were wholly rewritten to support graceful growth under load (#​3595).
  • kotlinx-coroutines-test rework:
    • Add the timeout parameter to runTest for the whole-test timeout, 10 seconds by default (#​3270). This replaces the configuration of quiescence timeouts, which is now deprecated (#​3603).
    • The withTimeout exception messages indicate if the timeout used the virtual time (#​3588).
    • TestCoroutineScheduler, runTest, and TestScope API are promoted to stable (#​3622).
    • runTest now also fails if there were uncaught exceptions in coroutines not inherited from the test coroutine (#​1205).
Breaking changes
  • Old K/N memory model is no longer supported (#​3375).
  • New generic upper bounds were added to reactive integration API where the language since 1.8.0 dictates (#​3393).
  • kotlinx-coroutines-core and kotlinx-coroutines-jdk8 artifacts were merged into a single artifact (#​3268).
  • Artificial stackframes in stacktrace recovery no longer contain the \b symbol and are now navigable in IDE and supplied with proper documentation (#​2291).
  • CoroutineContext.isActive returns true for contexts without any job in them (#​3300).
Bug fixes and improvements
  • Kotlin version is updated to 1.8.20
  • Atomicfu version is updated to 0.20.2.
  • JavaFx version is updated to 17.0.2 in kotlinx-coroutines-javafx (#​3671)..
  • JPMS is supported (#​2237). Thanks @​lion7!
  • BroadcastChannel and all the corresponding API are deprecated (#​2680).
  • Added all supported K/N targets (#​3601, #​812, #​855).
  • K/N Dispatchers.Default is backed by the number of threads equal to the number of available cores (#​3366).
  • Fixed an issue where some coroutines' internal exceptions were not properly serializable (#​3328).
  • Introduced Job.parent API (#​3201).
  • Fixed a bug when TestScheduler leaked cancelled jobs (#​3398).
  • TestScope.timeSource now provides comparable time marks (#​3617). Thanks @​hfhbd!
  • Fixed an issue when cancelled withTimeout handles were preserved in JS runtime (#​3440).
  • Ensure awaitFrame only awaits a single frame when used from the main looper (#​3432). Thanks @​pablobaxter!
  • Obsolete Class-Path attribute was removed from kotlinx-coroutines-debug.jar manifest (#​3361).
  • Fixed a bug when updateThreadContext operated on the parent context (#​3411).
  • Added new Flow.filterIsInstance extension (#​3240).
  • Dispatchers.Default thread name prefixes are now configurable with system property (#​3231).
  • Added Flow.timeout operator as @FlowPreview (#​2624). Thanks @​pablobaxter!
  • Improved the performance of the future builder in case of exceptions (#​3475). Thanks @​He-Pin!
  • Mono.awaitSingleOrNull now waits for the onComplete signal (#​3487).
  • Channel.isClosedForSend and Channel.isClosedForReceive are promoted from experimental to delicate (#​3448).
  • Fixed a data race in native EventLoop (#​3547).
  • Dispatchers.IO.limitedParallelism(valueLargerThanIOSize) no longer creates an additional wrapper (#​3442). Thanks @​dovchinnikov!
  • Various @FlowPreview and @ExperimentalCoroutinesApi are promoted to experimental and stable respectively (#​3542, #​3097, #​3548).
  • Performance improvements in Dispatchers.Default and Dispatchers.IO (#​3416, #​3418).
  • Fixed a bug when internal suspendCancellableCoroutineReusable might have hanged (#​3613).
  • Introduced internal API to process events in the current system dispatcher (#​3439).
  • Global CoroutineExceptionHandler is no longer invoked in case of unprocessed future failure (#​3452).
  • Performance improvements and reduced thread-local pressure for the withContext operator (#​3592).
  • Improved performance of DebugProbes (#​3527).
  • Fixed a bug when the coroutine debugger might have detected the state of a coroutine incorrectly (#​3193).
  • CoroutineDispatcher.asExecutor() runs tasks without dispatching if the dispatcher is unconfined (#​3683). Thanks @​odedniv!
  • SharedFlow.toMutableList and SharedFlow.toSet lints are introduced (#​3706).
  • Channel.invokeOnClose is promoted to stable API (#​3358).
  • Improved lock contention in Dispatchers.Default and Dispatchers.IO during the startup phase (#​3652).
  • Fixed a bug that led to threads oversubscription in Dispatchers.Default (#​3642).
  • Fixed a bug that allowed limitedParallelism to perform dispatches even after the underlying dispatcher was closed (#​3672).
  • Fixed a bug that prevented stacktrace recovery when the exception's constructor from cause was selected (#​3714).
  • Improved sanitizing of stracktrace-recovered traces (#​3714).
  • Introduced an internal flag to disable uncaught exceptions reporting in tests as a temporary migration mechanism (#​3736).
  • Various documentation improvements and fixes.

Changelog for previous versions may be found in CHANGES_UP_TO_1.7.md

jraska/livedata-testing (com.jraska.livedata:testing-ktx)

v1.3.0

Compare Source

What's Changed

  • Maintenance update, no new features, only dependency bumps
  • Kotlin version is now 1.7.21
  • #​142 Target Android 13

Full Changelog: jraska/livedata-testing@1.2.0...1.3.0

Dependencies
testImplementation 'com.jraska.livedata:testing-ktx:1.3.0'
testImplementation 'com.jraska.livedata:testing:1.3.0'
mockk/mockk (io.mockk:mockk-android)

v1.13.8

Compare Source

What's Changed
New Contributors

Full Changelog: mockk/mockk@1.13.7...1.13.8

v1.13.7

What's Changed

New Contributors

Full Changelog: mockk/mockk@1.13.5...1.13.7

mockito/mockito-kotlin (org.mockito.kotlin:mockito-kotlin)

v4.1.0

Compare Source

Changelog generated by Shipkit Changelog Gradle Plugin

4.1.0
  • 2022-11-26 - 6 commit(s) by Niklas Seyfarth, Tim van der Lippe, Vetle Leinonen-Roeim, taeyeonKim, wrongwrong
  • Update Shipkit versions (#​468)
  • Also trigger release on 4.x tags (#​466)
  • Ease verify inOrder for suspending functions (#​464)
  • Upgrading Gradle to 6.9.2, Kotlin to 1.4.20, junit to 4.13.2 and mockito to 4.4.0 (#​458)
  • Add LenientStubber (#​454)
  • Remove jcenter (#​450)
  • Add support for per-mock strictness (#​325)
mockito/mockito (org.mockito:mockito-inline)

v4.11.0

Changelog generated by Shipkit Changelog Gradle Plugin

4.11.0
  • 2022-12-28 - 1 commit(s) by Andy Coates
  • Improve vararg handling: approach 2 (#​2807)
  • Mocking varargs method with any(String[].class) doesn't work as expected (#​2796)
  • (Argument)Matchers regression from 1.10.19 to 2.18.3 for varargs (#​1498)
  • Cannot verify varargs parameter as an array (#​1222)
  • ArgumentCaptor can't capture varargs-arrays (#​584)
  • Verification of an empty varargs call fails when isNotNull() is used (#​567)

v4.10.0

Changelog generated by Shipkit Changelog Gradle Plugin

4.10.0
  • 2022-12-14 - 13 commit(s) by Andrei Solntsev, Andriy Redko, Andy Coates, Christopher Lambert, Marcono1234, Vladimir Glinskikh, dependabot[bot]
  • Add new artifact mockito-subclass (to use mock-maker-subclass MockMaker) (#​2821)
  • Bump gradle from 7.5.1 to 7.6 (#​2817)
  • Fix incorrect Javadoc inline tag for MockitoJUnitRunner (#​2816)
  • Bump shipkit-auto-version from 1.2.1 to 1.2.2 (#​2811)
  • Bump com.github.ben-manes.versions from 0.42.0 to 0.44.0 (#​2810)
  • Bump kotlinVersion from 1.7.21 to 1.7.22 (#​2809)
  • Bump junit from 1.1.3 to 1.1.4 (#​2806)
  • Simplify MatcherApplicationStrategy (#​2803)
  • Bump kotlinVersion from 1.7.10 to 1.7.21 (#​2801)
  • Bump espresso-core from 3.4.0 to 3.5.0 (#​2800)
  • Bump versions.bytebuddy from 1.12.16 to 1.12.19 (#​2799)
  • Upgrade errorprone from 2.14.0 to 2.16 (#​2794)
  • automatically detect class to mock (#​2779)

v4.9.0

Changelog generated by Shipkit Changelog Gradle Plugin

4.9.0
  • 2022-11-14 - 6 commit(s) by Andrei Solntsev, Rafael Winterhalter, Rick Ossendrijver, dependabot[bot]
  • Upgrade objenesis 3.2 -> 3.3 (#​2784)
  • Upgrade objenesis 3.2 -> 3.3 (#​2783)
  • Avoids clearing stale weak entries from critical code segments. (#​2780)
  • bump gradle from 7.3.1 to 7.5.1 (#​2776)
  • Bump gradle/wrapper-validation-action from 1.0.4 to 1.0.5 (#​2775)
  • Bump gradle-errorprone-plugin from 2.0.2 to 3.0.1 (#​2770)
  • Bump junit-platform-launcher from 1.9.0 to 1.9.1 (#​2768)

v4.8.1

Changelog generated by Shipkit Changelog Gradle Plugin

4.8.1
  • 2022-10-17 - 6 commit(s) by andrepaschoal, dependabot[bot]
  • Possible fix #​2765: Add task to download package-list file from java as element-list (#​2766)
  • JavaDoc warning is blocking all pull requests (#​2765)
  • Bump versions.junitJupiter from 5.9.0 to 5.9.1 (#​2758)
  • Bump groovy from 3.0.12 to 3.0.13 (#​2756)
  • Bump com.diffplug.spotless from 6.10.0 to 6.11.0 (#​2753)
  • Bump org.eclipse.osgi from 3.18.0 to 3.18.100 (#​2751)
  • Bump versions.bytebuddy from 1.12.14 to 1.12.16 (#​2747)

v4.8.0

Changelog generated by Shipkit Changelog Gradle Plugin

4.8.0
  • 2022-09-07 - 10 commit(s) by Alex, James Baker, Johannes Spangenberg, Kurt Alfred Kluever, Rafael Winterhalter, Thibault Helsmoortel, dependabot[bot]
  • GitHub Workflows security hardening (#​2744)
  • Assign GlobalConfiguration initializer to unused variable (#​2742)
  • Bump com.diffplug.spotless from 6.9.1 to 6.10.0 (#​2738)
  • Drop varargs collector before invoking a user method. (#​2736)
  • Bump versions.bytebuddy from 1.12.13 to 1.12.14 (#​2734)
  • Remove useless thrown exception from constructor (#​2732)
  • TypeSafeMatching no longer iterates over class methods inefficiently (#​2729)
  • Fixes #​2720: Use StackWalker on Java 9+ to create Locations (#​2723)
  • LocationImpl adds performance overheads due to instantiating a stack trace (#​2720)
  • Fixes #​2626 : Introduce MockSettings.mockMaker (#​2701)
  • Introduce option to disable inline-mock-maker for a specific instance (#​2626)

v4.7.0

Changelog generated by Shipkit Changelog Gradle Plugin

4.7.0
  • 2022-08-13 - 33 commit(s) by 1988123, Andy Coates, Chen Ni, Marius Lichtblau, Nikita Koselev. Developer Advocate, Open Source Ally, Rafael Winterhalter, dependabot[bot], dstango, fishautumn, heqiang
  • Bump com.diffplug.spotless from 6.9.0 to 6.9.1 (#​2725)
  • Bump versions.bytebuddy from 1.12.12 to 1.12.13 (#​2719)
  • Fix Javadoc for Mockito. (#​2718)
  • Bump com.diffplug.spotless from 6.8.0 to 6.9.0 (#​2717)
  • Fix a typo in comment of InternalRunner.java (#​2715)
  • Bump junit-platform-launcher from 1.8.2 to 1.9.0 (#​2713)
  • Bump versions.junitJupiter from 5.8.2 to 5.9.0 (#​2712)
  • Bump groovy from 3.0.11 to 3.0.12 (#​2711)
  • Bump shipkit-auto-version from 1.2.0 to 1.2.1 (#​2709)
  • Bump kotlinVersion from 1.7.0 to 1.7.10 (#​2705)
  • Bump com.diffplug.spotless from 6.7.2 to 6.8.0 (#​2699)
  • Bump versions.bytebuddy from 1.12.11 to 1.12.12 (#​2695)
  • Makes error message less misleading and points to github for help. Issue #​2692 (#​2693)
  • Misleading error message when mocking and a class (of a parameter) is not found (#​2692)
  • Bump kotlinx-coroutines-core from 1.6.1-native-mt to 1.6.3-native-mt (#​2691)
  • Bump versions.bytebuddy from 1.12.10 to 1.12.11 (#​2690)
  • Fixes #​2679 : Update Javadoc (#​2689)
  • Bump org.eclipse.osgi from 3.17.200 to 3.18.0 (#​2688)
  • RETURNS_SELF: Avoids returning mock when mock type is assignable to method return type, but method return type is Object. (#​2687)
  • RETURNS_SELF breaks methods with generic return type (#​2686)
  • Fix #​2616 wrong stub for nested static (#​2685)
  • Bump com.diffplug.spotless from 6.7.0 to 6.7.2 (#​2684)
  • Avoids starting mocks "half-way" if a superclass constructor is mocked but an unmocked subclass is initiated. (#​2682)
  • Fix typo (#​2681)
  • Update javadoc of Strictness.STRICT_STUBS (#​2679)
  • Bump kotlinVersion from 1.6.21 to 1.7.0 (#​2677)
  • Bump biz.aQute.bnd.builder from 6.3.0 to 6.3.1 (#​2675)
  • Bump biz.aQute.bnd.gradle from 6.3.0 to 6.3.1 (#​2674)
  • Bump com.diffplug.spotless from 6.6.1 to 6.7.0 (#​2672)
  • update CONTRIBUTING.md - stackoverflow (#​2671)
  • stackoverflow.com is a non-actionable text, to be replaced with a hyperlink (#​2670)
  • Fix typos (#​2669)
  • Bump biz.aQute.bnd.gradle from 6.2.0 to 6.3.0 (#​2666)
  • Bump biz.aQute.bnd.builder from 6.2.0 to 6.3.0 (#​2665)
  • Improve Varargs handling in AdditionalAnswers (#​2664)
  • Bump appcompat from 1.4.1 to 1.4.2 (#​2663)
  • Varargs methods cause ClassCastException in AnswerFunctionalInterfaces (#​2644)
  • Mock static class seems records wrong invocations if called nested method throws exception (#​2616)

v4.6.1

Changelog generated by Shipkit Changelog Gradle Plugin

4.6.1

v4.6.0

Changelog generated by Shipkit Changelog Gradle Plugin

4.6.0
  • 2022-05-27 - 14 commit(s) by Hervé Boutemy, K. Siva Prasad Reddy, Rafael Winterhalter, dependabot[bot]
  • Bump shipkit-changelog from 1.1.15 to 1.2.0 (#​2654)
  • Bump versions.errorprone from 2.13.1 to 2.14.0 (#​2653)
  • Bump shipkit-auto-version from 1.1.20 to 1.2.0 (#​2651)
  • Fixes #​2648 : Add support for customising strictness via @​Mock annotation and MockSettings (#​2650)
  • Any way to enable Strict Stubbing when using Mockito.mock() without using @​Mock? (#​2648)
  • Reintroduce inheriting type annotations from interfaces if only one interface is mocked, including additional interfaces. (#​2645)
  • Bump com.diffplug.spotless from 6.6.0 to 6.6.1 (#​2643)
  • fix Reproducible Build issue (#​2642)
  • Bump com.diffplug.spotless from 6.5.2 to 6.6.0 (#​2641)
  • Mockito mock of interfaces lost annotation information (#​2640)
  • Bump material from 1.5.0 to 1.6.0 (#​2637)
  • Bump com.diffplug.spotless from 6.5.1 to 6.5.2 (#​2636)
  • Bump versions.bytebuddy from 1.12.9 to 1.12.10 (#​2635)
  • Bump com.diffplug.spotless from 6.5.0 to 6.5.1 (#​2632)
  • Bump com.diffplug.spotless from 6.4.2 to 6.5.0 (#​2631)
ReactiveX/RxJava (io.reactivex.rxjava3:rxjava)

v3.1.8

Maven
JavaDocs

Bugfixes

v3.1.7

Maven
JavaDocs

API changes
  • Add onDropped callback for onBackpressureLatest. (#​7542)
  • Add onDropped callback to onBackpressureBuffer. (#​7567)
Documentation
  • Change summary to caption, because summary is obsolete in HTML5. (#​7534)
  • Try using https to access the reactive streams javadoc. (#​7535)
  • Improve Javadoc of Disposable.
Other
  • Add minimum GitHub token permissions for workflows. (#​7541)
  • Create SECURITY.md (#​7546)
  • Add copyright and license to jar. (#​7520)
  • Convert CompletableOnErrorComplete$onError inner class to static. (#​7575)
  • Allow null accumulator type in the collect(Collector) operators. (#​7590)
material-components/material-components-android (com.google.android.material:material)

v1.10.0

Compare Source

What's new since 1.9.0

Important

New minimum requirements for your app's project:
  • Update compileSdkVersion to 34
Known Issues

Dependency Updates

Dependency Previous version New version
Gradle 7.2.0 7.4.2
androidx.activity -- 1.8.0
androidx.appcompat 1.5.0 1.6.1
androidx.resourceinspection:resourceinspection-annotation -- 1.0.1
androidx.resourceinspection:resourceinspection-processor -- 1.0.1

Library Updates

  • A11y
    • Do not count headers for accessibility (917da52)
  • Badging
    • Deprecate bottom badge gravities and update docs and usages in catalog (27abfdb)
    • Add new attribute for vertical offset when font is large (2362f4b)
    • Fix table formatting and remove unnecessary badge invalidation (44a97f4)
    • Fix crash caused by non-ascii strings (532b65d)
    • Badge cleanup/fixes: (4d50aa4)
    • Add attribute to automatically adjust badge so that it is within the anchor view's grandparent view's bounds (b706506)
    • Add getters/setters for vertical and horizontal badge padding (a0d0b53)
    • Allow text strings in badges (c1ef52b)
    • Center badge content more correctly (fc0de1b)
    • Add padding in between top and bottom edges of badge and text (8499b83)
    • Integrating tokens (68c844c)
    • Add shape appearance for badges (2ddcfe4)
    • Update badge images (c1eba1b)
  • BottomAppBar
    • Fix bug with transparent top app bar when in bottom app bar layout (c22eb0d)
    • Fix issue with pre-21 FAB elevation/shadow sometimes appearing (2ea3df9)
  • BottomNavigationView
    • Integrate tokens and add shape appearance support (7bd9724)
  • BottomSheet
    • Fix sheet corners animation (a5ff190)
    • Update bottom sheet documentation (af1fa70)
    • Integrate tokens (86cd9d7)
    • Add method to allow programmatically changing shouldRemoveExpandedCorners behavior (c8a0d47)
    • Update expanded corner removal to check if sheet view is actually at top of screen (1c01e82)
    • Fix for detached from bottom sheet behavior. (9c4b73d)
    • Ignore ACTION_MOVE events in BottomSheetBehavior that weren't preceded by an ACTION_DOWN event. (d8c01c1)
  • Carousel
    • Add orientation helper to clean up CarouselLayoutManager orientation differences (7822ef8)
    • Update docs to include hero variant (ec509cc)
    • Add vertical scrolling capability (6b48d3b)
    • Deprecate set/get mask x percentages in Maskable as they are no longer used anywhere, and is a misleading method due to these methods not actually having any effect on the Carousel as CarouselLayoutManager overrides the values. (29d8742)
    • Ensure that masks are pushed out beyond the parent bounds if they are on the parent bounds (9486de5)
    • Carousel updates and fixes (16c1575)
    • Fix contained mask logic to only update masks when it is still in view, and remove restrictions on mask size with childWidth/2F. The only restriction is that the right of the mask must be greater than the left of the mask. (7d6a977)
    • Fixed multi browse strategy clipping extra small items before being fully collapsed (85b6d50)
    • Add Carousel Hero strategy demo (b57dae5)
    • Add Hero carousel strategy (340cd44)
    • Add option for snapping with multi-browse carousel demo (26c3779)
    • Add CarouselSnapHelper (8938da8)
    • Refactor to reuse logic between different Carousel strategy classes (1c27404)
    • Fix item masking for API 21 (7bc26e5)
    • Updated MultiBrowseCarouselStrategy to find best arrangments using a cost function (0184b5b)
    • Fixed mutli-browse catalog demo crashing due to invalid position slider values. (5bc7a50)
    • Add support for transitions by forcing canvas clipping when detaching from the window. (93ceb7e)
    • Updated MaskableFrameLayout to use Outline path clipping on 33+ only. (43c5077)
    • Updated setForceCompatClipping visibility for testing. (3856af1)
    • Updated MaskableFrameLayout to clip more performantly. (733c9e0)
    • Changed Maskable.add/removeOnMaskChangedListener to Maskable.setOnMaskChangedListener. (359580b)
    • Fixed child index bug causing items to be ordered incorrectly. (9d0732b)
  • Catalog
    • Update side sheet state handling to be more accurate in demos (4442635)
    • Update bottom sheet state handling to be more accurate in demos (386d47b)
    • Update to compileSdkVersion 34 and update catalog to use androidx.activity:activity:1.8.0-alpha05 (2336c23)
    • Fixed catalog errors for some demos. (4c3e1d5)
    • Fixes context menu are not themed on S (33e4f84)
  • Checkbox
    • Fixed checkmark icon not updating color on error correctly in pre 21. (62aa802)
  • Chip

Configuration

📅 Schedule: Branch creation - "before 9am every weekday" in timezone Europe/Madrid, 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@glovo-renovate glovo-renovate bot changed the title [Bump] Update dependency androidx.constraintlayout:constraintlayout to v2.1.4 [Bump] Update all non-major dependencies May 25, 2022
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8cda68d to 94c0fbf Compare May 29, 2022 22:02
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 09b3301 to 2bd37ef Compare June 2, 2022 22:03
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 73a2fc1 to 2d86196 Compare June 12, 2022 22:02
@glovo-renovate glovo-renovate bot changed the title [Bump] Update all non-major dependencies [Bump]: [Bump] Update all non-major dependencies Jun 27, 2022
@pull-request-size pull-request-size bot added size/M and removed size/S labels Jun 29, 2022
@glovo-renovate glovo-renovate bot changed the title [Bump]: [Bump] Update all non-major dependencies [Bump] Update all non-major dependencies Jul 4, 2022
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a996d51 to ce9d5aa Compare July 13, 2022 22:07
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 11e238c to 31ff71f Compare August 3, 2022 22:04
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from cbfbbc1 to 92b3eb9 Compare August 14, 2022 22:07
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 34c3419 to d9a679e Compare August 24, 2022 22:06
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d4c1936 to 3d41912 Compare July 6, 2023 06:26
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 00512ea to f094f50 Compare July 26, 2023 22:25
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 873ac17 to e76f8ed Compare August 23, 2023 22:28
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 453ffc8 to b1f7904 Compare September 6, 2023 22:14
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4c0dacb to 50f8d44 Compare October 2, 2023 00:30
@glovo-renovate glovo-renovate bot changed the title [Bump] Update all non-major dependencies [Bump] Update all non-major dependencies - autoclosed Oct 10, 2023
@glovo-renovate glovo-renovate bot closed this Oct 10, 2023
@glovo-renovate glovo-renovate bot deleted the renovate/all-minor-patch branch October 10, 2023 08:11
@glovo-renovate glovo-renovate bot changed the title [Bump] Update all non-major dependencies - autoclosed [Bump] Update all non-major dependencies Oct 10, 2023
@glovo-renovate glovo-renovate bot reopened this Oct 10, 2023
@glovo-renovate glovo-renovate bot restored the renovate/all-minor-patch branch October 10, 2023 20:15
@glovo-renovate glovo-renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f19d149 to 810a50d Compare November 24, 2023 00:24
@glovo-renovate glovo-renovate bot changed the title [Bump] Update all non-major dependencies [Bump] Update all non-major dependencies - autoclosed Nov 24, 2023
@glovo-renovate glovo-renovate bot closed this Nov 24, 2023
@glovo-renovate glovo-renovate bot deleted the renovate/all-minor-patch branch November 24, 2023 04:21
@glovo-renovate glovo-renovate bot changed the title [Bump] Update all non-major dependencies - autoclosed [Bump] Update all non-major dependencies Nov 24, 2023
@glovo-renovate glovo-renovate bot reopened this Nov 24, 2023
@glovo-renovate glovo-renovate bot restored the renovate/all-minor-patch branch November 24, 2023 06:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
1 participant