Skip to content

chore(deps): bump the maven group across 1 directory with 21 updates - #4

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/gradle/maven-f2b0993f05
Open

chore(deps): bump the maven group across 1 directory with 21 updates#4
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/gradle/maven-f2b0993f05

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the maven group with 20 updates in the / directory:

Package From To
com.google.auto.value:auto-value-annotations 1.11.0 1.11.1
com.github.bumptech.glide:glide 4.16.0 5.0.9
org.json:json 20250517 20260719
gradle-wrapper 8.13 9.7.0
org.bouncycastle:bcpkix-jdk18on 1.83 1.85
io.github.tutorialsandroid:filepicker 9.2.5 10.1.3
com.google.flatbuffers:flatbuffers-java 23.5.26 25.2.10
androidx.activity:activity 1.12.0 1.13.0
androidx.constraintlayout:constraintlayout 2.2.1 2.2.2
androidx.fragment:fragment 1.8.9 1.9.0
org.projectlombok:lombok 1.18.42 1.18.46
com.squareup.okhttp3:okhttp 5.3.2 5.4.0
dev.rikka.rikkax.material:material 2.7.0 2.7.2
com.google.android.material:material 1.14.0-beta01 1.14.0
androidx.compose:compose-bom 2025.02.00 2026.08.00
androidx.compose.material3:material3 1.4.0-alpha05 1.5.0-alpha26
com.android.application 8.13.2 9.3.1
com.android.library 8.13.2 9.3.1
org.jetbrains.kotlin.android 2.2.21 2.4.10
org.jetbrains.kotlin.plugin.compose 2.2.21 2.4.10

Updates com.google.auto.value:auto-value-annotations from 1.11.0 to 1.11.1

Release notes

Sourced from com.google.auto.value:auto-value-annotations's releases.

AutoValue 1.11.1

  • Fixed a crash with @AutoValue.CopyAnnotations(exclude=Missing.class), where Missing is a class that does not exist.
  • Type-use annotations such as @Nullable are now better preserved in generated builder setter method parameters. Previously they could be lost in some circumstances, for example with @Nullable T.
  • An issue with @Nullable type-use annotations in AutoBuilder has been fixed.
  • Report a diagnostic for setters with boxed primitive types for primitive properties.
  • A bug with AutoBuilder and Kotlin data classes has been fixed. If there was a mix of required and optional parameters in a data class with a large number of properties, sometimes the generated code would not compile.
Commits
  • 4a03588 Set version number for auto-value-parent to 1.11.1.
  • c5c1ae5 Update do-not-publish configuration.
  • 6d41b70 [maven-release-plugin] prepare for next development iteration
  • 74d3d07 [maven-release-plugin] prepare release auto-value-parent-1.11.1
  • 82eb4f8 Bump the dependencies group in /value with 2 updates
  • d09c2d3 Bump the dependencies group in /value with 4 updates
  • 893034b Delete the WeakHashMap recommendation.
  • 4bcb6b9 Bump net.ltgt.gwt.maven:gwt-maven-plugin from 1.1.0 to 1.2.0 in /value in the...
  • 66a26da Slightly reword @​AutoOneOf docs
  • 7e5e3c8 Bump the dependencies group in /value with 2 updates
  • Additional commits viewable in compare view

Updates com.github.bumptech.glide:glide from 4.16.0 to 5.0.9

Release notes

Sourced from com.github.bumptech.glide:glide's releases.

Glide v5.0.9

Removed extra . from version name.

v.5.0.9

What's Changed

Full Changelog: bumptech/glide@v5.0.8...v.5.0.9

Glide v5.0.8

Compose

N/A

KTX

N/A

