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

Update all dependencies #1803

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Update all dependencies #1803

wants to merge 3 commits into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 9, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
gradle (source) patch 8.12 -> 8.12.1 age adoption passing confidence
io.github.takahirom.roborazzi plugin minor 1.39.0 -> 1.40.1 age adoption passing confidence
io.github.takahirom.roborazzi:roborazzi-accessibility-check dependencies minor 1.39.0 -> 1.40.1 age adoption passing confidence
io.github.takahirom.roborazzi:roborazzi dependencies minor 1.39.0 -> 1.40.1 age adoption passing confidence
com.google.protobuf:protoc (source) dependencies patch 4.29.2 -> 4.29.3 age adoption passing confidence
com.google.protobuf:protobuf-kotlin-lite (source) dependencies patch 4.29.2 -> 4.29.3 age adoption passing confidence
com.jraska.module.graph.assertion plugin patch 2.7.1 -> 2.7.3 age adoption passing confidence
org.jetbrains.kotlin.plugin.serialization (source) plugin patch 2.1.0 -> 2.1.10 age adoption passing confidence
org.jetbrains.kotlin.jvm (source) plugin patch 2.1.0 -> 2.1.10 age adoption passing confidence
org.jetbrains.kotlin.plugin.compose (source) plugin patch 2.1.0 -> 2.1.10 age adoption passing confidence
org.jetbrains.kotlin:compose-compiler-gradle-plugin (source) dependencies patch 2.1.0 -> 2.1.10 age adoption passing confidence
org.jetbrains.kotlin:kotlin-test (source) dependencies patch 2.1.0 -> 2.1.10 age adoption passing confidence
org.jetbrains.kotlin:kotlin-stdlib-jdk8 (source) dependencies patch 2.1.0 -> 2.1.10 age adoption passing confidence
com.google.dagger.hilt.android plugin minor 2.54 -> 2.55 age adoption passing confidence
com.google.dagger:hilt-core dependencies minor 2.54 -> 2.55 age adoption passing confidence
com.google.dagger:hilt-compiler dependencies minor 2.54 -> 2.55 age adoption passing confidence
com.google.dagger:hilt-android-testing dependencies minor 2.54 -> 2.55 age adoption passing confidence
com.google.dagger:hilt-android dependencies minor 2.54 -> 2.55 age adoption passing confidence
com.google.firebase:firebase-bom dependencies minor 33.7.0 -> 33.8.0 age adoption passing confidence
com.diffplug.spotless:spotless-plugin-gradle dependencies major 6.25.0 -> 7.0.2 age adoption passing confidence
androidx.datastore:datastore-core (source) dependencies patch 1.1.1 -> 1.1.2 age adoption passing confidence
androidx.datastore:datastore (source) dependencies patch 1.1.1 -> 1.1.2 age adoption passing confidence
androidx.compose.foundation:foundation (source) dependencies patch 1.8.0-alpha07 -> 1.8.0-alpha08 age adoption passing confidence
androidx.compose:compose-bom dependencies major 2024.12.01 -> 2025.01.00 age adoption passing confidence
androidx.activity:activity-compose (source) dependencies minor 1.9.3 -> 1.10.0 age adoption passing confidence
com.android.tools:common (source) dependencies minor 31.7.3 -> 31.8.0 age adoption passing confidence
com.android.tools.lint:lint-tests (source) dependencies minor 31.7.3 -> 31.8.0 age adoption passing confidence
com.android.tools.lint:lint-checks (source) dependencies minor 31.7.3 -> 31.8.0 age adoption passing confidence
com.android.tools.lint:lint-api (source) dependencies minor 31.7.3 -> 31.8.0 age adoption passing confidence
com.android.test (source) plugin minor 8.7.3 -> 8.8.0 age adoption passing confidence
com.android.lint (source) plugin minor 8.7.3 -> 8.8.0 age adoption passing confidence
com.android.library (source) plugin minor 8.7.3 -> 8.8.0 age adoption passing confidence
com.android.application (source) plugin minor 8.7.3 -> 8.8.0 age adoption passing confidence
com.android.tools.build:gradle (source) dependencies minor 8.7.3 -> 8.8.0 age adoption passing confidence

Release Notes

gradle/gradle (gradle)

v8.12.1

Compare Source

takahirom/roborazzi (io.github.takahirom.roborazzi)

v1.40.1

Compare Source

New Feature: Add AiAssertionOptions.AssertionImageType to Support Actual Image Validation

We previously introduced AI Assertion which utilizes a comparison image for assertions. However, we noticed the current implementation struggled with optimal performance due to image size constraints, where sufficient context size is crucial for accurate AI analysis. To address this, we've introduced the AssertionImageType parameter. You can now specify the image type via AiAssertionOptions.

  sealed interface AssertionImageType {
    class Comparison : AssertionImageType
    class Actual : AssertionImageType
  }
