Skip to content

Bump Compose multiplatform to 1.11.0-alpha03 along with other libraries#1051

Merged
tunjid merged 1 commit intomainfrom
tj/cmp-1.11.0-alpha03
Feb 28, 2026
Merged

Bump Compose multiplatform to 1.11.0-alpha03 along with other libraries#1051
tunjid merged 1 commit intomainfrom
tj/cmp-1.11.0-alpha03

Conversation

@tunjid
Copy link
Owner

@tunjid tunjid commented Feb 28, 2026

Also used snapshot versions of mutator and treenav as the compose version update in them are not in a full release yet

@gemini-code-assist
Copy link

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request primarily focuses on updating the project's dependencies to newer versions, most notably bumping Compose Multiplatform to its latest alpha. It also refines the build configuration by removing the "iosX64" target and integrating snapshot versions for certain tunjid libraries, ensuring the project stays current with its core frameworks and internal dependencies.

Highlights

  • Compose Multiplatform Update: The Compose Multiplatform version has been bumped to "1.11.0-alpha03", ensuring the project uses the latest alpha release.
  • Dependency Version Bumps: Numerous other libraries, including Coil, Connectivity, Firebase BOM, Kotlin, KSP, Lifecycle Multiplatform, and Vinceglb Filekit, have been updated to their latest stable or alpha versions.
  • iOS Target Refinement: The "iosX64" target has been removed from Kotlin Multiplatform configurations across the project, streamlining iOS build targets.
  • Snapshot Dependencies: "tunjid-state-holder" and "tunjid-tiler" dependencies now utilize snapshot versions ("1.2.1-SNAPSHOT" and "1.2.2-SNAPSHOT" respectively) to incorporate recent changes not yet in full releases.
  • Navigation Library Updates: The "navigation-event" dependency has been removed in favor of "navigation-event-compose", and "navigation3-runtime" has been replaced with "navigation3-multiplatform-ui" to align with updated navigation patterns.
  • Maven Snapshot Repository: A new Maven snapshot repository has been added to "settings.gradle.kts" to resolve snapshot versions for "com.tunjid.mutator" and "com.tunjid.tiler" groups.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • build-logic/convention/src/main/kotlin/ext/KotlinMultiplatformExt.kt
    • Removed the "iosX64()" target from the Kotlin Multiplatform configuration.
  • build-logic/convention/src/main/kotlin/ext/UiModuleExt.kt
    • Removed the "libs.navigation.event" dependency.
  • composeApp/build.gradle.kts
    • Removed the "iosX64()" target from the Kotlin configuration.
  • data/database/build.gradle.kts
    • Removed the "kspIosX64" compiler dependency.
  • gradle/libs.versions.toml
    • Updated "coil" from "3.3.0" to "3.4.0".
    • Updated "connectivity" from "2.4.0" to "2.4.1".
    • Updated "compose-multiplatform" from "1.10.0" to "1.11.0-alpha03".
    • Updated "firebase-bom-version" from "34.8.0" to "34.10.0".
    • Updated "kotlin" from "2.3.0" to "2.3.10".
    • Updated "ksp" from "2.3.4" to "2.3.6".
    • Updated "lifecycle-multiplatform" from "2.10.0-alpha07" to "2.10.0-alpha08".
    • Updated "navigationEventCompose" from "1.0.0" to "1.0.1".
    • Removed "navigationEvent" version definition.
    • Removed "navigation3" version definition.
    • Added "navigation3Multiplatform" with version "1.1.0-alpha03".
    • Updated "tunjid-state-holder" from "1.2.0" to "1.2.1-SNAPSHOT".
    • Updated "tunjid-tiler" from "1.2.1" to "1.2.2-SNAPSHOT".
    • Updated "tunjid-tree-nav" from "0.0.50" to "0.0.51".
    • Updated "tunjid-composables" from "0.0.26" to "0.0.27".
    • Updated "vinceglb-filekit" from "0.12.0" to "0.13.0".
    • Removed "navigation3-runtime" library definition.
    • Removed "navigation-event" library definition.
    • Added "navigation3-multiplatform-ui" library definition.
  • scaffold/build.gradle.kts
    • Removed "libs.navigation.event" dependency.
    • Replaced "libs.navigation3.runtime" with "libs.navigation3.multiplatform.ui".
  • settings.gradle.kts
    • Added "import java.net.URI".
    • Added a new Maven repository for "Central Portal Snapshots" to resolve "com.tunjid.mutator" and "com.tunjid.tiler" group dependencies.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request updates several dependencies, most notably Compose Multiplatform to 1.11.0-alpha03. The changes also include removing the deprecated iosX64 target and updating navigation-related libraries. A key change is the introduction of SNAPSHOT versions for tunjid-mutator and tunjid-tiler to maintain compatibility. While this is sometimes necessary, it introduces a risk to build stability. I've added a comment with a recommendation on how to manage this risk. The rest of the changes look consistent and correct.

@tunjid tunjid merged commit 682a682 into main Feb 28, 2026
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant