Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Bump the ivy-wallet group with 22 updates #3486

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 9, 2024

Bumps the ivy-wallet group with 22 updates:

Package From To
com.android.tools.build:gradle 8.5.2 8.6.0
org.jetbrains.kotlinx:kotlinx-collections-immutable 0.3.7 0.3.8
org.jetbrains.kotlinx:kotlinx-serialization-json 1.7.1 1.7.2
com.google.testparameterinjector:test-parameter-injector 1.16 1.17
androidx.compose.animation:animation 1.6.8 1.7.0
androidx.compose.foundation:foundation 1.6.8 1.7.0
androidx.compose.material:material-icons-extended 1.6.8 1.7.0
androidx.compose.runtime:runtime 1.6.8 1.7.0
androidx.compose.runtime:runtime-livedata 1.6.8 1.7.0
androidx.compose.ui:ui 1.6.8 1.7.0
androidx.compose.ui:ui-tooling 1.6.8 1.7.0
androidx.compose.material3:material3 1.2.1 1.3.0
androidx.compose.material3:material3-window-size-class 1.2.1 1.3.0
androidx.activity:activity-compose 1.9.1 1.9.2
androidx.lifecycle:lifecycle-viewmodel-compose 2.8.4 2.8.5
androidx.activity:activity-ktx 1.9.1 1.9.2
org.apache.commons:commons-lang3 3.16.0 3.17.0
io.gitlab.arturbosch.detekt:detekt-gradle-plugin 1.23.6 1.23.7
io.gitlab.arturbosch.detekt:detekt-formatting 1.23.6 1.23.7
io.nlopez.compose.rules:detekt 0.4.10 0.4.11
com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 2.0.20-1.0.24 2.0.20-1.0.25
com.jraska.module.graph.assertion:plugin 2.6.0 2.7.1

Updates com.android.tools.build:gradle from 8.5.2 to 8.6.0

Updates org.jetbrains.kotlinx:kotlinx-collections-immutable from 0.3.7 to 0.3.8

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-collections-immutable's releases.

v0.3.8

What's Changed

  • Add extension functions to convert Array to persistent collections #159
  • Don't allocate temporary buffer in SmallPersistentVector.removeAll #164
  • Avoid creating new PersistentList instance when adding empty collection #176
  • Fix memory leak in builders #193
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-collections-immutable's changelog.

CHANGELOG

