deps(deps): update all non-major gradle dependencies #21

Merged
renovate-bot merged 1 commit from renovate/all-non-major-gradle-dependencies into main 2026-03-17 18:01:57 +00:00
Collaborator

This PR contains the following updates:

Package Change Age Confidence
io.insert-koin:koin-test-junit5 (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-test (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-ktor (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-core-coroutines (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-core (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-compose-viewmodel-navigation (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-compose-viewmodel (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-compose (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-android-compat (source) 4.2.0-RC24.2.0 age confidence
io.insert-koin:koin-android (source) 4.2.0-RC24.2.0 age confidence
app.cash.sqldelight 2.3.12.3.2 age confidence
app.cash.sqldelight:runtime 2.3.12.3.2 age confidence
app.cash.sqldelight:androidx-paging3-extensions 2.3.12.3.2 age confidence
app.cash.sqldelight:native-driver 2.3.12.3.2 age confidence
app.cash.sqldelight:sqlite-driver 2.3.12.3.2 age confidence
app.cash.sqldelight:coroutines-extensions 2.3.12.3.2 age confidence
app.cash.sqldelight:android-driver 2.3.12.3.2 age confidence

Release Notes

InsertKoinIO/koin (io.insert-koin:koin-test-junit5)

v4.2.0

Compare Source

Kotlin 2.3.20

New Features

  • Ktor 3.4 DI Bridge — Full integration with Ktor's new DI system (ktor-server-di), bridging Ktor ↔ Koin dependency injection both ways
  • Dagger Bridge (koin-dagger-bridge) — New module to help inject Koin components from Dagger side
  • AndroidX Navigation 3 support — Entry point provider with metadata parameter passing (animations, etc.), generic EntryProvider, and navigation scopes
  • Navigation Scope for Compose Nav 2 — Added scoped navigation support for Compose Navigation 2
  • Lazy Modules — Parallel loading at startup for improved performance, with benchmarks
  • strictOverride option — New definition option to override explicitly
  • koinActivityInject — Helper to retrieve dependencies against Activity scope
  • Koin Compiler Stubs — Added stubs for KoinApplication.modules() functions
  • KoinApplication.withConfiguration() — New configuration support

Performance & Stability

  • Core Resolver V2 — Fixed parameter stack propagation, injected params handling, and child scope/ViewModel scope resolution
  • Scope Resolution & Thread Safety — Performance optimization with safer ScopeFactory protecting all operations from parallel calls
  • ThreadLocal loading optimization — Avoid cost per Scope (#​2306)
  • getAll no longer sorted by default — Instances come as declared; sort on purpose if needed
  • Params stack access optimization

Bug Fixes

  • Fix sharedKoinViewModel with type-safe navigation routes (#​2293)
  • Fix qualified name usage in WASM (#​2312)
  • Fix premature release of scope & context in Compose — don't drop in onForgotten (#​2274)
  • Fix crashing declarations for LocalKoinScope & LocalKoinApplication
  • Fix Compose Koin Context Loader and Entry Points (#​2327)
  • Fix CoreResolution with Child Scopes / ViewModelScope (#​2325)
  • Fix Scope Archetypes Qualifier in plugin support functions
  • Fix qualifier conversion

Breaking Changes

  • minSdk raised to 23 for Android
  • module renamed to lazyModule in some contexts
  • BeanDef constructor change (API signature update)

Dependencies

  • Kotlin 2.3.20
  • Ktor 3.4
  • JetBrains Compose 1.10.2
  • AndroidX Lifecycle 2.10.0
  • AndroidX Navigation 2.9.7 / Nav3 1.0.1
sqldelight/sqldelight (app.cash.sqldelight)

v2.3.2

Compare Source

Added
  • [PostgreSQL Dialect] Improved support for ALTER TABLE ALTER TYPE USING expressions (#​6116 by @​griffio)
  • [PostgreSQL Dialect] Add support for DROP COLUMN IF EXISTS (#​6112 by @​griffio)
  • [Gradle Plugin] Add expandSelectStar flag to switch off Select wildcard expansions (#​5813 by @​griffio)
  • [MySQL Dialect] Add support for Window Functions (#​6086 by @​griffio)
  • [Gradle Plugin] Fix build failure when starting schema version is not 1 and verifyMigrations is true (#​6017 by @​neilgmiller)
  • [Gradle Plugin] Make SqlDelightWorkerTask more configurable, and update default configuration to support developing on Windows (#​5215 by @​MSDarwish2000)
  • [SQLite Dialect] Add support for synthesized columns in FTS5 virtual tables (#​5986 by @​watbe)
  • [PostgreSQL Dialect] Add support for Postgres row level security (#​6087 by @​shellderp)
  • [PostgreSQL Dialect] Extended FOR UPDATE to support OF table, NO KEY UPDATE, NO WAIT (#​6104 by @​shellderp)
  • [PostgreSQL Dialect] Support Postgis Point type and related functions (#​5602 by @​vanniktech)
  • [Runtime] Added SuspendingTransacter.TransactionDispatcher that provides a mechanism for controlling the CoroutineContext of the transaction (#​5967 by @​eygraber)
  • [Gradle Plugin] Full compatibility with Android Gradle Plugin 9.0's new DSL. (#​6140)
  • [PostgreSQL Dialect] Support PostgreSql CREATE TABLE storage parameters (#​6148 by @​griffio)
  • [PostgreSQL Dialect] Fix PostgreSql unique table constraint nullable result column (#​6167 by @​griffio)
Changed
  • [Compiler] Change compiler output type from java.lang.Void to kotlin.Nothing (#​6099 by @​griffio)
  • [Compiler] Allow for underscores in package names. Before underscores have been sanitized which resulted in unexpected behaviours (#​6027 by @​BierDav)
  • [Paging Extension] Switch to AndroidX Paging (#​5910 by @​jeffdgr8)
  • [Android Driver] Increase Android minSdk to 23. (#​6141)
  • [Paging Extension] Upgrade to paging 3.4.1, and removed X64 apple targets. (#​6166)
Fixed
  • [IntelliJ Plugin] Fix IDE freeze caused by blocking file type detection on the EDT during VFS refresh events.
  • [SQLite Dialect] Fix Sqlite 3.38 compilation error when using Json path operators (#​6070 by @​griffio)
  • [SQLite Dialect] Use String type for group_concat function when using custom column type (#​6082 by @​griffio)
  • [Gradle Plugin] Improve performance of VerifyMigrationTask to stop it from hanging on complex schemas (#​6073 by @​Lightwood13)
  • [Intellij Plugin] Fix Plugin initialization exceptions and update deprecated methods (#​6040 by @​griffio)
  • [Gradle Plugin] Fix compatibility with Android Gradle Plugin's built-in Kotlin (#​6139)

Configuration

📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) in timezone Asia/Jakarta, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [io.insert-koin:koin-test-junit5](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-test-junit5/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-test-junit5/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-test](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-test/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-test/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-ktor](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-ktor/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-ktor/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-core-coroutines](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-core-coroutines/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-core-coroutines/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-core](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-core/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-core/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-compose-viewmodel-navigation](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-compose-viewmodel-navigation/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-compose-viewmodel-navigation/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-compose-viewmodel](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-compose-viewmodel/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-compose-viewmodel/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-compose](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-compose/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-compose/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-android-compat](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-android-compat/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-android-compat/4.2.0-RC2/4.2.0?slim=true) | | [io.insert-koin:koin-android](https://insert-koin.io/) ([source](https://github.com/InsertKoinIO/koin)) | `4.2.0-RC2` → `4.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.insert-koin:koin-android/4.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.insert-koin:koin-android/4.2.0-RC2/4.2.0?slim=true) | | [app.cash.sqldelight](https://github.com/sqldelight/sqldelight) | `2.3.1` → `2.3.2` | ![age](https://developer.mend.io/api/mc/badges/age/maven/app.cash.sqldelight:app.cash.sqldelight.gradle.plugin/2.3.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/app.cash.sqldelight:app.cash.sqldelight.gradle.plugin/2.3.1/2.3.2?slim=true) | | [app.cash.sqldelight:runtime](https://github.com/sqldelight/sqldelight) | `2.3.1` → `2.3.2` | ![age](https://developer.mend.io/api/mc/badges/age/maven/app.cash.sqldelight:runtime/2.3.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/app.cash.sqldelight:runtime/2.3.1/2.3.2?slim=true) | | [app.cash.sqldelight:androidx-paging3-extensions](https://github.com/sqldelight/sqldelight) | `2.3.1` → `2.3.2` | ![age](https://developer.mend.io/api/mc/badges/age/maven/app.cash.sqldelight:androidx-paging3-extensions/2.3.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/app.cash.sqldelight:androidx-paging3-extensions/2.3.1/2.3.2?slim=true) | | [app.cash.sqldelight:native-driver](https://github.com/sqldelight/sqldelight) | `2.3.1` → `2.3.2` | ![age](https://developer.mend.io/api/mc/badges/age/maven/app.cash.sqldelight:native-driver/2.3.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/app.cash.sqldelight:native-driver/2.3.1/2.3.2?slim=true) | | [app.cash.sqldelight:sqlite-driver](https://github.com/sqldelight/sqldelight) | `2.3.1` → `2.3.2` | ![age](https://developer.mend.io/api/mc/badges/age/maven/app.cash.sqldelight:sqlite-driver/2.3.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/app.cash.sqldelight:sqlite-driver/2.3.1/2.3.2?slim=true) | | [app.cash.sqldelight:coroutines-extensions](https://github.com/sqldelight/sqldelight) | `2.3.1` → `2.3.2` | ![age](https://developer.mend.io/api/mc/badges/age/maven/app.cash.sqldelight:coroutines-extensions/2.3.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/app.cash.sqldelight:coroutines-extensions/2.3.1/2.3.2?slim=true) | | [app.cash.sqldelight:android-driver](https://github.com/sqldelight/sqldelight) | `2.3.1` → `2.3.2` | ![age](https://developer.mend.io/api/mc/badges/age/maven/app.cash.sqldelight:android-driver/2.3.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/app.cash.sqldelight:android-driver/2.3.1/2.3.2?slim=true) | --- ### Release Notes <details> <summary>InsertKoinIO/koin (io.insert-koin:koin-test-junit5)</summary> ### [`v4.2.0`](https://github.com/InsertKoinIO/koin/releases/tag/4.2.0) [Compare Source](https://github.com/InsertKoinIO/koin/compare/4.2.0-RC2...4.2.0) Kotlin 2.3.20 New Features - Ktor 3.4 DI Bridge — Full integration with Ktor's new DI system (ktor-server-di), bridging Ktor ↔ Koin dependency injection both ways - Dagger Bridge (koin-dagger-bridge) — New module to help inject Koin components from Dagger side - AndroidX Navigation 3 support — Entry point provider with metadata parameter passing (animations, etc.), generic EntryProvider, and navigation scopes - Navigation Scope for Compose Nav 2 — Added scoped navigation support for Compose Navigation 2 - Lazy Modules — Parallel loading at startup for improved performance, with benchmarks - strictOverride option — New definition option to override explicitly - koinActivityInject — Helper to retrieve dependencies against Activity scope - Koin Compiler Stubs — Added stubs for KoinApplication.modules() functions - KoinApplication.withConfiguration<T>() — New configuration support Performance & Stability - Core Resolver V2 — Fixed parameter stack propagation, injected params handling, and child scope/ViewModel scope resolution - Scope Resolution & Thread Safety — Performance optimization with safer ScopeFactory protecting all operations from parallel calls - ThreadLocal loading optimization — Avoid cost per Scope ([#&#8203;2306](https://github.com/InsertKoinIO/koin/issues/2306)) - getAll no longer sorted by default — Instances come as declared; sort on purpose if needed - Params stack access optimization Bug Fixes - Fix sharedKoinViewModel with type-safe navigation routes ([#&#8203;2293](https://github.com/InsertKoinIO/koin/issues/2293)) - Fix qualified name usage in WASM ([#&#8203;2312](https://github.com/InsertKoinIO/koin/issues/2312)) - Fix premature release of scope & context in Compose — don't drop in onForgotten ([#&#8203;2274](https://github.com/InsertKoinIO/koin/issues/2274)) - Fix crashing declarations for LocalKoinScope & LocalKoinApplication - Fix Compose Koin Context Loader and Entry Points ([#&#8203;2327](https://github.com/InsertKoinIO/koin/issues/2327)) - Fix CoreResolution with Child Scopes / ViewModelScope ([#&#8203;2325](https://github.com/InsertKoinIO/koin/issues/2325)) - Fix Scope Archetypes Qualifier in plugin support functions - Fix qualifier conversion Breaking Changes - minSdk raised to 23 for Android - module renamed to lazyModule in some contexts - BeanDef constructor change (API signature update) Dependencies - Kotlin 2.3.20 - Ktor 3.4 - JetBrains Compose 1.10.2 - AndroidX Lifecycle 2.10.0 - AndroidX Navigation 2.9.7 / Nav3 1.0.1 </details> <details> <summary>sqldelight/sqldelight (app.cash.sqldelight)</summary> ### [`v2.3.2`](https://github.com/sqldelight/sqldelight/blob/HEAD/CHANGELOG.md#232---2026-03-16) [Compare Source](https://github.com/sqldelight/sqldelight/compare/2.3.1...2.3.2) [2.3.2]: https://github.com/sqldelight/sqldelight/releases/tag/2.3.2 ##### Added - \[PostgreSQL Dialect] Improved support for ALTER TABLE ALTER TYPE USING expressions ([#&#8203;6116](https://github.com/sqldelight/sqldelight/issues/6116) by [@&#8203;griffio](https://github.com/griffio)) - \[PostgreSQL Dialect] Add support for DROP COLUMN IF EXISTS ([#&#8203;6112](https://github.com/sqldelight/sqldelight/issues/6112) by [@&#8203;griffio](https://github.com/griffio)) - \[Gradle Plugin] Add expandSelectStar flag to switch off Select wildcard expansions ([#&#8203;5813](https://github.com/sqldelight/sqldelight/issues/5813) by [@&#8203;griffio](https://github.com/griffio)) - \[MySQL Dialect] Add support for Window Functions ([#&#8203;6086](https://github.com/sqldelight/sqldelight/issues/6086) by [@&#8203;griffio](https://github.com/griffio)) - \[Gradle Plugin] Fix build failure when starting schema version is not 1 and verifyMigrations is true ([#&#8203;6017](https://github.com/sqldelight/sqldelight/issues/6017) by [@&#8203;neilgmiller](https://github.com/neilgmiller)) - \[Gradle Plugin] Make `SqlDelightWorkerTask` more configurable, and update default configuration to support developing on Windows ([#&#8203;5215](https://github.com/sqldelight/sqldelight/issues/5215) by [@&#8203;MSDarwish2000](https://github.com/MSDarwish2000)) - \[SQLite Dialect] Add support for synthesized columns in FTS5 virtual tables ([#&#8203;5986](https://github.com/sqldelight/sqldelight/issues/5986) by [@&#8203;watbe](https://github.com/watbe)) - \[PostgreSQL Dialect] Add support for Postgres row level security ([#&#8203;6087](https://github.com/sqldelight/sqldelight/issues/6087) by [@&#8203;shellderp](https://github.com/shellderp)) - \[PostgreSQL Dialect] Extended FOR UPDATE to support OF table, NO KEY UPDATE, NO WAIT ([#&#8203;6104](https://github.com/sqldelight/sqldelight/issues/6104) by [@&#8203;shellderp](https://github.com/shellderp)) - \[PostgreSQL Dialect] Support Postgis Point type and related functions ([#&#8203;5602](https://github.com/sqldelight/sqldelight/issues/5602) by [@&#8203;vanniktech](https://github.com/vanniktech)) - \[Runtime] Added `SuspendingTransacter.TransactionDispatcher` that provides a mechanism for controlling the `CoroutineContext` of the transaction ([#&#8203;5967](https://github.com/sqldelight/sqldelight/issues/5967) by [@&#8203;eygraber](https://github.com/eygraber)) - \[Gradle Plugin] Full compatibility with Android Gradle Plugin 9.0's new DSL. ([#&#8203;6140](https://github.com/sqldelight/sqldelight/issues/6140)) - \[PostgreSQL Dialect] Support PostgreSql CREATE TABLE storage parameters ([#&#8203;6148](https://github.com/sqldelight/sqldelight/issues/6148) by [@&#8203;griffio](https://github.com/griffio)) - \[PostgreSQL Dialect] Fix PostgreSql unique table constraint nullable result column ([#&#8203;6167](https://github.com/sqldelight/sqldelight/issues/6167) by [@&#8203;griffio](https://github.com/griffio)) ##### Changed - \[Compiler] Change compiler output type from java.lang.Void to kotlin.Nothing ([#&#8203;6099](https://github.com/sqldelight/sqldelight/issues/6099) by [@&#8203;griffio](https://github.com/griffio)) - \[Compiler] Allow for underscores in package names. Before underscores have been sanitized which resulted in unexpected behaviours ([#&#8203;6027](https://github.com/sqldelight/sqldelight/issues/6027) by [@&#8203;BierDav](https://github.com/BierDav)) - \[Paging Extension] Switch to AndroidX Paging ([#&#8203;5910](https://github.com/sqldelight/sqldelight/issues/5910) by [@&#8203;jeffdgr8](https://github.com/jeffdgr8)) - \[Android Driver] Increase Android minSdk to 23. ([#&#8203;6141](https://github.com/sqldelight/sqldelight/issues/6141)) - \[Paging Extension] Upgrade to paging 3.4.1, and removed X64 apple targets. ([#&#8203;6166](https://github.com/sqldelight/sqldelight/issues/6166)) ##### Fixed - \[IntelliJ Plugin] Fix IDE freeze caused by blocking file type detection on the EDT during VFS refresh events. - \[SQLite Dialect] Fix Sqlite 3.38 compilation error when using Json path operators ([#&#8203;6070](https://github.com/sqldelight/sqldelight/issues/6070) by [@&#8203;griffio](https://github.com/griffio)) - \[SQLite Dialect] Use String type for group\_concat function when using custom column type ([#&#8203;6082](https://github.com/sqldelight/sqldelight/issues/6082) by [@&#8203;griffio](https://github.com/griffio)) - \[Gradle Plugin] Improve performance of `VerifyMigrationTask` to stop it from hanging on complex schemas ([#&#8203;6073](https://github.com/sqldelight/sqldelight/issues/6073) by [@&#8203;Lightwood13](https://github.com/Lightwood13)) - \[Intellij Plugin] Fix Plugin initialization exceptions and update deprecated methods ([#&#8203;6040](https://github.com/sqldelight/sqldelight/issues/6040) by [@&#8203;griffio](https://github.com/griffio)) - \[Gradle Plugin] Fix compatibility with Android Gradle Plugin's built-in Kotlin ([#&#8203;6139](https://github.com/sqldelight/sqldelight/issues/6139)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) in timezone Asia/Jakarta, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yLjgiLCJ1cGRhdGVkSW5WZXIiOiI0My4yLjgiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
deps(deps): update all non-major gradle dependencies
All checks were successful
Main CI / build (pull_request) Successful in 2m2s
Security / Trivy Security Scan (pull_request) Successful in 10s
Security / MobSF Scan (pull_request) Successful in 15s
19a9ee5ea7
renovate-bot scheduled this pull request to auto merge when all checks succeed 2026-03-17 18:01:40 +00:00
renovate-bot deleted branch renovate/all-non-major-gradle-dependencies 2026-03-17 18:01:57 +00:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
lscythe/gradle-version-catalog!21
No description provided.