fix(deps): update all-dependencies#70
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
6 times, most recently
from
October 28, 2025 02:13
7774943 to
6b1a891
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
7 times, most recently
from
November 4, 2025 07:16
1e94d2a to
0af3aa4
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
6 times, most recently
from
November 11, 2025 03:15
7b69eba to
d4005dc
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
9 times, most recently
from
November 20, 2025 21:43
dfab69e to
0d12c58
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
2 times, most recently
from
November 26, 2025 16:17
75025ff to
98ed850
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
2 times, most recently
from
December 18, 2025 18:30
c041ec6 to
5d19150
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
from
December 30, 2025 13:04
5d19150 to
9558aa3
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
7 times, most recently
from
January 17, 2026 17:46
4f65a44 to
d04fc02
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
4 times, most recently
from
January 24, 2026 07:51
d57822c to
30ea087
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
8 times, most recently
from
January 30, 2026 12:40
898fcb8 to
a6b2500
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
6 times, most recently
from
February 11, 2026 08:08
281fd42 to
d6d6f6c
Compare
renovate
Bot
force-pushed
the
renovate/all-dependencies
branch
from
February 15, 2026 11:15
d6d6f6c to
7be5886
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.5.0→1.6.02.0.0-beta02→2.0.0-beta036.13.0→6.15.08.47.0→8.49.02.2.4→2.3.02.2.4→2.3.034.15.0→34.16.01.5.0-alpha18→1.5.0-alpha241.5.0-alpha18→1.5.0-alpha242.10.0→2.11.02.10.0→2.11.02.10.0→2.11.02.10.0→2.11.00.5.0→0.5.10.8.0→0.8.0-0.6.x-compat2.3.9→2.3.102.4.0→2.4.102.4.0→2.4.102.4.0→2.4.102.4.0→2.4.102.4.0→2.4.102.4.0→2.4.102.4.0→2.4.102.4.0→2.4.102.4.0→2.4.109.2.1→9.3.09.2.1→9.3.09.2.1→9.3.09.2.1→9.3.09.2.1→9.3.0Release Notes
panpf/zoomimage (io.github.panpf.zoomimage:zoomimage-compose-coil3)
v1.6.0Compare Source
Changes since 1.6.0-beta01:
Dependencies
getsentry/sentry-android-gradle-plugin (io.sentry.android.gradle)
v6.15.0Compare Source
Features
sizeAnalysisextension as stable by removing its@Experimentalannotation (#1361)sentry-opentelemetry-*artifacts are built against specific OpenTelemetry versions. When another dependency management mechanism (most commonly Spring Bootio.spring.dependency-management) forces OpenTelemetry below the version a Sentry integration requires, running against those downgraded versions can causeClassNotFoundException/NoSuchMethodErrorat runtime. The newverifySentryOpenTelemetryVersionstask detects this downgrade and fails the build early with guidance on how to fix it.sentry.verifyOpenTelemetryVersions = falseFixes
Dependencies
v6.14.0Compare Source
Dependencies
getsentry/sentry-java (io.sentry:sentry-bom)
v8.49.0Compare Source
Features
Session Replay: Record segment names (transaction names) (#5763)
Add
io.sentry:sentry-opentelemetry-bomto align Sentry OpenTelemetry modules with tested OpenTelemetry dependencies (#5629)dependencyManagement; explicit imports are applied after Spring Boot's implicit BOMdependencyManagement { imports { mavenBom("io.sentry:sentry-opentelemetry-bom:<sentry-version>") } }implementation(platform("io.sentry:sentry-opentelemetry-bom:<sentry-version>"))<dependencyManagement>block, or in the child POM when usingspring-boot-starter-parentFixes
buffermode (#5753)buffermode (#5754)tracePropagationTargetswhen injecting Sentry tracing headers through the OpenTelemetry OTLP propagator (#5656)Performance
Timerthread per transaction (#5670)Dependencies
which may downgrade the OpenTelemetry SDK, please have a look at the changelog entry above that explains how to use
sentry-opentelemetry-bom.v8.48.0Compare Source
Features
Add
Sentry.extendAppStart(),Sentry.finishExtendedAppStart(), andSentry.getExtendedAppStartSpan()to extend the app start measurement past the first frame for extra launch-time work on Android (#5604)options.isEnableStandaloneAppStartTracing). CallextendAppStart()inApplication.onCreateafter SDK init andfinishExtendedAppStart()when done:Add
trace_metric_bytedata category and record byte-level client reports when trace metrics are discarded (#5626)Expose sentry-native's heartbeat-based app-hang detection through
SentryAndroidOptions(#5623)setEnableNdkAppHangTracking(true)(disabled by default) and tune the timeout withsetNdkAppHangTimeoutIntervalMillis(...)(default5000ms), or theio.sentry.ndk.app-hang.enable/io.sentry.ndk.app-hang.timeout-interval-millismanifest entriessentry_app_hang_heartbeat()from the thread you want monitored. Independent of the JVM-based ANR detection (setAnrEnabled)Support the
io.sentry.tombstone.report-historicalmanifest option to enable historical tombstone reporting viaAndroidManifest.xml<meta-data>(#5683)Fixes
NoSuchMethodErrorfrom usingMath.floorDiv/Math.floorModoverloads that are unavailable on Java 8 (#5743)SentryDeviceInfoCacheso all threads spawned by the SDK are identifiable (#5684)Performance
Hintallocation inScope.addBreadcrumbwhen nobeforeBreadcrumbcallback is set (#5689)Thread.getName()name scan on every scope mutation (#5691)SentryExecutorServicequeued the prewarm work ahead of the first useful task, so it could only delay init work, never speed it up; the thread and class loading it warmed are paid identically by the first real task submitted right after.Dependencies
Kotlin/kotlinx.collections.immutable (org.jetbrains.kotlinx:kotlinx-collections-immutable)
v0.5.1PersistentOrderedMapBuilderreturning a previously built map frombuild()after updating an entry value throughMutableMap.MutableEntry.setValue#253, #274PersistentOrderedSetBuilder.build()after interleavedbuildandremove/removeAllcalls #251kotlinx.collections.immutablecompiled intoMETA-INF/versions/9, the artifact stays Java 8-compatible #268google/ksp (com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin)
v2.3.10Compare Source
What's Changed
KSTypeImplto speed up processing (#2896)@JvmRecord(#2813)kotlinx.coroutinesin the distributed uber jarsymbol-processing-aa-embeddable(#2938)ksp(...)Gradle configuration in Kotlin Multiplatform (KMP) projects in favor of target-specific configurations (#2956). Note: Non-KMP projects are also affected. For migration details, see the documentation.Contributors
Full Changelog: google/ksp@2.3.9...2.3.10
JetBrains/kotlin (org.jetbrains.kotlin.native.cocoapods)
v2.4.10: Kotlin 2.4.10Changelog
Backend. Wasm
KT-87066K/Wasm: Not all files are presented in compiler output directory with multimodule-closed-world and incremental compilationCompiler
KT-86939JVM: IllegalStateException "No value for annotation parameter" when using const val in nested Java annotation array argumentKT-83766K2: Wrong sourcePsi is set forSymbolPsiLiteralin SLC for annotation arguments referencing a const valKT-86728Reified type inference: expected type not propagated into inline call inside lambda with elvis operatorCompose Compiler
b/522127447Compose Compiler 2.4: classes previously inferredstablenow reportedruntime/UncertainKlibs
KT-86501Native: IrTypeAliasSymbolImpl is already bound. Signature: kotlinx.datetime/Instant|null[0] on iosSimulatorArm64Tools. CLI
KT-86930Introducekotlinrin the Kotlin distributionTools. Gradle. BCV
KT-87223Gradle, BCV: open version range in kotlinAbiValidationCompatClasspath causes kotlin-build-tools-impl to resolve to 2.4.20-Beta1 instead of 2.4.0Tools. Gradle. JS
KT-87304jsBrowserTest fails with "exited with errors (exit code: 1)"KT-86057kotlinUpgradeYarnLock skips lock file regeneration when kotlinNpmInstall is up-to-date, causing kotlinStoreYarnLock to failTools. Gradle. Multiplatform
KT-87084False positive warning for JS and Wasm compilations when CRI is enabledTools. Scripts
KT-87076@file:CompilerOptions("-jvm-target", ...) ignored in .main.kts scripts in Kotlin 2.4.0, falling back to JVM target 1.8KT-86352K2 scripting: FirResolvedTypeRef exception when resolving extension functions from imported scriptsConfiguration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.