Commits
  • fe7b163 fix memory leak in builders: they should not hold on to the original collecti...
  • c60eb51 Enable KLib ABI validation
  • 38be1b4 Gradle 8.10
  • 3c2248e Bump binary-compatibility-validator version to 0.16.2 (#188)
  • 1d18389 Adds an empty input check to all addAll, removeAll, and retainAll methods
  • a1d250a Avoid creating new PersistentList instance when adding all elements of an emp...
  • 16bd411 Kotlin K2 migration: add generic type to emptyList
  • 7353626 Wasm invalid gradle configuration fix
  • 7fb0d74 Add wasmJs target in benchmarks
  • 79ef892 Upgrade kotlinx-benchmark version to 0.4.10
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-serialization-json from 1.7.1 to 1.7.2

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's releases.

1.7.2

This release provides several new features, including a major Cbor configuration rework. It uses Kotlin 2.0.20 by default.

Cbor feature set for COSE compliance

This change brings a lot of features to the CBOR format, namely:

  • Serial Labels — see @CborLabel annotation and preferCborLabelsOverNames flag.
  • Tagging of keys and values — see encode*Tags and verify*Tags set of flags
  • Definite length encoding — see useDefiniteLengthEncoding. This flag affects object encoding, since decoding of arrays with definite lenghts is automatically supported.
  • Option to globally prefer major type 2 for byte array encoding — see alwaysUseByteString flag.

Since there are quite a lot of flags now, they were restructured to a separate CborConfiguration class, similarly to JsonConfiguration. It is possible to retrieve this configuration from CborEncoder/CborDecoder interfaces in your custom serializers (see their documentation for details).

All of these features make it possible to serialize and parse COSE-compliant CBOR, for example, ISO/IEC 18013-5:2021-compliant mobile driving license data. In case you want to make use of them, there is a predefined Cbor.CoseCompliant instance. However, some canonicalization steps (such as sorting keys) still need to be performed manually.

This functionality was contributed to us by Bernd Prünster and Christian.

Keeping generated serializers

One of the most requested features for serialization plugin was to continue to generate a serializer even if a custom one is specified for the class. It allows using a plugin-generated serializer in a fallback or delegate strategy, accessing type structure via descriptor, using default serialization behavior in inheritors that do not use custom serializers.

Starting with this release, you can specify the @KeepGeneratedSerializer annotation on the class declaration to instruct the plugin to continue generating the serializer. In this case, the serializer will be accessible using the .generatedSerializer() function on the class's companion object.

This annotation is currently experimental. Kotlin 2.0.20 or higher is required for this feature to work.

You can check out the examples in the documentation and in the PRs: #2758, #2669.

Serializer for kotlin.uuid.Uuid

Kotlin 2.0.20 added a common class to represent UUIDs in a multiplatform code. kotlinx.serialization 1.7.2 provides a corresponding Uuid.serializer() for it, making it possible to use it in @Serializable classes.

Note that for now, serializer should be provided manually with @Contextual annotation. Plugin will be able to automatically insert Uuid serializer in Kotlin 2.1.0.

See more details in the corresponding PR.

Other bugfixes and improvements

  • Prohibited using of zero and negative field numbers in ProtoNumber (#2766)
  • Improve readability of protobuf decoding exception messages (#2768) (thanks to xiaozhikang0916)
  • docs(serializers): Fix grammatical errors (#2779) (thanks to jamhour1g)
  • Fixed VerifyError after ProGuard optimization (#2728)
  • Add wasm-wasi target to Okio integration (#2727)
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's changelog.

1.7.2 / 2024-08-28

This release provides several new features, including a major Cbor configuration rework. It uses Kotlin 2.0.20 by default.

Cbor feature set for COSE compliance

This change brings a lot of features to the CBOR format, namely:

  • Serial Labels — see @CborLabel annotation and preferCborLabelsOverNames flag.
  • Tagging of keys and values — see encode*Tags and verify*Tags set of flags
  • Definite length encoding — see useDefiniteLengthEncoding. This flag affects object encoding, since decoding of arrays with definite lenghts is automatically supported.
  • Option to globally prefer major type 2 for byte array encoding — see alwaysUseByteString flag.

Since there are quite a lot of flags now, they were restructured to a separate CborConfiguration class, similarly to JsonConfiguration. It is possible to retrieve this configuration from CborEncoder/CborDecoder interfaces in your custom serializers (see their documentation for details).

All of these features make it possible to serialize and parse COSE-compliant CBOR, for example, ISO/IEC 18013-5:2021-compliant mobile driving license data. In case you want to make use of them, there is a predefined Cbor.CoseCompliant instance. However, some canonicalization steps (such as sorting keys) still need to be performed manually.

This functionality was contributed to us by Bernd Prünster.

Keeping generated serializers

One of the most requested features for serialization plugin was to continue to generate a serializer even if a custom one is specified for the class. It allows using a plugin-generated serializer in a fallback or delegate strategy, accessing type structure via descriptor, using default serialization behavior in inheritors that do not use custom serializers.

Starting with this release, you can specify the @KeepGeneratedSerializer annotation on the class declaration to instruct the plugin to continue generating the serializer. In this case, the serializer will be accessible using the .generatedSerializer() function on the class's companion object.

This annotation is currently experimental. Kotlin 2.0.20 or higher is required for this feature to work.

You can check out the examples in the documentation and in the PRs: #2758, #2669.

Serializer for kotlin.uuid.Uuid

Kotlin 2.0.20 added a common class to represent UUIDs in a multiplatform code. kotlinx.serialization 1.7.2 provides a corresponding Uuid.serializer() for it, making it possible to use it in @Serializable classes. Note that for now, serializer should be provided manually with @Contextual annotation. Plugin will be able to automatically insert Uuid serializer in Kotlin 2.1.0.

See more details in the corresponding PR.

Other bugfixes and improvements

  • Prohibited using of zero and negative field numbers in ProtoNumber (#2766)
  • Improve readability of protobuf decoding exception messages (#2768) (thanks to xiaozhikang0916)
  • docs(serializers): Fix grammatical errors (#2779) (thanks to jamhour1g)

... (truncated)

Commits
  • 8c84a5b Prepare 1.7.2 release (#2798)
  • b3cfe56 Merge remote-tracking branch 'origin/master' into dev
  • 550e1a8 Rework opt-ins in build scripts (#2794)
  • e4fa8a3 Update Annotations.kt, fixed typo: RgpPixel -> RgbPixel (#2793)
  • 62aa4bb Add serializer for kotlin.uuid.Uuid (#2744)
  • 4646740 Prohibited using of zero and negative filed number in ProtoNumber and zero fi...
  • 4ca05dd Update Kotlin to 2.0.20 (#2792)
  • 35a9edc Migrate from kotlinOptions to compilerOptions (#2746)
  • 0b5145c Improve readability of protobuf decoding exception messages (#2768)
  • b931598 Remove redundant toString() (#2790)
  • Additional commits viewable in compare view

Updates com.google.testparameterinjector:test-parameter-injector from 1.16 to 1.17

Updates androidx.compose.animation:animation from 1.6.8 to 1.7.0

Updates androidx.compose.foundation:foundation from 1.6.8 to 1.7.0

Updates androidx.compose.material:material-icons-extended from 1.6.8 to 1.7.0

Updates androidx.compose.runtime:runtime from 1.6.8 to 1.7.0

Updates androidx.compose.runtime:runtime-livedata from 1.6.8 to 1.7.0

Updates androidx.compose.ui:ui from 1.6.8 to 1.7.0

Updates androidx.compose.ui:ui-tooling from 1.6.8 to 1.7.0

Updates androidx.compose.foundation:foundation from 1.6.8 to 1.7.0

Updates androidx.compose.material3:material3 from 1.2.1 to 1.3.0

Updates androidx.compose.material3:material3-window-size-class from 1.2.1 to 1.3.0

Updates androidx.compose.material3:material3-window-size-class from 1.2.1 to 1.3.0

Updates androidx.compose.material:material-icons-extended from 1.6.8 to 1.7.0

Updates androidx.compose.runtime:runtime from 1.6.8 to 1.7.0

Updates androidx.compose.runtime:runtime-livedata from 1.6.8 to 1.7.0

Updates androidx.compose.ui:ui from 1.6.8 to 1.7.0

Updates androidx.activity:activity-compose from 1.9.1 to 1.9.2

Updates androidx.lifecycle:lifecycle-viewmodel-compose from 2.8.4 to 2.8.5

Updates androidx.compose.ui:ui-tooling from 1.6.8 to 1.7.0

Updates androidx.activity:activity-ktx from 1.9.1 to 1.9.2

Updates org.apache.commons:commons-lang3 from 3.16.0 to 3.17.0

Updates io.gitlab.arturbosch.detekt:detekt-gradle-plugin from 1.23.6 to 1.23.7

Release notes

Sourced from io.gitlab.arturbosch.detekt:detekt-gradle-plugin's releases.

v1.23.7

1.23.7 - 2024-09-08

This is a point release for Detekt 1.23.0, built against Kotlin 2.0.10, with fixes for several bugs that got reported by the community.

Notable Changes
  • fix(deps): update kotlin monorepo to v2.0.10 - #7517
  • Update to Kotlin 2.0.0 #6640
  • fix(deps): update kotlin monorepo to v1.9.24 - #7264
  • fix(deps): update dependency com.android.tools.build:gradle to v8.5.2 - #7525
  • chore(deps): update dependency gradle to v8.10 - #7546
Changelog
  • Add basic support for isolated projects to 1.x - #7526
  • ExplicitCollectionElementAccessMethod: fix false positive when Map put has 3 arguments - #7563
  • BracesOnIfStatements: fix false-positive when chained - #7444
  • Add enum entry check in UndocumentedPublicProperty - #7426
  • Use the anchor which is already present before - #7423
  • Fix small corner-case in "SerialVersionUIDInSerializableClass" rule, … - #7346
  • SwallowedException: fix false positive when exception is used as a receiver - #7288
  • NamedArguments: fix false positive on spread varargs - #7283
  • MultilineLambdaItParameter: fix false negative with single statement on multiple lines - #7221
  • Check for root of receiver in selector expression - #7220
  • Check for public companion object for UndocumentedPublicClass - #7219
  • fix: TopLevelPropertyNaming also detecting extension property name - #7212
  • Publish detekt-compiler-plugin-all to Maven and GH Releases - #7179
  • versioned default detekt config file link - #7161
  • Support rangeUntil operator for UnusedImport rule - #7104
  • Fix false positive on it usages when type parameter is specified - #6850
Housekeeping/Docs
  • [bugfix] AnnotationOnSeparateLine in snippets - #6526
  • Add docs about using the Compiler Plugin with the Kotlin CLI compiler - #7184
Commits
  • f951808 Prepare Release 1.23.7 (#7608)
  • 396c1e9 [LOCAL] Bump detekt version inside DGP for self inspection
  • 8ed0732 [LOCAL] Update CI Matrix setup to match main
  • 71cd25e [LOCAL] Run CI on release/1.x pushes
  • ece2afd [LOCAL] Fix failures with -PwarningsAsErrors=true
  • 7e1eb7d [LOCAL] Fix failures with -Pcompile-test-snippets=true
  • f3ff225 [LOCAL] Add .kotlin to gitignore
  • f7db569 chore(deps): update dependency gradle to v8.10 (#7546)
  • 4c5f0a2 fix(deps): update dependency com.android.tools.build:gradle to v8.5.2 (#7525)
  • f475902 [LOCAL] Make sure ./gradlew build works on the release/1.x branch - Take 2
  • Additional commits viewable in compare view

Updates io.gitlab.arturbosch.detekt:detekt-formatting from 1.23.6 to 1.23.7

Release notes

Sourced from io.gitlab.arturbosch.detekt:detekt-formatting's releases.

v1.23.7

1.23.7 - 2024-09-08

This is a point release for Detekt 1.23.0, built against Kotlin 2.0.10, with fixes for several bugs that got reported by the community.

Notable Changes
  • fix(deps): update kotlin monorepo to v2.0.10 - #7517
  • Update to Kotlin 2.0.0 #6640
  • fix(deps): update kotlin monorepo to v1.9.24 - #7264
  • fix(deps): update dependency com.android.tools.build:gradle to v8.5.2 - #7525
  • chore(deps): update dependency gradle to v8.10 - #7546
Changelog
  • Add basic support for isolated projects to 1.x - #7526
  • ExplicitCollectionElementAccessMethod: fix false positive when Map put has 3 arguments - #7563
  • BracesOnIfStatements: fix false-positive when chained - #7444
  • Add enum entry check in UndocumentedPublicProperty - #7426
  • Use the anchor which is already present before - #7423
  • Fix small corner-case in "SerialVersionUIDInSerializableClass" rule, … - #7346
  • SwallowedException: fix false positive when exception is used as a receiver - #7288
  • NamedArguments: fix false positive on spread varargs - #7283
  • MultilineLambdaItParameter: fix false negative with single statement on multiple lines - #7221
  • Check for root of receiver in selector expression - #7220
  • Check for public companion object for UndocumentedPublicClass - #7219
  • fix: TopLevelPropertyNaming also detecting extension property name - #7212
  • Publish detekt-compiler-plugin-all to Maven and GH Releases - #7179
  • versioned default detekt config file link - #7161
  • Support rangeUntil operator for UnusedImport rule - #7104
  • Fix false positive on it usages when type parameter is specified - #6850
Housekeeping/Docs
  • [bugfix] AnnotationOnSeparateLine in snippets - #6526
  • Add docs about using the Compiler Plugin with the Kotlin CLI compiler - #7184
Commits
  • f951808 Prepare Release 1.23.7 (#7608)
  • 396c1e9 [LOCAL] Bump detekt version inside DGP for self inspection
  • 8ed0732 [LOCAL] Update CI Matrix setup to match main
  • 71cd25e [LOCAL] Run CI on release/1.x pushes
  • ece2afd [LOCAL] Fix failures with -PwarningsAsErrors=true
  • 7e1eb7d [LOCAL] Fix failures with -Pcompile-test-snippets=true
  • f3ff225 [LOCAL] Add .kotlin to gitignore
  • f7db569 chore(deps): update dependency gradle to v8.10 (#7546)
  • 4c5f0a2 fix(deps): update dependency com.android.tools.build:gradle to v8.5.2 (#7525)
  • f475902 [LOCAL] Make sure ./gradlew build works on the release/1.x branch - Take 2
  • Additional commits viewable in compare view

Updates io.gitlab.arturbosch.detekt:detekt-formatting from 1.23.6 to 1.23.7

Release notes

Sourced from io.gitlab.arturbosch.detekt:detekt-formatting's releases.

v1.23.7

1.23.7 - 2024-09-08

This is a point release for Detekt 1.23.0, built against Kotlin 2.0.10, with fixes for several bugs that got reported by the community.

Notable Changes
  • fix(deps): update kotlin monorepo to v2.0.10 - #7517
  • Update to Kotlin 2.0.0 #6640
  • fix(deps): update kotlin monorepo to v1.9.24 - #7264
  • fix(deps): update dependency com.android.tools.build:gradle to v8.5.2 - #7525
  • chore(deps): update dependency gradle to v8.10 - #7546
Changelog
  • Add basic support for isolated projects to 1.x - #7526
  • ExplicitCollectionElementAccessMethod: fix false positive when Map put has 3 arguments - #7563
  • BracesOnIfStatements: fix false-positive when chained - #7444
  • Add enum entry check in UndocumentedPublicProperty - #7426
  • Use the anchor which is already present before - #7423
  • Fix small corner-case in "SerialVersionUIDInSerializableClass" rule, … - #7346
  • SwallowedException: fix false positive when exception is used as a receiver - #7288
  • NamedArguments: fix false positive on spread varargs - #7283
  • MultilineLambdaItParameter: fix false negative with single statement on multiple lines - #7221
  • Check for root of receiver in selector expression - #7220
  • Check for public companion object for UndocumentedPublicClass - #7219
  • fix: TopLevelPropertyNaming also detecting extension property name - #7212
  • Publish detekt-compiler-plugin-all to Maven and GH Releases - #7179
  • versioned default detekt config file link - #7161
  • Support rangeUntil operator for UnusedImport rule - #7104
  • Fix false positive on it usages when type parameter is specified - #6850
Housekeeping/Docs
  • [bugfix] AnnotationOnSeparateLine in snippets - #6526
  • Add docs about using the Compiler Plugin with the Kotlin CLI compiler - #7184
Commits
  • f951808 Prepare Release 1.23.7 (#7608)
  • 396c1e9 [LOCAL] Bump detekt version inside DGP for self inspection
  • 8ed0732 [LOCAL] Update CI Matrix setup to match main
  • 71cd25e [LOCAL] Run CI on release/1.x pushes
  • ece2afd [LOCAL] Fix failures with -PwarningsAsErrors=true
  • 7e1eb7d [LOCAL] Fix failures with -Pcompile-test-snippets=true
  • f3ff225 [LOCAL] Add .kotlin to gitignore
  • f7db569 chore(deps): update dependency gradle to v8.10 (#7546)
  • 4c5f0a2 fix(deps): update dependency com.android.tools.build:gradle to v8.5.2 (#7525)
  • f475902 [LOCAL] Make sure ./gradlew build works on the release/1.x branch - Take 2
  • Additional commits viewable in compare view

Updates io.nlopez.compose.rules:detekt from 0.4.10 to 0.4.11

Release notes

Sourced from io.nlopez.compose.rules:detekt's releases.

v0.4.11

Changelog

Commits
  • 93ea8af Bump version to 0.4.11
  • 215847a Fix false positive in LambdaParameterInRestartableEffect (#328)
  • 6d88d11 Update dependency org.jetbrains.kotlin.jvm to v2.0.20 (#324)
  • b49e1b2 Remove context receivers due to deprecation in Kotlin 2.0.20 (#326)
  • fab8017 Simplify and optimize ModifierNotUsedAtRoot (#323)
  • 5f86d3a Process kts files with Spotless as well (#322)
  • 996573e Update plugin com.gradle.develocity to v3.18 (#321)
  • 079f0fc Update dependency gradle to v8.10 (#320)
  • f89abf9 Update junit5 monorepo to v5.11.0 (#319)
  • d53d228 Bump version to 0.4.11-SNAPSHOT
  • See full diff in compare view

Updates com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin from 2.0.20-1.0.24 to 2.0.20-1.0.25

Release notes

Sourced from com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin's releases.

2.0.20-1.0.25

Bugs Fixed

Inlined JVM name is not correct #1493 [KSP2] NullPointerException when getting name of nested annotation #1963 [KSP2] The status was unresolved for FirSimpleFunctionImpl #1938 [KSP2] Class values in type annotations get resolved to error type #1933 [KSP2] Comparing KSType leads to exception #1918 [KSP2] Can't find values in repeatable annotations #1883 incremental: aggregating outputs should always be invalidated #2027 [KSP2] Not yet implemented: KSValueArgumentLiteImpl.getLocation #2048 [KSP2] Not yet implemented: KSValueArgumentImpl.getParent #2049 getSymbolsWithAnnotation returns copy function from data class #1996 [KSP2] Annotations got use-site target when there are none specified #1882 getting null pointer exception #1929 [KSP2] Calling getDeclarationsInSourceOrder throws KotlinIllegalStateExceptionWithAttachments #1930 [KSP2] A failure occurred while executing com.google.devtools.ksp.gradle.KspAAWorkerAction #1941 KSP2: Resolver.getJvmNames doesn't work for inline and internal classes #1640 kspCaches don't work together with Gradle build cache #2042

Contributors

Thank you so much! @​ansman, @​kuanyingchou

Full Changelog: google/ksp@2.0.20-1.0.24...2.0.20-1.0.25

Commits
  • 332a961 Close the KSP caches files after reading them
  • c32a756 Add --stracktrace to the failing test
  • 3fc773f Delete the ksp caches when the task is restored from cache
  • a43ab02 KSP2: get module name from metadata
  • b6dcf9f getJvmName: clean up
  • 7a5ded4 Partially fix mangling of internal functions
  • c30c83e Handle explicit JvmName
  • ebf987b Mangle jvm names for inline class
  • 46556c2 MangledNamesProcessor: order visits by name
  • 27e51ae Replace the deprecated ios with iosX64 in tests
  • Additional commits viewable in compare view

Updates com.jraska.module.graph.assertion:plugin from 2.6.0 to 2.7.1

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 ivy-wallet group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| com.android.tools.build:gradle | `8.5.2` | `8.6.0` |
| [org.jetbrains.kotlinx:kotlinx-collections-immutable](https://github.com/Kotlin/kotlinx.collections.immutable) | `0.3.7` | `0.3.8` |
| [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.7.1` | `1.7.2` |
| com.google.testparameterinjector:test-parameter-injector | `1.16` | `1.17` |
| androidx.compose.animation:animation | `1.6.8` | `1.7.0` |
| androidx.compose.foundation:foundation | `1.6.8` | `1.7.0` |
| androidx.compose.material:material-icons-extended | `1.6.8` | `1.7.0` |
| androidx.compose.runtime:runtime | `1.6.8` | `1.7.0` |
| androidx.compose.runtime:runtime-livedata | `1.6.8` | `1.7.0` |
| androidx.compose.ui:ui | `1.6.8` | `1.7.0` |
| androidx.compose.ui:ui-tooling | `1.6.8` | `1.7.0` |
| androidx.compose.material3:material3 | `1.2.1` | `1.3.0` |
| androidx.compose.material3:material3-window-size-class | `1.2.1` | `1.3.0` |
| androidx.activity:activity-compose | `1.9.1` | `1.9.2` |
| androidx.lifecycle:lifecycle-viewmodel-compose | `2.8.4` | `2.8.5` |
| androidx.activity:activity-ktx | `1.9.1` | `1.9.2` |
| org.apache.commons:commons-lang3 | `3.16.0` | `3.17.0` |
| [io.gitlab.arturbosch.detekt:detekt-gradle-plugin](https://github.com/detekt/detekt) | `1.23.6` | `1.23.7` |
| [io.gitlab.arturbosch.detekt:detekt-formatting](https://github.com/detekt/detekt) | `1.23.6` | `1.23.7` |
| [io.nlopez.compose.rules:detekt](https://github.com/mrmans0n/compose-rules) | `0.4.10` | `0.4.11` |
| [com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin](https://github.com/google/ksp) | `2.0.20-1.0.24` | `2.0.20-1.0.25` |
| com.jraska.module.graph.assertion:plugin | `2.6.0` | `2.7.1` |


Updates `com.android.tools.build:gradle` from 8.5.2 to 8.6.0

Updates `org.jetbrains.kotlinx:kotlinx-collections-immutable` from 0.3.7 to 0.3.8
- [Release notes](https://github.com/Kotlin/kotlinx.collections.immutable/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.collections.immutable/blob/master/CHANGELOG.md)
- [Commits](Kotlin/kotlinx.collections.immutable@v0.3.7...v0.3.8)

Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](Kotlin/kotlinx.serialization@v1.7.1...v1.7.2)

Updates `com.google.testparameterinjector:test-parameter-injector` from 1.16 to 1.17

Updates `androidx.compose.animation:animation` from 1.6.8 to 1.7.0

Updates `androidx.compose.foundation:foundation` from 1.6.8 to 1.7.0

Updates `androidx.compose.material:material-icons-extended` from 1.6.8 to 1.7.0

Updates `androidx.compose.runtime:runtime` from 1.6.8 to 1.7.0

Updates `androidx.compose.runtime:runtime-livedata` from 1.6.8 to 1.7.0

Updates `androidx.compose.ui:ui` from 1.6.8 to 1.7.0

Updates `androidx.compose.ui:ui-tooling` from 1.6.8 to 1.7.0

Updates `androidx.compose.foundation:foundation` from 1.6.8 to 1.7.0

Updates `androidx.compose.material3:material3` from 1.2.1 to 1.3.0

Updates `androidx.compose.material3:material3-window-size-class` from 1.2.1 to 1.3.0

Updates `androidx.compose.material3:material3-window-size-class` from 1.2.1 to 1.3.0

Updates `androidx.compose.material:material-icons-extended` from 1.6.8 to 1.7.0

Updates `androidx.compose.runtime:runtime` from 1.6.8 to 1.7.0

Updates `androidx.compose.runtime:runtime-livedata` from 1.6.8 to 1.7.0

Updates `androidx.compose.ui:ui` from 1.6.8 to 1.7.0

Updates `androidx.activity:activity-compose` from 1.9.1 to 1.9.2

Updates `androidx.lifecycle:lifecycle-viewmodel-compose` from 2.8.4 to 2.8.5

Updates `androidx.compose.ui:ui-tooling` from 1.6.8 to 1.7.0

Updates `androidx.activity:activity-ktx` from 1.9.1 to 1.9.2

Updates `org.apache.commons:commons-lang3` from 3.16.0 to 3.17.0

Updates `io.gitlab.arturbosch.detekt:detekt-gradle-plugin` from 1.23.6 to 1.23.7
- [Release notes](https://github.com/detekt/detekt/releases)
- [Commits](detekt/detekt@v1.23.6...v1.23.7)

Updates `io.gitlab.arturbosch.detekt:detekt-formatting` from 1.23.6 to 1.23.7
- [Release notes](https://github.com/detekt/detekt/releases)
- [Commits](detekt/detekt@v1.23.6...v1.23.7)

Updates `io.gitlab.arturbosch.detekt:detekt-formatting` from 1.23.6 to 1.23.7
- [Release notes](https://github.com/detekt/detekt/releases)
- [Commits](detekt/detekt@v1.23.6...v1.23.7)

Updates `io.nlopez.compose.rules:detekt` from 0.4.10 to 0.4.11
- [Release notes](https://github.com/mrmans0n/compose-rules/releases)
- [Commits](mrmans0n/compose-rules@v0.4.10...v0.4.11)

Updates `com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin` from 2.0.20-1.0.24 to 2.0.20-1.0.25
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](google/ksp@2.0.20-1.0.24...2.0.20-1.0.25)

Updates `com.jraska.module.graph.assertion:plugin` from 2.6.0 to 2.7.1

---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: org.jetbrains.kotlinx:kotlinx-collections-immutable
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: com.google.testparameterinjector:test-parameter-injector
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.animation:animation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.foundation:foundation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.material:material-icons-extended
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.runtime:runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.runtime:runtime-livedata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.ui:ui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.ui:ui-tooling
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.foundation:foundation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.material3:material3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.material3:material3-window-size-class
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.material3:material3-window-size-class
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.material:material-icons-extended
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.runtime:runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.runtime:runtime-livedata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.ui:ui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.activity:activity-compose
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: androidx.lifecycle:lifecycle-viewmodel-compose
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: androidx.compose.ui:ui-tooling
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: androidx.activity:activity-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: org.apache.commons:commons-lang3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
- dependency-name: io.gitlab.arturbosch.detekt:detekt-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: io.gitlab.arturbosch.detekt:detekt-formatting
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: io.gitlab.arturbosch.detekt:detekt-formatting
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: io.nlopez.compose.rules:detekt
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ivy-wallet
- dependency-name: com.jraska.module.graph.assertion:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ivy-wallet
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from ILIYANGERMANOV as a code owner September 9, 2024 00:59
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 9, 2024
@github-actions github-actions bot added the Stale No activity, will be automatically closed soon. label Sep 11, 2024
@github-actions github-actions bot closed this Sep 12, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 12, 2024

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/ivy-wallet-4427581267 branch September 12, 2024 08:04
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code Stale No activity, will be automatically closed soon.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants