Skip to content

Bump com.patrykandpatrick.vico:compose-m3 from 3.2.3 to 3.3.0 - #23244

Closed
dependabot[bot] wants to merge 1 commit into
trunkfrom
dependabot/gradle/com.patrykandpatrick.vico-compose-m3-3.3.0
Closed

Bump com.patrykandpatrick.vico:compose-m3 from 3.2.3 to 3.3.0#23244
dependabot[bot] wants to merge 1 commit into
trunkfrom
dependabot/gradle/com.patrykandpatrick.vico-compose-m3-3.3.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 20, 2026

Copy link
Copy Markdown
Contributor

Bumps com.patrykandpatrick.vico:compose-m3 from 3.2.3 to 3.3.0.

Release notes

Sourced from com.patrykandpatrick.vico:compose-m3's releases.

v3.3.0

[!WARNING] Android is now Compose-first. Moving forward, like the official view-based Jetpack libraries, Vico’s views module will receive only critical fixes. Its versioning is being decoupled, and the following applies only to compose. The views guide, API reference, and sample charts remain available.

If your project will stay view-based for the foreseeable future and you need the latest Vico features, you can use the compose module with ComposeView.

Overview

Changes

  • Added content-area chart sizing. CartesianChartHost and PieChartHost gain a chartAreaHeight parameter, which sets the default height of the coordinate system (for Cartesian charts) or the default pie diameter (for pie charts). The legend, the marker, the axis margins, and other components now add to this height rather than being fitted inside a capped total height. The defaults are 192 dp for Cartesian charts and 232 dp for pie charts. Modifier.height and similar still constrain the component bounds.
  • Deprecated MeasuringContext.canvasSize in favor of MeasuringContext.canvasWidth. With chartAreaHeight, the canvas height isn’t necessarily known during measuring. When drawing, read the full size from DrawingContext.canvasSize, narrowing your receiver from MeasuringContext to DrawingContext where needed. See the deprecation messages for more.
  • Deprecated BaseAxis.Size.Fraction. Its main use case—keeping the chart area’s height constant as the x-axis height changes—is now served by chartAreaHeight. Relatedly, HorizontalAxis’s automatic-height cap is now a fixed 64 dp instead of a fraction of the canvas height.
  • Introduced per-type CartesianLayerDrawingModelInterpolator factories: line, column, and candlestick. The old default factory and the CartesianLayerDrawingModel.transform and Entry.transform hooks are deprecated; layer-specific interpolators now own interpolation policy. If you customized interpolation, consult the deprecation messages.
  • Added a reveal animation for LineCartesianLayer. Passing CartesianLayerDrawingModelInterpolator.line(sweep = true) for drawingModelInterpolator animates a line’s first appearance as a clip sweeping in from the start.
  • Added separate initial-animation settings. CartesianChartHost gains an initialAnimationSpec parameter, which defaults to animationSpec and can be set to null to skip the initial reveal animation. The animateIn parameter is deprecated; set initialAnimationSpec to null instead.
  • Added configurable axis title positions. HorizontalAxis and VerticalAxis gain a titlePosition property, and BaseAxis.TitlePosition defines the available values (Side and End). Their factory and copy functions also gain a titlePosition parameter.
  • Added the option to anchor extreme HorizontalAxis labels to the plot-area edges without shrinking the plot area, preventing clipping. HorizontalAxis.ItemPlacer.aligned gains a shiftExtremeLabels parameter, and HorizontalAxis.ItemPlacer gains getShiftExtremeLabels.
  • Added snap scrolling. rememberVicoScrollState and VicoScrollState gain xSnapStep and snapAnimationSpec; when xSnapStep is set, the scroll position snaps to multiples of the given x-step after a fling.
  • Added VicoZoomState.animateZoom for animating zoom programmatically.
  • Added visible-x-range preservation across data updates. When a chart’s x-range shifts (its minX or xStep changes), VicoScrollState recomputes the scroll value so the same x-coordinates stay on screen, keeping prepended history from jumping the viewport to the start edge. The correction runs during measurement, so the adjusted value is used by the frame that draws the new data, and it works in both LTR and RTL layouts.
  • Fixed a VicoScrollState scroll-position bug in which a zoom’s stale scroll compensation was applied when a pinch transitioned straight into a pan or fling, rolling the viewport back to its zoom-time position.
  • Prevented an UpdateReceiver leak when a chart’s identity changes. Registration, transformation, and unregistration with CartesianChartModelProducer now use the effect-stable chart ID rather than a value that mutates on recomposition.
  • Fixed PieChart slice spacing, which now yields a constant-width gap for both donuts and holeless pies instead of widening toward the outer edge or collapsing at the center.
  • Fixed the clipping of outside pie labels. PieChart now reserves vertical space for SliceLabel.Outside labels instead of shrinking the pie to fit them inside the chart bounds.
  • Deprecated pieSeries in favor of pieModel, aligning the pie API with the candlestick, column, and line transaction functions.
  • Improved ShapeComponent drawing performance. Resolved Outlines are now drawn directly instead of being replayed into a reusable Path, so rectangles and rounded rectangles skip path construction entirely.
  • Relocated CartesianLayerDrawingModel and CartesianLayerDrawingModelInterpolator from com.patrykandpatrick.vico.compose.common.data to com.patrykandpatrick.vico.compose.cartesian.data. Deprecated type aliases remain at the old locations.
Commits
  • 4d6c4c0 Update version name
  • 3a36ca4 chore(deps): update dependency org.jetbrains.compose to v1.12.0-rc01 (#1575)
  • 8cde064 fix(deps): update dependency androidx.compose:compose-bom to v2026.08.00 (#1576)
  • 473c1de fix(deps): update dependency androidx.compose.ui:ui-text-android to v1.12.0 (...
  • a2028ea Update version name
  • 466fb90 feat(sample): refine basic donut chart
  • 097dad9 fix(compose): reserve space for outside pie labels
  • c0f87a8 chore(deps): update gradle to v9.7.0 (#1571)
  • 8cfcd34 chore: enable parallel Gradle tooling
  • 1f2b25b chore(deps): update dependency org.jetbrains.compose to v1.12.0-beta03 (#1568)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [com.patrykandpatrick.vico:compose-m3](https://github.com/patrykandpatrick/vico) from 3.2.3 to 3.3.0.
- [Release notes](https://github.com/patrykandpatrick/vico/releases)
- [Commits](patrykandpatrick/vico@v3.2.3...v3.3.0)

---
updated-dependencies:
- dependency-name: com.patrykandpatrick.vico:compose-m3
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the bot: dependencies update Dependabot dependency update label Aug 20, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 20, 2026 08:11
@dependabot
dependabot Bot requested review from adalpari and removed request for a team August 20, 2026 08:11
@dependabot dependabot Bot added the bot: dependencies update Dependabot dependency update label Aug 20, 2026
@dangermattic

Copy link
Copy Markdown
Collaborator
1 Warning
⚠️ PR is not assigned to a milestone.

Generated by 🚫 Danger

@wpmobilebot

Copy link
Copy Markdown
Contributor

Project dependencies changes

list
! Upgraded Dependencies
com.patrykandpatrick.vico:compose:3.3.0, (changed from 3.2.3)
com.patrykandpatrick.vico:compose-android:3.3.0, (changed from 3.2.3)
com.patrykandpatrick.vico:compose-m3:3.3.0, (changed from 3.2.3)
com.patrykandpatrick.vico:compose-m3-android:3.3.0, (changed from 3.2.3)
org.jetbrains.compose.animation:animation:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.animation:animation-core:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.foundation:foundation:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.foundation:foundation-layout:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.runtime:runtime:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.runtime:runtime-saveable:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.ui:ui:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.ui:ui-geometry:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.ui:ui-graphics:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.ui:ui-text:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.ui:ui-unit:1.11.1, (changed from 1.11.0)
org.jetbrains.compose.ui:ui-util:1.11.1, (changed from 1.11.0)
tree
 +--- androidx.navigation:navigation-compose:2.9.8
 |    \--- androidx.navigation:navigation-compose-android:2.9.8
 |         \--- androidx.activity:activity-compose:1.8.0 -> 1.10.1
 |              +--- androidx.compose.runtime:runtime:1.7.0 -> 1.11.4
 |              |    \--- androidx.compose.runtime:runtime-android:1.11.4
-|              |         \--- org.jetbrains.compose.runtime:runtime:1.9.0 -> 1.11.0 (c)
+|              |         \--- org.jetbrains.compose.runtime:runtime:1.9.0 -> 1.11.1 (c)
 |              \--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.11.4
 |                   \--- androidx.compose.runtime:runtime-saveable-android:1.11.4
-|                        \--- org.jetbrains.compose.runtime:runtime-saveable:1.9.2 -> 1.11.0 (c)
+|                        \--- org.jetbrains.compose.runtime:runtime-saveable:1.9.2 -> 1.11.1 (c)
 +--- com.gravatar:gravatar-quickeditor:2.5.0
 |    \--- com.composables:core:1.30.0
 |         \--- com.composables:core-android:1.30.0
-|              \--- org.jetbrains.compose.foundation:foundation:1.7.0 -> 1.11.0
-|                   +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   +--- androidx.compose.foundation:foundation:1.11.1 -> 1.11.4 (*)
-|                   +--- org.jetbrains.compose.animation:animation:1.11.0
-|                   |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   |    +--- androidx.compose.animation:animation:1.11.1 -> 1.11.4 (*)
-|                   |    +--- org.jetbrains.compose.animation:animation-core:1.11.0
-|                   |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   |    |    +--- androidx.compose.animation:animation-core:1.11.1 -> 1.11.4 (*)
-|                   |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0
-|                   |    |    |    +--- androidx.compose.runtime:runtime:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    +--- org.jetbrains.compose.ui:ui:1.11.0
-|                   |    |    |    +--- androidx.annotation:annotation:1.9.1 -> 1.10.0 (*)
-|                   |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   |    |    |    +--- androidx.compose.runtime:runtime-retain:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    +--- androidx.compose.ui:ui:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    +--- androidx.savedstate:savedstate-compose:1.4.0 (*)
-|                   |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.6
-|                   |    |    |    |    +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.4 -> 2.10.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.6
-|                   |    |    |    |    |    \--- androidx.lifecycle:lifecycle-common:2.9.4 -> 2.10.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.6
-|                   |    |    |    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.9.4 -> 2.10.0 (*)
-|                   |    |    |    |    |    \--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.6 (*)
-|                   |    |    |    |    \--- org.jetbrains.compose.runtime:runtime:1.9.3 -> 1.11.0 (*)
-|                   |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.6
-|                   |    |    |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.9.4 -> 2.10.0 (*)
-|                   |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.6
-|                   |    |    |    |    +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.4 -> 2.10.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.6 (*)
-|                   |    |    |    |    \--- org.jetbrains.androidx.savedstate:savedstate:1.3.6
-|                   |    |    |    |         \--- androidx.savedstate:savedstate:1.3.3 -> 1.4.0 (*)
-|                   |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    |    |    +--- org.jetbrains.compose.runtime:runtime-saveable:1.11.0
-|                   |    |    |    |    +--- androidx.compose.runtime:runtime-saveable:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.6 (*)
-|                   |    |    |    |    +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.6
-|                   |    |    |    |    |    +--- androidx.savedstate:savedstate-compose:1.3.3 -> 1.4.0 (*)
-|                   |    |    |    |    |    +--- org.jetbrains.androidx.savedstate:savedstate:1.3.6 (*)
-|                   |    |    |    |    |    \--- org.jetbrains.compose.runtime:runtime:1.9.3 -> 1.11.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    |    +--- org.jetbrains.compose.ui:ui-geometry:1.11.0
-|                   |    |    |    |    +--- androidx.compose.ui:ui-geometry:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.0
-|                   |    |    |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   |    |    |    |    |    +--- androidx.compose.ui:ui-util:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    |    +--- org.jetbrains.compose.ui:ui-graphics:1.11.0
-|                   |    |    |    |    +--- androidx.annotation:annotation:1.9.1 -> 1.10.0 (*)
-|                   |    |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   |    |    |    |    +--- androidx.compose.ui:ui-graphics:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.0
-|                   |    |    |    |    |    +--- androidx.annotation:annotation:1.9.1 -> 1.10.0 (*)
-|                   |    |    |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   |    |    |    |    |    +--- androidx.compose.ui:ui-unit:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    |    |    |    |    +--- org.jetbrains.compose.ui:ui-geometry:1.11.0 (*)
-|                   |    |    |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.0 (*)
-|                   |    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.0 (*)
-|                   |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    |    +--- org.jetbrains.compose.ui:ui-text:1.11.0
-|                   |    |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   |    |    |    |    +--- androidx.compose.ui:ui-text:1.11.1 -> 1.11.4 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime-saveable:1.11.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-graphics:1.11.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.0 (*)
-|                   |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|                   |    |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.0 (*)
-|                   |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.0 (*)
-|                   |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|                   |    |    +--- org.jetbrains.compose.ui:ui-graphics:1.11.0 (*)
-|                   |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.0 (*)
-|                   |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.0 (*)
-|                   |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|                   |    +--- org.jetbrains.compose.foundation:foundation-layout:1.11.0
-|                   |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-|                   |    |    +--- androidx.compose.foundation:foundation-layout:1.11.1 -> 1.11.4 (*)
-|                   |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    |    +--- org.jetbrains.compose.ui:ui:1.11.0 (*)
-|                   |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.0 (*)
-|                   |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.0 (*)
-|                   |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   |    +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   |    +--- org.jetbrains.compose.ui:ui:1.11.0 (*)
-|                   |    +--- org.jetbrains.compose.ui:ui-geometry:1.11.0 (*)
-|                   |    +--- org.jetbrains.compose.ui:ui-graphics:1.11.0 (*)
-|                   |    +--- org.jetbrains.compose.ui:ui-util:1.11.0 (*)
-|                   |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-|                   +--- org.jetbrains.compose.foundation:foundation-layout:1.11.0 (*)
-|                   +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-|                   +--- org.jetbrains.compose.ui:ui:1.11.0 (*)
-|                   +--- org.jetbrains.compose.ui:ui-text:1.11.0 (*)
-|                   +--- org.jetbrains.compose.ui:ui-util:1.11.0 (*)
-|                   \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|              \--- org.jetbrains.compose.foundation:foundation:1.7.0 -> 1.11.1
+|                   +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   +--- androidx.compose.foundation:foundation:1.11.2 -> 1.11.4 (*)
+|                   +--- org.jetbrains.compose.animation:animation:1.11.1
+|                   |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   |    +--- androidx.compose.animation:animation:1.11.2 -> 1.11.4 (*)
+|                   |    +--- org.jetbrains.compose.animation:animation-core:1.11.1
+|                   |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   |    |    +--- androidx.compose.animation:animation-core:1.11.2 -> 1.11.4 (*)
+|                   |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1
+|                   |    |    |    +--- androidx.compose.runtime:runtime:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    +--- org.jetbrains.compose.ui:ui:1.11.1
+|                   |    |    |    +--- androidx.annotation:annotation:1.9.1 -> 1.10.0 (*)
+|                   |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   |    |    |    +--- androidx.compose.runtime:runtime-retain:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    +--- androidx.compose.ui:ui:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    +--- androidx.savedstate:savedstate-compose:1.4.0 (*)
+|                   |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.6
+|                   |    |    |    |    +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.4 -> 2.10.0 (*)
+|                   |    |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.6
+|                   |    |    |    |    |    \--- androidx.lifecycle:lifecycle-common:2.9.4 -> 2.10.0 (*)
+|                   |    |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.6
+|                   |    |    |    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.9.4 -> 2.10.0 (*)
+|                   |    |    |    |    |    \--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.6 (*)
+|                   |    |    |    |    \--- org.jetbrains.compose.runtime:runtime:1.9.3 -> 1.11.1 (*)
+|                   |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.6
+|                   |    |    |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.9.4 -> 2.10.0 (*)
+|                   |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.6
+|                   |    |    |    |    +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.4 -> 2.10.0 (*)
+|                   |    |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.6 (*)
+|                   |    |    |    |    \--- org.jetbrains.androidx.savedstate:savedstate:1.3.6
+|                   |    |    |    |         \--- androidx.savedstate:savedstate:1.3.3 -> 1.4.0 (*)
+|                   |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    |    |    +--- org.jetbrains.compose.runtime:runtime-saveable:1.11.1
+|                   |    |    |    |    +--- androidx.compose.runtime:runtime-saveable:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    |    +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.6 (*)
+|                   |    |    |    |    +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.6
+|                   |    |    |    |    |    +--- androidx.savedstate:savedstate-compose:1.3.3 -> 1.4.0 (*)
+|                   |    |    |    |    |    +--- org.jetbrains.androidx.savedstate:savedstate:1.3.6 (*)
+|                   |    |    |    |    |    \--- org.jetbrains.compose.runtime:runtime:1.9.3 -> 1.11.1 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    |    +--- org.jetbrains.compose.ui:ui-geometry:1.11.1
+|                   |    |    |    |    +--- androidx.compose.ui:ui-geometry:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.1
+|                   |    |    |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   |    |    |    |    |    +--- androidx.compose.ui:ui-util:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    |    +--- org.jetbrains.compose.ui:ui-graphics:1.11.1
+|                   |    |    |    |    +--- androidx.annotation:annotation:1.9.1 -> 1.10.0 (*)
+|                   |    |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   |    |    |    |    +--- androidx.compose.ui:ui-graphics:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.1
+|                   |    |    |    |    |    +--- androidx.annotation:annotation:1.9.1 -> 1.10.0 (*)
+|                   |    |    |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   |    |    |    |    |    +--- androidx.compose.ui:ui-unit:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    |    |    |    |    +--- org.jetbrains.compose.ui:ui-geometry:1.11.1 (*)
+|                   |    |    |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.1 (*)
+|                   |    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.1 (*)
+|                   |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    |    +--- org.jetbrains.compose.ui:ui-text:1.11.1
+|                   |    |    |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   |    |    |    |    +--- androidx.compose.ui:ui-text:1.11.2 -> 1.11.4 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.runtime:runtime-saveable:1.11.1 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-graphics:1.11.1 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.1 (*)
+|                   |    |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.1 (*)
+|                   |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
+|                   |    |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.1 (*)
+|                   |    |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.1 (*)
+|                   |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
+|                   |    |    +--- org.jetbrains.compose.ui:ui-graphics:1.11.1 (*)
+|                   |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.1 (*)
+|                   |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.1 (*)
+|                   |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
+|                   |    +--- org.jetbrains.compose.foundation:foundation-layout:1.11.1
+|                   |    |    +--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+|                   |    |    +--- androidx.compose.foundation:foundation-layout:1.11.2 -> 1.11.4 (*)
+|                   |    |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    |    +--- org.jetbrains.compose.ui:ui:1.11.1 (*)
+|                   |    |    +--- org.jetbrains.compose.ui:ui-unit:1.11.1 (*)
+|                   |    |    +--- org.jetbrains.compose.ui:ui-util:1.11.1 (*)
+|                   |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   |    +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   |    +--- org.jetbrains.compose.ui:ui:1.11.1 (*)
+|                   |    +--- org.jetbrains.compose.ui:ui-geometry:1.11.1 (*)
+|                   |    +--- org.jetbrains.compose.ui:ui-graphics:1.11.1 (*)
+|                   |    +--- org.jetbrains.compose.ui:ui-util:1.11.1 (*)
+|                   |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
+|                   +--- org.jetbrains.compose.foundation:foundation-layout:1.11.1 (*)
+|                   +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+|                   +--- org.jetbrains.compose.ui:ui:1.11.1 (*)
+|                   +--- org.jetbrains.compose.ui:ui-text:1.11.1 (*)
+|                   +--- org.jetbrains.compose.ui:ui-util:1.11.1 (*)
+|                   \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.4.10 (*)
-\--- com.patrykandpatrick.vico:compose-m3:3.2.3
-     \--- com.patrykandpatrick.vico:compose-m3-android:3.2.3
-          +--- com.patrykandpatrick.vico:compose:3.2.3
-          |    \--- com.patrykandpatrick.vico:compose-android:3.2.3
-          |         +--- androidx.annotation:annotation:1.10.0 (*)
-          |         +--- org.jetbrains.compose.foundation:foundation:1.11.0 (*)
-          |         +--- org.jetbrains.compose.runtime:runtime:1.11.0 (*)
-          |         +--- org.jetbrains.compose.ui:ui:1.11.0 (*)
-          |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-          |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.3.21 -> 2.4.10 (*)
-          +--- org.jetbrains.kotlin:kotlin-stdlib:2.3.21 -> 2.4.10 (*)
-          \--- org.jetbrains.compose.material3:material3:1.9.0
-               +--- androidx.compose.material3:material3:1.4.0 (*)
-               +--- org.jetbrains.compose.animation:animation-core:1.9.1 -> 1.11.0 (*)
-               +--- org.jetbrains.compose.annotation-internal:annotation:1.9.1
-               |    \--- androidx.annotation:annotation:1.9.1 -> 1.10.0 (*)
-               +--- org.jetbrains.compose.collection-internal:collection:1.9.1
-               |    \--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
-               +--- org.jetbrains.compose.foundation:foundation:1.9.1 -> 1.11.0 (*)
-               +--- org.jetbrains.compose.foundation:foundation-layout:1.9.1 -> 1.11.0 (*)
-               +--- org.jetbrains.compose.material:material-ripple:1.9.1
-               |    +--- androidx.compose.material:material-ripple:1.9.3 -> 1.11.4 (*)
-               |    +--- org.jetbrains.compose.animation:animation:1.9.1 -> 1.11.0 (*)
-               |    +--- org.jetbrains.compose.collection-internal:collection:1.9.1 (*)
-               |    +--- org.jetbrains.compose.foundation:foundation:1.9.1 -> 1.11.0 (*)
-               |    +--- org.jetbrains.compose.runtime:runtime:1.9.1 -> 1.11.0 (*)
-               |    +--- org.jetbrains.compose.ui:ui-util:1.9.1 -> 1.11.0 (*)
-               |    \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.4.10 (*)
-               +--- org.jetbrains.compose.runtime:runtime:1.9.1 -> 1.11.0 (*)
-               +--- org.jetbrains.compose.ui:ui-backhandler:1.9.1
-               |    \--- org.jetbrains.compose.ui:ui-backhandler-android:1.9.1
-               |         +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*)
-               |         +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.5 -> 2.9.6 (*)
-               |         +--- org.jetbrains.compose.annotation-internal:annotation:1.9.1 (*)
-               |         +--- org.jetbrains.compose.runtime:runtime:1.9.1 -> 1.11.0 (*)
-               |         +--- org.jetbrains.compose.ui:ui-util:1.9.1 -> 1.11.0 (*)
-               |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.4.10 (*)
-               |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.11.0 (*)
-               |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.4.10 (c)
-               +--- org.jetbrains.compose.ui:ui-graphics:1.9.1 -> 1.11.0 (*)
-               +--- org.jetbrains.compose.ui:ui-text:1.9.1 -> 1.11.0 (*)
-               +--- org.jetbrains.compose.ui:ui-util:1.9.1 -> 1.11.0 (*)
-               \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.4.10 (*)
+\--- com.patrykandpatrick.vico:compose-m3:3.3.0
+     \--- com.patrykandpatrick.vico:compose-m3-android:3.3.0
+          +--- com.patrykandpatrick.vico:compose:3.3.0
+          |    \--- com.patrykandpatrick.vico:compose-android:3.3.0
+          |         +--- androidx.annotation:annotation:1.10.0 (*)
+          |         +--- org.jetbrains.compose.foundation:foundation:1.11.1 (*)
+          |         +--- org.jetbrains.compose.runtime:runtime:1.11.1 (*)
+          |         +--- org.jetbrains.compose.ui:ui:1.11.1 (*)
+          |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
+          |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.4.10 (*)
+          +--- org.jetbrains.kotlin:kotlin-stdlib:2.4.10 (*)
+          \--- org.jetbrains.compose.material3:material3:1.9.0
+               +--- androidx.compose.material3:material3:1.4.0 (*)
+               +--- org.jetbrains.compose.animation:animation-core:1.9.1 -> 1.11.1 (*)
+               +--- org.jetbrains.compose.annotation-internal:annotation:1.9.1
+               |    \--- androidx.annotation:annotation:1.9.1 -> 1.10.0 (*)
+               +--- org.jetbrains.compose.collection-internal:collection:1.9.1
+               |    \--- androidx.collection:collection:1.5.0 -> 1.6.0 (*)
+               +--- org.jetbrains.compose.foundation:foundation:1.9.1 -> 1.11.1 (*)
+               +--- org.jetbrains.compose.foundation:foundation-layout:1.9.1 -> 1.11.1 (*)
+               +--- org.jetbrains.compose.material:material-ripple:1.9.1
+               |    +--- androidx.compose.material:material-ripple:1.9.3 -> 1.11.4 (*)
+               |    +--- org.jetbrains.compose.animation:animation:1.9.1 -> 1.11.1 (*)
+               |    +--- org.jetbrains.compose.collection-internal:collection:1.9.1 (*)
+               |    +--- org.jetbrains.compose.foundation:foundation:1.9.1 -> 1.11.1 (*)
+               |    +--- org.jetbrains.compose.runtime:runtime:1.9.1 -> 1.11.1 (*)
+               |    +--- org.jetbrains.compose.ui:ui-util:1.9.1 -> 1.11.1 (*)
+               |    \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.4.10 (*)
+               +--- org.jetbrains.compose.runtime:runtime:1.9.1 -> 1.11.1 (*)
+               +--- org.jetbrains.compose.ui:ui-backhandler:1.9.1
+               |    \--- org.jetbrains.compose.ui:ui-backhandler-android:1.9.1
+               |         +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*)
+               |         +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.5 -> 2.9.6 (*)
+               |         +--- org.jetbrains.compose.annotation-internal:annotation:1.9.1 (*)
+               |         +--- org.jetbrains.compose.runtime:runtime:1.9.1 -> 1.11.1 (*)
+               |         +--- org.jetbrains.compose.ui:ui-util:1.9.1 -> 1.11.1 (*)
+               |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.4.10 (*)
+               |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.11.0 (*)
+               |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.4.10 (c)
+               +--- org.jetbrains.compose.ui:ui-graphics:1.9.1 -> 1.11.1 (*)
+               +--- org.jetbrains.compose.ui:ui-text:1.9.1 -> 1.11.1 (*)
+               +--- org.jetbrains.compose.ui:ui-util:1.9.1 -> 1.11.1 (*)
+               \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.4.10 (*)

@wpmobilebot

Copy link
Copy Markdown
Contributor

🤖 Build Failure Analysis

This build has failures. Claude has analyzed them - check the build annotations for details.

@adalpari

Copy link
Copy Markdown
Contributor

vico 3.3.0 requires compileSdk 37, the project is on 36 and we are not upgrading it yet

@adalpari adalpari closed this Aug 20, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 20, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/gradle/com.patrykandpatrick.vico-compose-m3-3.3.0 branch August 20, 2026 14:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot: dependencies update Dependabot dependency update

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants