Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ dependencies {

debugImplementation(libs.androidx.ui.tooling)

testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
testImplementation("org.junit.jupiter:junit-jupiter:5.14.3")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lifecycleRuntimeKtx = "2.10.0"
activityCompose = "1.13.0"
composeBom = "2024.12.01"
ktor = "3.4.2"
serialization = "1.10.0"
serialization = "1.11.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

kotlinx-serialization-json 1.11.0 release notes breaking changes

💡 Result:

No official release notes or breaking changes found for kotlinx-serialization-json version 1.11.0. The latest stable release of kotlinx.serialization (which includes the json module) is v1.10.0, released on 2026-01-21. Some platform-specific artifacts like kotlinx-serialization-json-io 1.11.0 exist on Maven repositories, but there is no corresponding full library release, changelog entry, or GitHub release tag for 1.11.0 as of 2026-04-13. The CHANGELOG.md and releases page on GitHub confirm 1.10.0 as the current version, with no mention of 1.11.0 or associated breaking changes.

Citations:


Revert to kotlinx-serialization-json 1.10.0—version 1.11.0 does not exist as an official release.

The web search confirms that v1.10.0 (released 2026-01-21) is the latest stable release. No GitHub release tag, changelog entry, or official Maven artifact exists for 1.11.0. While some platform-specific artifacts may reference that version, the full library release does not. The build will fail when resolving this non-existent dependency.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@gradle/libs.versions.toml` at line 9, The libs.versions.toml currently pins
the kotlinx serialization version under the key "serialization" to a
non-existent 1.11.0; update that value to "1.10.0" (the latest official release)
so Gradle can resolve kotlinx-serialization-json, and ensure any usages that
reference the "serialization" version catalog key continue to work (search for
the "serialization" key to locate all consumers).

datastore = "1.2.1"
workManager = "2.11.2"

Expand Down
Loading