Bug Fix: Improved AI Assertion OpenAI API Error Messaging

Previously, API error messages were unclear and unhelpful. We've revamped the error handling to provide meaningful feedback, including proper API status details.

Before:

Fields [object, created, model, choices] are required for type with serial name 'com.github.takahirom.roborazzi.ChatCompletionResponse', but they were missing at path: $
kotlinx.serialization.MissingFieldException: Fields [object, created, model, choices] are required for type with serial name 'com.github.takahirom.roborazzi.ChatCompletionResponse', but they were missing at path: $

After:

Caused by: java.util.concurrent.ExecutionException: com.github.takahirom.roborazzi.AiAssertionApiException: {
    "error": {
        "message": "You didn't provide an API key. You need to provide your API key in an Authorization header using Bearer auth (i.e. Authorization: Bearer YOUR_KEY), or as the password field (with blank username) if you're accessing the API from your browser and are prompted for a username and password. You can obtain an API key from https://platform.openai.com/account/api-keys.",
        "type": "invalid_request_error",
        "param": null,
        "code": null
    }
}
Changes from 1.40.0

We initially introduced AssertionImageType.Reference instead of AssertionImageType.Actual in version 1.40.0. This was a mistake, as it referred to old images, a feature we've determined to be unnecessary. We have corrected this in the current release by using AssertionImageType.Actual.

What's Changed

Full Changelog: takahirom/roborazzi@1.39.0...1.40.1

v1.40.0

Compare Source

Please refer to https://github.com/takahirom/roborazzi/releases/tag/1.40.1

JetBrains/kotlin (org.jetbrains.kotlin.plugin.serialization)

v2.1.10: Kotlin 2.1.10

Changelog

Compiler
  • KT-73858 Compose / iOS: NullPointerException on building
  • KT-73454 K2: Fix type parameters mapping for typealiases with inner RHS
  • KT-73043 K2 Compiler does not allow references to inner constructors with typealiases
  • KT-74040 Compilation of inner class usage does not check the visibility of parent class during compilation in different rounds
  • KT-73339 K2: "VerifyError: Bad type on operand stack" because of missing implicit cast on generic field receiver with star projection
  • KT-72585 K2: Compilation failure when upgrading to Kotlin 2.0.20+: Cannot replace top-level type with star projection: S
  • KT-73399 compile-time JVM codegen failure on a KProperty argument of a KSuspendFunction parameter
  • KT-72725 KMP: Unsupported actualization of inherited java field in expect class
  • KT-73153 K2: Standalone diagnostics on type arguments are not reported
Compose compiler
  • CMP-5680 Compose compiler: unexpected stability warnings for classes compiled with 2.0.10
  • b/381407900 Avoid adding Compose annotations on synthetic classes
IR. Inlining
  • KT-73981 Cherry-pick the fix for KT-73482 to 2.1.10
JavaScript
  • KT-70778 Kotlin Js companion is undefined in production build
  • KT-73130 KJS: Missed break for do/while in generated JS code
  • KT-58797 Optimize the code generated for objects on JS and Wasm backends
Klibs
  • KT-70146 [KLIB Resolve] Don't fail on nonexistent transitive dependency
  • KT-73951 Workaround for "Partial linkage engine may not patch some discrepancies in IR when compiling Kotlin/Native static caches" in 2.1.10
Native
  • KT-73559 K/Native: AndroidNativeArm64 linking fails starting from Kotlin 2.1.0
Tools. CLI
  • KT-73967 JDK 25: "IllegalArgumentException: 25-ea" with EA builds
Tools. Daemon
  • KT-73311 "Unable to release compile session, maybe daemon is already down" flakiness
Tools. Gradle
  • KT-73728 'generatePomFileForMavenPublication' creates pom with dependencies with 'unspecified' version
Tools. Gradle. Multiplatform
  • KT-73620 KMP 2.1.0: Transitive dependency is broken when setting publication groupId
Tools. Gradle. Native
  • KT-73572 [Gradle] kotlin.native.cacheKind=none doesn't work anymore
  • KT-71419 Light bundle KGP IT run against a stable K/N version

Configuration

📅 Schedule: Branch creation - "* 0-3 * * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 8cccfa0 to de04ce8 Compare January 9, 2025 22:12
@SimonMarquis
Copy link
Contributor

Beware, the badging check job in CI failed, but the PR mentions all checks have passed.

@renovate renovate bot force-pushed the renovate/all branch 16 times, most recently from d5a7477 to 53a829b Compare January 18, 2025 01:03
@renovate renovate bot force-pushed the renovate/all branch 10 times, most recently from 5467061 to ab3dcf7 Compare January 20, 2025 15:43
@renovate renovate bot force-pushed the renovate/all branch 26 times, most recently from 0e74837 to faaae7d Compare January 27, 2025 13:18
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