Skip to content

Commit 4c0ac93

Browse files
authored
chore: remove dead protocol remnant (schema v11), dep bumps, local gate (#116)
* build: bump Spotless to 7.0.4 (configuration-cache clean) * dx: add scripts/verify.sh local gate + sample pre-push hook * deps: bump kotlinx-coroutines 1.10.2 and Robolectric 4.16; raise @config sdk pins * chore(db): remove vestigial neko plugin protocol remnant (schema v11) * deps: bump kotlinx-coroutines to 1.11.0 (lint NewerVersionAvailable is an error) * deps: bump Robolectric to 4.16.1 (lint NewerVersionAvailable) * style(ui): strip trailing whitespace surfaced by Spotless 7.0.4 bump * dx: mark verify.sh and pre-push hook executable (address review) * chore(db): commit generated Room schema v11 (address review)
1 parent b677423 commit 4c0ac93

15 files changed

Lines changed: 437 additions & 142 deletions

File tree

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dependencies {
5757

5858
implementation(fileTree("libs"))
5959

60-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1")
60+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0")
6161
implementation("androidx.core:core-ktx:1.13.1")
6262
implementation("androidx.recyclerview:recyclerview:1.3.2")
6363
implementation("androidx.activity:activity-ktx:1.10.1")
@@ -108,10 +108,10 @@ dependencies {
108108

109109
// Unit tests (pure-JVM, run via :app:testOssDebugUnitTest — no device/libcore needed).
110110
testImplementation("junit:junit:4.13.2")
111-
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1")
111+
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.11.0")
112112
// Robolectric is available for tests that must touch Android framework classes;
113113
// prefer extracting pure functions over using it (see Plan 007).
114-
testImplementation("org.robolectric:robolectric:4.13")
114+
testImplementation("org.robolectric:robolectric:4.16.1")
115115

116116
// Instrumented tests (androidTest) — Room migration verification on a real SQLite.
117117
// Runs on a device/emulator (see .depot/workflows/android-instrumented.yml), not the JVM.

0 commit comments

Comments
 (0)