Build Changes

  • Upgrade Glide build system to Gradle 9.4.1, AGP 8.8.0, and Kotlin/KSP 2.0.20, resolving various build and test compatibility issues.
  • Bump Glide compileSdkVersion to 37 and Robolectric to 4.16.1.
  • Bump Glide minSdkVersion to 23 to match AndroidX requirements.
  • Restore deterministic module sorting in Glide annotation processors to improve build reproducibility (Fixes #5657).
  • Fix Javadoc style issue in setMemoryCategoryInBackground that was breaking Renovate tooling (Fixes #5680).
  • Fix PMD violations in Glide.java and GlideExecutor.java (AccessorMethodGeneration and RedundantFieldInitializer).
  • Fix fragile use of TypeMirror#toString in annotation compiler.
  • Update tests to run on API 24.

Changes

ImageDecoder Support

It should be safer to use Android's ImageDecoder (introduced in Android 9.0 Pie / API 28) with Glide on Android Q (API 29) and above. Please consider trying it out, as ImageDecoder is the now preferred mechanism for decoding images in Android and may yield performance and memory usage benefits.

Several critical issues have been resolved in this release:

  • OOM/ANR Fixes: Fixed potential OutOfMemory (OOM) errors and Application Not Responding (ANR) issues when using ImageDecoder with certain input streams or when ArrayPool buffer allocation was enabled.
  • Unbounded Allocations: Fixed unbounded memory allocations when decoding bitmaps from InputStream source types.
  • Buffer Pooling: Added support for allocating ImageDecoder ByteBuffers via Glide's ArrayPool to avoid double-allocation overhead (enabled via setUseArrayPoolForImageDecoderByteBufferAllocation).
  • Direct Uri Decoding: Direct decoding of Bitmaps from Uris using ImageDecoder is now supported. To enable ImageDecoder in your application, configure the options in your AppGlideModule accordingly:
@GlideModule
public class MyAppGlideModule extends AppGlideModule {
  @Override
  public void applyOptions(@NonNull Context context, @NonNull GlideBuilder builder) {
    // Enable ImageDecoder for Bitmaps (Android Q+)
    builder.setImageDecoderEnabledForBitmaps(true);
// Enable ImageDecoder for Uris (Android Q+)
builder.setUriImageDecoderEnabled(true);

</tr></table>

... (truncated)

Commits
  • b5b428b Bump ktx and compose versions to 1.0.0-beta10, 5.0.9 version, POM dev… (#5721)
  • 93b4f47 Bump ktx and compose versions to 1.0.0-beta09 and release to 5.0.8 (#5720)
  • 3745a4a Support direct memory decoding for byte buffers and arrays without stream wra...
  • 324546e Implement UriBitmapImageDecoderResourceDecoder in Glide to allow direct decod...
  • 6e38ddd No public description
  • b156dd2 none
  • 73ccb25 Update tests to run on API 24.
  • 4868c04 Fix OOMs and ANRs when ArrayPool is enabled in Glide ImageDecoder by rejectin...
  • fcc50dd Fix resource leak in ByteBufferUtil.fromStream by ensuring all buffers obtain...
  • 089b215 Add debug logging for Glide bitmap memory tracking.
  • Additional commits viewable in compare view

Updates org.json:json from 20250517 to 20260719

Release notes

Sourced from org.json:json's releases.

20260719

Pull Request Description
#1069 pre-release-20260719 prep for next release
#1068 Max number length config for BigInteger and BigDecimal
#1067 bound BigDecimal→BigInteger expansion in objectToBigInteger (completes CVE-2026-59171 fix)
#1065 Fixes CVE-2026-59171
#1062 Refactor CDL row serialization for readability
#1061 Restore lenient jsonarray allow consecutive commas and insert null
#1058 Docs and warnings cleanup

20260522

Pull Request Description
#1054 pre-release-20260522 prep for next release
#1053 update security.md with key data
#1046 Validate XML numeric character references before string construction
#1044 Ignore static fields in JSONObject.fromJson()
#1041 Enhance README with license clarification
#1039 Fix XML forceList parsing issue
#1038 Fix input validation in XMLTokener.unescapeEntity()
#1037 Fix ClassCastException in JSONML.toJSONArray and toJSONObject
#1029 add badge to external hosted javadoc
#1028 Refactoring: Fix sonarqube reliability issues
#1027 Save/restore default locale in test

20251224

Pull Request Description
#1021 Add LTS JDK 25 build to github actions
#1020 Record type support
#1017 Refactoring: Fix some SonarQube issues
#1014 Refactoring: String check logic in CDL
#1013 Refactoring: FIx Sonarqube issues in JSONArray
#1011 Refactoring: Fix SonarQube issues in JSONObject
#1009 Fix strict mode check for period after number
#1008 Fixed JSONArray strict mode check for leading comma
#1006 JSONObject.fromJson() with unit tests
#1005 Refactoring: Fix sonarQube issues in JSONObject
#1004 Refactoring: Fix sonarcube issues in JSONObject
#1001 Refactoring: sonarqube issues in JSONObject
#1000 Refactoring: Fix some sonarcube issues from recent commits
#999 fixed some strict mode issues
#995 Fix regression XML parsing null with keepStrings
#994 Add Jacoco option to build, restore method check in populateMap()
#993 Added JUnit tests for XMLTokenerTest
#992 Added JUnit test cases for HTTPTokener
#991 update CodeQL to v3
#990 Refactoring: fix SonarQube issues in populateMap()

... (truncated)

Changelog

Sourced from org.json:json's changelog.

20260719 Fixes CVE-2026-59171 very large BigInteger, BigDecimal

20260522 Publish key data, recent commits for minor fixes

20251224 Records, fromJson(), and recent commits

Commits
  • 1795e8c Merge pull request #1069 from stleary/pre-release-20260719
  • da757c6 pre-release-20260719 oops forgot to update new unit tests for strict mode
  • d24bc9e pre-release-20260719 initial commit
  • 80efb52 Merge pull request #1068 from stleary/max-number-length-config
  • 9953b76 max-number-length-config sonarqube fixes
  • a28328c Merge pull request #1067 from mechko/1063-biginteger-exponent-dos
  • 703ac34 #1063: add JSONParserConfiguration overloads for getBigInteger/optBigInteger
  • e40d933 #1063: add comment to expected-exception catch block (SonarCloud java:S108)
  • fce83c9 #1063: bound BigDecimal->BigInteger expansion in objectToBigInteger
  • 90563eb 1063-option-3 parserConfig set max len
  • Additional commits viewable in compare view

Updates gradle-wrapper from 8.13 to 9.7.0

Release notes

Sourced from gradle-wrapper's releases.

9.7.0

The Gradle team is excited to announce Gradle 9.7.0.

Here are the highlights of this release:

  • Isolated Projects graduates to incubating
  • Broader Configuration Cache compatibility
  • More source locations in problem reports

Read the Release Notes

We would like to thank the following community members for their contributions to this release of Gradle: Adam, Aman Gautam, Aman Kumar, Anton Dubrouski, Aurimas, gbhavya07, Josh Friend, nicklauslittle-gov, Pragati, project516, Qin Mi, Ravi, sk-reddy17, Suvrat Acharya, Yongshun Ye.

Upgrade instructions

Switch your build to use Gradle 9.7.0 by updating your wrapper:

./gradlew :wrapper --gradle-version=9.7.0 && ./gradlew :wrapper

See the Gradle 9.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.

For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines. If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

9.7.0 RC3

The Gradle team is excited to announce Gradle 9.7.0 RC3.

Here are the highlights of this release:

  • Isolated Projects graduates to incubating

... (truncated)

Commits
  • 3defbfc make DistributionIntegrationSpec more permissive for releases (#38766)
  • f176043 make DistributionIntegrationSpec more permissive for releases
  • b0828da Prepare release notes for Gradle 9.7.0GA (#38756)
  • 064b6d6 cleanup
  • dfe7bdc add new training to release notes
  • 7561968 add release notes for 37801
  • 68a1f35 cherrypick 38367 to release
  • a462c95 Rebalance AllVersionsCrossVersion buckets for agents without TestDistribution...
  • 820e2b1 Update Gradle wrapper to version 9.7.0-rc-3 (#38743)
  • 75ea3d7 Update Gradle wrapper to version 9.7.0-rc-3
  • Additional commits viewable in compare view

Updates org.bouncycastle:bcpkix-jdk18on from 1.83 to 1.85

Changelog

Sourced from org.bouncycastle:bcpkix-jdk18on's changelog.

... (truncated)

Commits

Updates io.github.tutorialsandroid:filepicker from 9.2.5 to 10.1.3

Release notes

Sourced from io.github.tutorialsandroid:filepicker's releases.

New Release v10.1.3

Customizing checkbox colors

From v10.1.3, FilePicker supports checkbox color customization through DialogProperties.

This is useful when the default checkbox colors do not match your app theme, or when the unchecked checkbox blends into a white/light background.

import android.graphics.Color;
DialogProperties properties = new DialogProperties();
properties.selection_mode = DialogConfigs.MULTI_MODE;
properties.selection_type = DialogConfigs.DIR_SELECT;
// Checked checkbox fill color
properties.checkbox_checked_color = Color.parseColor("#6750A4");
// Unchecked checkbox outer/background color
properties.checkbox_unchecked_color = Color.parseColor("#6750A4");
// Tick/checkmark color shown when checked
properties.checkbox_checkmark_color = Color.WHITE;
// Inner color shown when unchecked
properties.checkbox_unchecked_inner_color = Color.parseColor("#F3E8FF");
FilePickerDialog dialog = new FilePickerDialog(MainActivity.this, properties);
dialog.setTitle("Select Directory");
dialog.show();

Notes

  • checkbox_checked_color controls the selected checkbox fill color.
  • checkbox_unchecked_color controls the unchecked checkbox outer/background color.
  • checkbox_checkmark_color controls the tick/checkmark color.
  • checkbox_unchecked_inner_color controls the inner unchecked color.
  • If checkbox_checked_color is not set, FilePicker uses the existing R.color.colorAccent fallback.
  • This works for file selection, directory selection, and file + directory selection.

New Release v10.1.2

Changelog

v10.1.2

Added

  • Added file size filtering support using min_file_size and max_file_size.
  • Added support for selecting files below a specific size.

... (truncated)

Commits

Updates com.google.flatbuffers:flatbuffers-java from 23.5.26 to 25.2.10

Release notes

Sourced from com.google.flatbuffers:flatbuffers-java's releases.

v25.2.10

What's Changed

New Contributors

Full Changelog: google/flatbuffers@v25.1.24...v25.2.10

v25.1.24

What's Changed

New Contributors

Full Changelog: google/flatbuffers@v25.1.21...v25.1.24

v25.1.21

What's Changed

... (truncated)

Changelog

Sourced from com.google.flatbuffers:flatbuffers-java's changelog.

[25.2.10] (February 10 2025)(https://github.com/google/flatbuffers/releases/tag/v25.2.10)

[25.1.24] (January 24 2025)(https://github.com/google/flatbuffers/releases/tag/v25.1.24)

  • Mostly related to bazel build support.
  • Min bazel supported is now 7 or higher, as WORKSPACE files are removed (#8509)
  • Minor C++ codegen fix removing extra semicolon (#8488)

[25.1.21] (January 21 2025)(https://github.com/google/flatbuffers/releases/tag/v25.1.21)

[24.3.25] (March 25 2024)(https://github.com/google/flatbuffers/releases/tag/v24.3.25)

  • Fixed license metadata parsing (#8253)
  • [C++] Allow string_view in LookUpByKey in addition to null-terminated c-style strings (#8203)

[24.3.7] (March 7 2024)(https://github.com/google/flatbuffers/releases/tag/v24.3.7)

  • Just to fix some of the CI build issues from the 24.3.6 release.

[24.3.6] (March 6 2024)(https://github.com/google/flatbuffers/releases/tag/v24.3.6)

  • Fix typescript object API to allow 0 values for null-default scalars (#7864)
Commits

Updates androidx.activity:activity from 1.12.0 to 1.13.0

Updates androidx.constraintlayout:constraintlayout from 2.2.1 to 2.2.2

Updates androidx.fragment:fragment from 1.8.9 to 1.9.0

Updates org.projectlombok:lombok from 1.18.42 to 1.18.46

Changelog

Sourced from org.projectlombok:lombok's changelog.

v1.18.46 (April 22nd, 2026)

  • PLATFORM: JDK26 support added #4019.
  • PLATFORM: Spring Tools Suite 5 supported #3985.
  • BUGFIX: @Jacksonized no longer stops generating @JsonProperty once an explicit @JsonIgnore annotations is encountered #4022.
  • BUGFIX: In eclipse, mixing @Jacksonized and fluent = true no longer causes the error com.fasterxml.jackson.annotation.JsonProperty is not a repeatable annotation interface. #3934.
  • BUGFIX: Some finishing touches for v1.18.44's support of Jackson3 #4004.

v1.18.44 (March 11th, 2026)

  • FEATURE: @Jacksonized now supports both Jackson2 and Jackson3; you'll get a warning until you configure which one (or even both!) you want lombok to generate. #3950.
  • BUGFIX: On JDK25, val and @ExtensionMethod could sometimes cause erroneous errors (in that you see errors but compilation succeeds anyway) using javac. #3947.
  • BUGFIX: @Jacksonized + fields marked transient would result in those transient fields being serialised which is surprising (and thus undesired) behaviour. #3936.
Commits
  • 936ca59 [build] lombok's launcher is still intended to be 1.4 compatible, or at least...
  • fcdab3f [version] pre-release version bump
  • 1cb7d49 [changelog]#4004 Mention Jackson3 final touches in changelog.
  • 12a15b0 Fix: Bump EA_JDK to 27 (25 and 26 have been released)
  • 2be766c Merge branch 'jackson3-final-touches'
  • 290fa4c [trivial] constantize the warning we spit out for ambiguous jackson2/3, and m...
  • e6567b6 test: Add Jackson 3 test cases and version ambiguity warnings
  • 45e72e2 feat: Add Jackson 3 databind/dataformat annotations to HandlerUtil copy lists
  • 184d423 feat: Add Jackson 3 support to @​Jacksonized handlers
  • e027ad0 refactored to ShadowClassLoader use Collections::enumeration instead of Vector
  • Additional commits viewable in compare view

Updates com.squareup.okhttp3:okhttp from 5.3.2 to 5.4.0

Changelog

Sourced from com.squareup.okhttp3:okhttp's changelog.

Version 5.4.0

2026-06-08

  • New: Add superpowers to interceptors. Interceptors can now override anything settable on OkHttpClient.Builder, such as the cache, connection pool, socket factory, and DNS. We expect this will allow most users to use interceptors everywhere, insted of mixing and matching interceptors with custom Call.Factory wrappers.
  • Fix: Limit each HTTP/2 response to 256 KiB of total headers.
  • Upgrade: [kotlinx.coroutines 1.11.0][coroutines_1_11_0]. This is used by the optional okhttp-coroutines artifact.
  • Upgrade: [GraalVM 25.0.3][graalvm_25].
  • Upgrade: [Okio 3.17.0][okio_3_17_0].
Commits

Updates dev.rikka.rikkax.material:material from 2.7.0 to 2.7.2

Commits

Updates com.google.android.material:material from 1.14.0-beta01 to 1.14.0

Release notes

Sourced from com.google.android.material:material's releases.

1.14.0

New in 1.14.0!

  • Expressive Themes (doc)
  • Expressive Lists (doc)
  • Expressive Button Styles (doc)
  • Expressive Icon Button Styles (doc)
  • Expressive Button Group Styles (doc)
  • Expressive FAB Styles (doc)
  • Expressive Top App Bar Styles (doc)
  • Expressive Navigation Bar (BottomNavigationView) Styles (doc)
  • Expressive Navigation Rail Styles (doc)
  • Expressive Search Styles (doc)
  • Expressive Progress Indicator Styles (doc)
  • Expressive Slider Styles (doc)
  • Emphasized Typescale (doc)

Important

  • Required minSdkVersion is now 23 or higher, for Material and AndroidX.
  • Library is now built with Android Gradle Plugin (AGP) 8.11.1 and Gradle 8.13.

Dependency Updates

Dependency Previous version New version
androidx.constraintlayout:constraintlayout 2.1.0 2.2.1
androidx.core:core 1.6.0 1.16.0
androidx.customview:customview N/A 1.2.0
com.android.tools.build:gradle 8.7.3 8.11.1

Library Updates

  • AppBar
    • Fixed the bug that setBackground will reset the internal MaterialShapeDrawable for lift-on-scroll feature. (1adc50110ed6491661f89aa535355b1480fac73a)
    • Add support for navigation button with circle background (015e0534e1a6205224097f258102f913832f99ed)
    • Improve keyboard navigation in TopAppBar catalog demos (98a73a61d272d3e38ee87dd4b322f7787c374a9c)
    • Removed special key shortcut and keyboard navigation cluster for top app bar for correct keyboard navigation a11y. (ee52adbf051f744f2345ec5b7f4ab4df3b101d4d)
    • Updated ripple color on actions in M3 toolbar. (3b971c9fe9d6ae9a175d96a448a2e740fa97996f)
  • BottomAppBar
    • Remove special key shortcut and keyboard navigation cluster for bottom app bar for correct keyboard navigation a11y. (5c73d7a9284fb8e8409452bb95751bf70912acfd)
  • BottomNavigationView
    • Fix navigation item layout in non-compact windows (78189012dada1fae4516eaccab7b8f75c481aa73)
  • BottomSheet
    • Deprecated enableEdgeToEdge for bottom sheet dialogs on API 35+. (603f1ef9d5223fc06fa432c4175473eda2138330)
    • Prevent ACTION_DOWN events on the BottomSheetHandleDragView from setting touchingScrollChild to true. (af7f254bf660704368d46e630d34a81c479fa1c7)
    • Fixed keyboard animation on Android 14 (a0b4dfa8769f98851efe97569c900f75eb0d5ef2)
    • Fixed crash when protections are set before setContentView is called (d2119098489f6f6b55d77f2c7966b8ddf16c90ed)
    • Added half-expanded state description for accessibility (95e7b452088d88005982a3f29ec212ef7ee8696d)
    • Added support for androidx.core ProtectionLayout API and update dependency to 1.16 (e7f9f639d2f4a3b9f619ce704df82cbb14e49222)
    • Make handle respond to keyboard input (1ee07687af2c4c84f515e45c1b809d65aeecbbf4)
    • Delete duplicate "Handling insets and fullscreen" section (5e7e8238f7be448af6b4db4b2ad6128737c0bc50)
    • Added support for Nested Scrolling with multiple nested scroll children. (4e4e8f3388beb7e82a87cb67142aa34444a79740)
    • Make behavior_draggableOnNestedScroll public (a67afdff0d207239d0f427a37e44074936db3166)

... (truncated)

Commits
  • 66c334b [Release] Update library version to 1.14.0 stable
  • 12e57b5 [Focus Rings] Add setters and getters for stroke widths and inner inset
  • f4652d6 [NavigationView] Improve focus saving when opening NavigationView
  • 14b9ac9 [Focus Rings] Add setters for outer and inner stroke colors and for refreshin...
  • d6de1da [A11y][BottomSheet] Auto-expand when a focused view is off-screen in non-touc...
  • 41cfb65 [A11y][NavigationView] Request and restore focus when opened and closed in Dr...
  • 8f63e94 [Catalog] Fix lift on scroll glitchiness in All Components demo
  • 80aa0cc [Release] Update library version to 1.14.0-rc01
  • fd44c9d [Button] [SplitButton] Fix inset and optical centering issue for SplitButton ...
  • e6ae416 [SearchView] Make sure IME is hidden when EditText loses focus
  • Additional commits viewable in compare view

Updates androidx.compose:compose-bom from 2025.02.00 to 2026.08.00

Updates androidx.compose.material3:material3 from 1.4.0-alpha05 to 1.5.0-alpha26

Updates androidx.activity:activity-compose from 1.12.0 to 1.13.0

Updates com.android.application from 8.13.2 to 9.3.1

Updates com.android.library from 8.13.2 to 9.3.1

Updates com.android.library from 8.13.2 to 9.3.1

Updates org.jetbrains.kotlin.android from 2.2.21 to 2.4.10

Release notes

Sourced from org.jetbrains.kotlin.android's releases.

Kotlin 2.4.10

Changelog

Backend. Wasm

  • KT-87066 K/Wasm: Not all files are presented in compiler output directory with multimodule-closed-world and incremental compilation

Compiler

  • KT-86939 JVM: IllegalStateException "No value for annotation parameter" when using const val in nested Java annotation array argument
  • KT-83766 K2: Wrong sourcePsi is set for SymbolPsiLiteral in SLC for annotation arguments referencing a const val
  • KT-86728 Reified type inference: expected type not propagated into inline call inside lambda with elvis operator

Compose Compiler

  • b/522127447 Compose Compiler 2.4: classes previously inferred stable now reported runtime/Uncertain

Klibs

  • KT-86501 Native: IrTypeAliasSymbolImpl is already bound. Signature: kotlinx.datetime/Instant|null[0] on iosSimulatorArm64

Tools. CLI

  • KT-86930 Introduce kotlinr in the Kotlin distribution

Tools. Gradle. BCV

  • KT-87223 Gradle, BCV: open version range in kotlinAbiValidationCompatClasspath causes kotlin-build-tools-impl to resolve to 2.4.20-Beta1 instead of 2.4.0

Tools. Gradle. JS

  • KT-87304 jsBrowserTest fails with "exited with errors (exit code: 1)"
  • KT-86057 kotlinUpgradeYarnLock skips lock file regeneration when kotlinNpmInstall is up-to-date, causing kotlinStoreYarnLock to fail

Tools. Gradle. Multiplatform

  • KT-87084 False positive warning for JS and Wasm compilations when CRI is enabled

Tools. Scripts

  • KT-87076 @file:CompilerOptions("-jvm-target", ...) ignored in .main.kts scripts in Kotlin 2.4.0, falling back to JVM target 1.8
  • KT-86352 K2 scripting: FirResolvedTypeRef exception when resolving extension functions from imported scripts

Kotlin 2.4.10-RC2

Changelog

Backend. Wasm

  • KT-87066 K/Wasm: Not all files are presented in compiler output directory with multimodule-closed-world and incremental compilation

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin.android's changelog.

2.4.10

Backend. Wasm

  • KT-87066 K/Wasm: Not all files are presented in compiler output directory with multimodule-closed-world and incremental compilation

Compiler

  • KT-86939 JVM: IllegalStateException "No value for annotation parameter" when using const val in nested Java annotation array argument
  • KT-83766 K2: Wrong sourcePsi is set for SymbolPsiLiteral in SLC for annotation arguments referencing a const val
  • KT-86728 Reified type inference: expected type not propagated into inline call inside lambda with elvis operator

Compose Compiler

  • b/522127447 Compose Compiler 2.4: classes previously inferred stable now reported runtime/Uncertain

Klibs

  • KT-86501 Native: IrTypeAliasSymbolImpl is already bound. Signature: kotlinx.datetime/Instant|null[0] on iosSimulatorArm64

Tools. CLI

  • KT-86930 Introduce kotlinr in the Kotlin distribution

Tools. Gradle. BCV

  • KT-87223 Gradle, BCV: open version range in kotlinAbiValidationCompatClasspath causes kotlin-build-tools-impl to resolve to 2.4.20-Beta1 instead of 2.4.0

Tools. Gradle. JS

  • KT-87304 jsBrowserTest fails with "exited with errors (exit code: 1)"
  • KT-86057 kotlinUpgradeYarnLock skips lock file regeneration when kotlinNpmInstall is up-to-date, causing kotlinStoreYarnLock to fail

Tool...

Description has been truncated

Bumps the maven group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [com.google.auto.value:auto-value-annotations](https://github.com/google/auto) | `1.11.0` | `1.11.1` |
| [com.github.bumptech.glide:glide](https://github.com/bumptech/glide) | `4.16.0` | `5.0.9` |
| [org.json:json](https://github.com/douglascrockford/JSON-java) | `20250517` | `20260719` |
| [gradle-wrapper](https://github.com/gradle/gradle) | `8.13` | `9.7.0` |
| [org.bouncycastle:bcpkix-jdk18on](https://github.com/bcgit/bc-java) | `1.83` | `1.85` |
| [io.github.tutorialsandroid:filepicker](https://github.com/TutorialsAndroid/FilePicker) | `9.2.5` | `10.1.3` |
| [com.google.flatbuffers:flatbuffers-java](https://github.com/google/flatbuffers) | `23.5.26` | `25.2.10` |
| androidx.activity:activity | `1.12.0` | `1.13.0` |
| androidx.constraintlayout:constraintlayout | `2.2.1` | `2.2.2` |
| androidx.fragment:fragment | `1.8.9` | `1.9.0` |
| [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.42` | `1.18.46` |
| [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) | `5.3.2` | `5.4.0` |
| [dev.rikka.rikkax.material:material](https://github.com/RikkaApps/RikkaX) | `2.7.0` | `2.7.2` |
| [com.google.android.material:material](https://github.com/material-components/material-components-android) | `1.14.0-beta01` | `1.14.0` |
| androidx.compose:compose-bom | `2025.02.00` | `2026.08.00` |
| androidx.compose.material3:material3 | `1.4.0-alpha05` | `1.5.0-alpha26` |
| com.android.application | `8.13.2` | `9.3.1` |
| com.android.library | `8.13.2` | `9.3.1` |
| [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) | `2.2.21` | `2.4.10` |
| [org.jetbrains.kotlin.plugin.compose](https://github.com/JetBrains/kotlin) | `2.2.21` | `2.4.10` |



Updates `com.google.auto.value:auto-value-annotations` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/google/auto/releases)
- [Commits](google/auto@auto-value-1.11.0...auto-value-1.11.1)

Updates `com.github.bumptech.glide:glide` from 4.16.0 to 5.0.9
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](bumptech/glide@v4.16.0...v5.0.9)

Updates `org.json:json` from 20250517 to 20260719
- [Release notes](https://github.com/douglascrockford/JSON-java/releases)
- [Changelog](https://github.com/stleary/JSON-java/blob/master/docs/RELEASES.md)
- [Commits](stleary/JSON-java@2025051...2026071)

Updates `gradle-wrapper` from 8.13 to 9.7.0
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](gradle/gradle@v8.13.0...v9.7.0)

Updates `org.bouncycastle:bcpkix-jdk18on` from 1.83 to 1.85
- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)
- [Commits](https://github.com/bcgit/bc-java/commits)

Updates `io.github.tutorialsandroid:filepicker` from 9.2.5 to 10.1.3
- [Release notes](https://github.com/TutorialsAndroid/FilePicker/releases)
- [Commits](https://github.com/TutorialsAndroid/FilePicker/commits/v10.1.3)

Updates `com.google.flatbuffers:flatbuffers-java` from 23.5.26 to 25.2.10
- [Release notes](https://github.com/google/flatbuffers/releases)
- [Changelog](https://github.com/google/flatbuffers/blob/master/CHANGELOG.md)
- [Commits](google/flatbuffers@v23.5.26...v25.2.10)

Updates `androidx.activity:activity` from 1.12.0 to 1.13.0

Updates `androidx.constraintlayout:constraintlayout` from 2.2.1 to 2.2.2

Updates `androidx.fragment:fragment` from 1.8.9 to 1.9.0

Updates `org.projectlombok:lombok` from 1.18.42 to 1.18.46
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.42...v1.18.46)

Updates `com.squareup.okhttp3:okhttp` from 5.3.2 to 5.4.0
- [Changelog](https://github.com/lysine-dev/okhttp/blob/main/CHANGELOG.md)
- [Commits](lysine-dev/okhttp@parent-5.3.2...parent-5.4.0)

Updates `dev.rikka.rikkax.material:material` from 2.7.0 to 2.7.2
- [Commits](https://github.com/RikkaApps/RikkaX/commits)

Updates `com.google.android.material:material` from 1.14.0-beta01 to 1.14.0
- [Release notes](https://github.com/material-components/material-components-android/releases)
- [Commits](material-components/material-components-android@1.14.0-beta01...1.14.0)

Updates `androidx.compose:compose-bom` from 2025.02.00 to 2026.08.00

Updates `androidx.compose.material3:material3` from 1.4.0-alpha05 to 1.5.0-alpha26

Updates `androidx.activity:activity-compose` from 1.12.0 to 1.13.0

Updates `com.android.application` from 8.13.2 to 9.3.1

Updates `com.android.library` from 8.13.2 to 9.3.1

Updates `com.android.library` from 8.13.2 to 9.3.1

Updates `org.jetbrains.kotlin.android` from 2.2.21 to 2.4.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.2.21...v2.4.10)

Updates `org.jetbrains.kotlin.plugin.compose` from 2.2.21 to 2.4.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.2.21...v2.4.10)

Updates `org.jetbrains.kotlin.plugin.compose` from 2.2.21 to 2.4.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.2.21...v2.4.10)

---
updated-dependencies:
- dependency-name: com.google.auto.value:auto-value-annotations
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: com.github.bumptech.glide:glide
  dependency-version: 5.0.9
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: org.json:json
  dependency-version: '20260719'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: gradle-wrapper
  dependency-version: 9.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: org.bouncycastle:bcpkix-jdk18on
  dependency-version: '1.85'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: io.github.tutorialsandroid:filepicker
  dependency-version: 10.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: com.google.flatbuffers:flatbuffers-java
  dependency-version: 25.2.10
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: androidx.activity:activity
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: androidx.constraintlayout:constraintlayout
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: androidx.fragment:fragment
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: org.projectlombok:lombok
  dependency-version: 1.18.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: com.squareup.okhttp3:okhttp
  dependency-version: 5.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: dev.rikka.rikkax.material:material
  dependency-version: 2.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: com.google.android.material:material
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: androidx.compose:compose-bom
  dependency-version: 2026.08.00
  dependency-type: direct:production
  dependency-group: maven
- dependency-name: androidx.compose.material3:material3
  dependency-version: 1.5.0-alpha26
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: androidx.activity:activity-compose
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: com.android.application
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: com.android.library
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: com.android.library
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.android
  dependency-version: 2.4.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-version: 2.4.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-version: 2.4.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Aug 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants