Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the gradle-compose group with 9 updates #2368

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the gradle-compose group with 9 updates:

Package From To
io.coil-kt:coil-compose 2.6.0 2.7.0
com.google.accompanist:accompanist-drawablepainter 0.34.0 0.37.0
org.jetbrains.kotlinx:kotlinx-datetime 0.6.0 0.6.1
com.mikepenz:aboutlibraries-compose 11.1.1 11.2.3
com.mikepenz.aboutlibraries.plugin 11.1.1 11.2.3
com.mikepenz:multiplatform-markdown-renderer-m3 0.22.0 0.29.0
com.github.pgreze:kotlin-process 1.4.1 1.5
io.github.materiiapps:enumutil 1.1.0 1.1.1
io.github.materiiapps:enumutil-ksp 1.1.0 1.1.1

Updates io.coil-kt:coil-compose from 2.6.0 to 2.7.0

Release notes

Sourced from io.coil-kt:coil-compose's releases.

2.7.0

See CHANGELOG.md.

Changelog

Sourced from io.coil-kt:coil-compose's changelog.

[2.7.0] - July 17, 2024

  • Slightly optimize internal coroutines usage to improve the performance of ImageLoader.execute, AsyncImage, SubcomposeAsyncImage, and rememberAsyncImagePainter. (#2205)
  • Fix duplicate network calls for chunked responses. (#2363)
  • Update Kotlin to 2.0.0.
  • Update Compose UI to 1.6.8.
  • Update Okio to 3.9.0.

[3.0.0-alpha08] - July 8, 2024

  • BREAKING: Rename ImageRequest and ImageLoader dispatcher methods to coroutineContext. For instance, ImageRequest.Builder.dispatcher is now ImageRequest.Builder.coroutineContext. This was renamed as the method now accepts any CoroutineContext and no longer requires a Dispatcher.
  • Fix: Fix IllegalStateException: Reading a state that was created after the snapshot was taken or in a snapshot that has not yet been applied which could occur due to a race condition.
    • NOTE: This reintroduces a soft dependency on Dispatchers.Main.immediate. As a result you should re-add a dependency on kotlinx-coroutines-swing on JVM. If it's not imported then ImageRequests won't be dispatched immediately and will have one frame of delay before setting the ImageRequest.placeholder or resolving from the memory cache.

[3.0.0-alpha07] - June 26, 2024

  • BREAKING: AsyncImagePainter no longer waits for onDraw by default and instead uses Size.ORIGINAL.
  • BREAKING: Refactor the multiplatform Image API. Notably, asCoilImage has been renamed to asImage.
  • BREAKING: AsyncImagePainter.state has been changed to StateFlow<AsyncImagePainter.State>. Use collectAsState to observe its value. This improves performance.
  • BREAKING: AsyncImagePainter.imageLoader and AsyncImagePainter.request have been combined into StateFlow<AsyncImagePainter.Inputs>. Use collectAsState to observe its value. This improves performance.
  • BREAKING: Remove support for android.resource://example.package.name/drawable/image URIs as it prevents resource shrinking optimizations.
  • New: Introduce AsyncImagePreviewHandler to support controlling AsyncImagePainter's preview rendering behavior.
    • Use LocalAsyncImagePreviewHandler to override the preview behavior.
    • As part of this change and other coil-compose improvements, AsyncImagePainter now attempts to execute execute the ImageRequest by default instead of defaulting to displaying ImageRequest.placeholder. Requests that use the network or files are expected to fail in the preview environment, however Android resources should work.
  • New: Support extracting video image by frame index. (#2183)
  • New: Support passing CoroutineContext to any CoroutineDispatcher methods. (#2241).
  • New: Support the weak reference memory cache on JS and WASM JS.
  • Don't dispatch to Dispatchers.Main.immediate in Compose. As a side-effect, kotlinx-coroutines-swing no longer needs to be imported on JVM.
  • Don't call async and create a disposable in Compose to improve performance (thanks @​mlykotom!). (#2205)
  • Fix passing global ImageLoader extras to Options. (#2223)
  • Fix crossfade(false) not working on non-Android targets.
  • Fix VP8X feature flags byte offset (#2199).
  • Convert SvgDecoder on non-Android targets to render to a bitmap instead of render the image at draw-time. This improves performance.
    • This behavior can be controlled using SvgDecoder(renderToBitmap).
  • Move ScaleDrawable from coil-gif to coil-core.
  • Update Kotlin to 2.0.0.
  • Update Compose to 1.6.11.
  • Update Okio to 3.9.0.
  • Update Skiko to 0.8.4.
  • For the full list of important changes in 3.x, check out the upgrade guide.

[3.0.0-alpha06] - February 29, 2024

[3.0.0-alpha05] - February 28, 2024

... (truncated)

Commits

Updates com.google.accompanist:accompanist-drawablepainter from 0.34.0 to 0.37.0

Release notes

Sourced from com.google.accompanist:accompanist-drawablepainter's releases.

v0.37.0 🌈

What’s Changed

v0.36.0 🌈

What’s Changed

v0.35.2-beta 🌈

What’s Changed

v0.35.1-alpha 🌈

What’s Changed

v0.35.0-alpha 🌈

What’s Changed

... (truncated)

Commits

Updates org.jetbrains.kotlinx:kotlinx-datetime from 0.6.0 to 0.6.1

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-datetime's releases.

v0.6.1

  • Prohibit parsing non-ASCII digits as numbers in DateTimeFormat (#405)
  • More accurately determine which files represent time zones and which don't on Linux and Darwin (#395)
  • Fix a regression that occasionally considered the right boundary of a time overlap to be a part of it on Native (#399)
  • Introduce various small improvements to the timezone handling on Windows (#390)
  • On Linux, allow not having any /etc/localtime set, defaulting to TimeZone.UTC as the system time zone (#426)
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-datetime's changelog.

0.6.1

  • Prohibit parsing non-ASCII digits as numbers in DateTimeFormat (#405)
  • More accurately determine which files represent time zones and which don't on Linux and Darwin (#395)
  • Fix a regression that occasionally considered the right boundary of a time overlap to be a part of it on Native (#399)
  • Introduce various small improvements to the timezone handling on Windows (#390)
  • On Linux, allow not having any /etc/localtime set, defaulting to TimeZone.UTC as the system time zone (#426)
Commits

Updates com.mikepenz:aboutlibraries-compose from 11.1.1 to 11.2.3

Release notes

Sourced from com.mikepenz:aboutlibraries-compose's releases.

11.2.3

🚀 Features

  • Kotlin 2.x | Compose Compiler Update | Dependency upgrades
  • Upgrade to Kotiln 2.0.0 | Upgrade to Compose Multiplatform 1.6.10
  • Fix Library badge cutoff
  • Introduce new rememberLibraries API
  • Update to the latest stable dependency versions | Kotlin 2.0.20

💬 Other

  • Enhanced wasm sample app | CI to publish to GitHub pages
  • Upgrade to Kotiln 2.0.0 | Upgrade to Compose Multiplatform 1.6.10
  • Reduce noise of AmbiguousArtifactVariantsException logs even more
  • Enhance README for exportVariant API
  • Dependency Upgrades | Compose 1.6.11
  • Introduce test module with limited dependencies

11.2.2

🚀 Features

  • Kotlin 2.x | Compose Compiler Update | Dependency upgrades
  • Upgrade to Kotiln 2.0.0 | Upgrade to Compose Multiplatform 1.6.10
  • Fix Library badge cutoff
  • Introduce new rememberLibraries API

💬 Other

  • Enhanced wasm sample app | CI to publish to GitHub pages
  • Upgrade to Kotiln 2.0.0 | Upgrade to Compose Multiplatform 1.6.10
  • Reduce noise of AmbiguousArtifactVariantsException logs even more
  • Enhance README for exportVariant API

... (truncated)

Commits

Updates com.mikepenz.aboutlibraries.plugin from 11.1.1 to 11.2.3

Updates com.mikepenz:multiplatform-markdown-renderer-m3 from 0.22.0 to 0.29.0

Release notes

Sourced from com.mikepenz:multiplatform-markdown-renderer-m3's releases.

v0.29.0

[!NOTE]
This release requires at least Kotlin 2.0 or higher

💬 Other

  • Upgrade to Kotlin 2.x | Compose Multiplatform 1.7.3
  • Add Table to sample

v0.28.0

🚀 Features

  • Update to compose multiplatform 1.7.1 | Coil 3.0.3 | highlights 1.0.0
  • Upgrade Gradle 8.11.1 | Coil 3.0.4
  • Introduce new API to build annotated markdown strings to be used in standard Text composables
  • Replace API to disable animation for MarkdownText
  • Add support for simple tables

🐛 Fixes

  • Revert dependencies due to IR issues

💬 Other

  • Adjust visibility of some helper methods
  • Add Dependabot for GitHub Actions
  • Bump mikepenz/action-junit-report from 4 to 5
  • Bump gradle/actions from 3 to 4
  • Bump actions/configure-pages from 4 to 5
  • Upgrade to Dokka 2 | Coroutines 1.10.1 | Ktor 3.0.3 ...
  • Include dependencies in changelog

v0.28.0-rc01

... (truncated)

Commits
  • 3fca430 Merge pull request #261 from mikepenz/develop
  • d1b8d2b - [release] v0.29.0
  • c98a9bc Merge pull request #260 from mikepenz/feature/add_table_sample
  • 22a6bf8 Merge pull request #259 from mikepenz/feature/dependency_upgrades_20241231
  • 13cfd1b - add table to sample
  • ddaadb1 - upgrade to Kotlin 2.x language and api version
  • bf968f5 - upgrade to AGP 8.7.3
  • db49977 Merge pull request #258 from mikepenz/develop
  • ea34dfa - [release] v0.28.0
  • 7c8365a Merge pull request #257 from mikepenz/feature-add-table-support
  • Additional commits viewable in compare view

Updates com.github.pgreze:kotlin-process from 1.4.1 to 1.5

Commits

Updates io.github.materiiapps:enumutil from 1.1.0 to 1.1.1

Release notes

Sourced from io.github.materiiapps:enumutil's releases.

1.1.1

Full Changelog: MateriiApps/enumutil-kt@1.1.0...1.1.1

Commits

Updates io.github.materiiapps:enumutil-ksp from 1.1.0 to 1.1.1

Updates io.github.materiiapps:enumutil-ksp from 1.1.0 to 1.1.1

Updates com.mikepenz.aboutlibraries.plugin from 11.1.1 to 11.2.3

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the gradle-compose group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [io.coil-kt:coil-compose](https://github.com/coil-kt/coil) | `2.6.0` | `2.7.0` |
| [com.google.accompanist:accompanist-drawablepainter](https://github.com/google/accompanist) | `0.34.0` | `0.37.0` |
| [org.jetbrains.kotlinx:kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) | `0.6.0` | `0.6.1` |
| [com.mikepenz:aboutlibraries-compose](https://github.com/mikepenz/AboutLibraries) | `11.1.1` | `11.2.3` |
| com.mikepenz.aboutlibraries.plugin | `11.1.1` | `11.2.3` |
| [com.mikepenz:multiplatform-markdown-renderer-m3](https://github.com/mikepenz/multiplatform-markdown-renderer) | `0.22.0` | `0.29.0` |
| [com.github.pgreze:kotlin-process](https://github.com/pgreze/kotlin-process) | `1.4.1` | `1.5` |
| [io.github.materiiapps:enumutil](https://github.com/MateriiApps/enumutil-kt) | `1.1.0` | `1.1.1` |
| io.github.materiiapps:enumutil-ksp | `1.1.0` | `1.1.1` |


Updates `io.coil-kt:coil-compose` from 2.6.0 to 2.7.0
- [Release notes](https://github.com/coil-kt/coil/releases)
- [Changelog](https://github.com/coil-kt/coil/blob/main/CHANGELOG.md)
- [Commits](coil-kt/coil@2.6.0...2.7.0)

Updates `com.google.accompanist:accompanist-drawablepainter` from 0.34.0 to 0.37.0
- [Release notes](https://github.com/google/accompanist/releases)
- [Commits](google/accompanist@v0.34.0...v0.37.0)

Updates `org.jetbrains.kotlinx:kotlinx-datetime` from 0.6.0 to 0.6.1
- [Release notes](https://github.com/Kotlin/kotlinx-datetime/releases)
- [Changelog](https://github.com/Kotlin/kotlinx-datetime/blob/master/CHANGELOG.md)
- [Commits](Kotlin/kotlinx-datetime@v0.6.0...v0.6.1)

Updates `com.mikepenz:aboutlibraries-compose` from 11.1.1 to 11.2.3
- [Release notes](https://github.com/mikepenz/AboutLibraries/releases)
- [Commits](mikepenz/AboutLibraries@v11.1.1...11.2.3)

Updates `com.mikepenz.aboutlibraries.plugin` from 11.1.1 to 11.2.3

Updates `com.mikepenz:multiplatform-markdown-renderer-m3` from 0.22.0 to 0.29.0
- [Release notes](https://github.com/mikepenz/multiplatform-markdown-renderer/releases)
- [Changelog](https://github.com/mikepenz/multiplatform-markdown-renderer/blob/develop/CHANGELOG.md)
- [Commits](mikepenz/multiplatform-markdown-renderer@v0.22.0...v0.29.0)

Updates `com.github.pgreze:kotlin-process` from 1.4.1 to 1.5
- [Release notes](https://github.com/pgreze/kotlin-process/releases)
- [Commits](pgreze/kotlin-process@v1.4.1...v1.5)

Updates `io.github.materiiapps:enumutil` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/MateriiApps/enumutil-kt/releases)
- [Commits](MateriiApps/enumutil-kt@1.1.0...1.1.1)

Updates `io.github.materiiapps:enumutil-ksp` from 1.1.0 to 1.1.1

Updates `io.github.materiiapps:enumutil-ksp` from 1.1.0 to 1.1.1

Updates `com.mikepenz.aboutlibraries.plugin` from 11.1.1 to 11.2.3

---
updated-dependencies:
- dependency-name: io.coil-kt:coil-compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-compose
- dependency-name: com.google.accompanist:accompanist-drawablepainter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-compose
- dependency-name: org.jetbrains.kotlinx:kotlinx-datetime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-compose
- dependency-name: com.mikepenz:aboutlibraries-compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-compose
- dependency-name: com.mikepenz.aboutlibraries.plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-compose
- dependency-name: com.mikepenz:multiplatform-markdown-renderer-m3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-compose
- dependency-name: com.github.pgreze:kotlin-process
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-compose
- dependency-name: io.github.materiiapps:enumutil
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-compose
- dependency-name: io.github.materiiapps:enumutil-ksp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-compose
- dependency-name: io.github.materiiapps:enumutil-ksp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-compose
- dependency-name: com.mikepenz.aboutlibraries.plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-compose
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the ReVanced Manager Compose Regarding the Compose rewrite of ReVanced Manager label Jan 1, 2025
@Ushie Ushie closed this Jan 5, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 5, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/gradle/compose-dev/gradle-compose-d0fc7864c6 branch January 5, 2025 00:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ReVanced Manager Compose Regarding the Compose rewrite of ReVanced Manager
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant