Skip to content

chore(deps): update all non-major dependencies#19

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#19
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 24, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
audioplayers (source) dependencies minor ^6.5.16.6.0 age confidence
cupertino_icons (source) dependencies patch ^1.0.81.0.9 age confidence
dart (source) minor >=3.10.0 <4.0.03.11.4 age confidence
dio dependencies patch ^5.9.05.9.2 age confidence
firebase_auth (source) dependencies minor ^6.1.26.3.0 age confidence
firebase_core (source) dependencies minor ^4.2.14.6.0 age confidence
fl_chart (source) dependencies minor ^1.1.11.2.0 age confidence
gradle (source) minor 9.2.19.4.1 age confidence
logger dependencies minor ^2.6.22.7.0 age confidence
mobile_scanner dependencies minor ^7.1.37.2.0 age confidence
org.jetbrains.kotlin.android (source) plugin minor 2.2.212.3.20 age confidence
com.google.firebase:firebase-bom dependencies minor 34.6.034.11.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

bluefireteam/audioplayers (audioplayers)

v6.6.0

Compare Source

  • PERF: Option to set PlayerMode for AudioPools (#​1963). (a97caa12)
  • FIX(android): FileNotFoundException after application cache got cleared (#​1922). (0e3bca2b)
  • FEAT: Async swift code, align release functionality, align Android initialization error (#​1964). (65c8f373)
flutter/packages (cupertino_icons)

v1.0.9

Compare Source

  • Removes empty Dart file.
  • Updates minimum supported SDK version to Flutter 3.35/Dart 3.9.
dart-lang/sdk (dart)

v3.11.4

Compare Source

v3.11.3

Compare Source

v3.11.2

Compare Source

v3.11.1

Compare Source

v3.11.0

Compare Source

Released on: Unreleased

Language

There are no language changes in this release.

Libraries
dart:io
  • Added support for Unix domain sockets (AF_UNIX) on Windows. Support is
    restricted to the subset of features supported by the OS. Windows currently
    does not support the following features for AF_UNIX sockets: datagram
    sockets, ancillary data or abstract socket addresses. Unix domain sockets are
    represented in the file-system using reparse points which leads to some
    discrepancies in the behavior of dart:io APIs: for example
    File(socketPath).existsSync() will return true on POSIX operating systems,
    but false on Windows. Use FileSystemEntity.typeSync() instead to get
    portable behavior.
dart:js_interop
  • Added a constructor to JSSymbol, as well as JSSymbol.key,
    JSSymbol.description, and static methods for all well-known ECMAScript
    symbols.
dart:js_util
  • dart2wasm no longer supports dart:js_util. Any code that imports
    dart:js_util will no longer compile with dart2wasm. Consequently, code that
    depends on package:js will no longer compile with dart2wasm either. The name
    dart.library.js_util is no longer a key in dart2wasm compilation
    environments, including in conditional imports and exports.
    See #​61550 for more details.
Tools
Analyzer
  • The Insights pages (aka the "Analysis Server Diagnostics" pages) now show
    data regarding the "Message Scheduler."
  • The "Fix all in workspace" command now supports a progress indicator.
  • Analysis via analyzer plugins is now faster on subsequent runs, as the
    analysis server will now re-use an existing AOT snapshot of the plugins
    entrypoint. This saves a constant amount of time at the start of each IDE
    session and dart analyze run, on the order of 10 seconds.
  • Various fixes are made for the call method on a Function object, like "go
    to definition," and completion.
  • Various fixes are made for the error and stackTrace parameters of
    try/catch statements.
  • Various fixes are made for syntax highlighting, navigation, code completion,
    hovers, quick fixes, assists, "rename" refactoring, and "go to imports."
  • Various fixes for IDE features with regards to "Dot Shorthand" syntax.
  • Improvements to LSP format-on-type, to not format in undesirable cases.
  • Various performance improvements.
  • Fixes to the 'Extract Widget' refactoring.
  • (Thanks @​FMorschel and
    @​DanTup for many of the above enhancements!)
  • A new lint rule is offered: simplify_variable_pattern, which encourages
    using the pattern shorthand for variables and property names of the same
    name.
  • The avoid_null_checks_in_equality_operators lint rule is now deprecated.
  • The prefer_final_parameters lint rule is now deprecated.
  • The use_if_null_to_convert_nulls_to_bools lint rule is now deprecated.
Dart Development Compiler (dartdevc)
  • The async timing of the Future returned by deferred_prefix.loadLibrary()
    is now consistent regardless if proper deferred imports are supported in the
    runtime environment or not. This makes the timing more consistent with dart2js
    where the loads are always an async operation.
Pub
  • "Glob" support for pub workspaces.

    Now to include all packages inside pkgs/ in the workspace, simply write:

    workspace:
      - pkgs/*

    Supported if the Dart SDK constraint of the containing package is 3.11.0 or
    higher.

  • New commmand dart pub cache gc for reclaiming disk space from your pub
    cache.

    It works by removing packages from your pub cache that are not referenced by
    any of your current projects.

  • New flag dart pub publish --dry-run --ignore-warnings

    Given this flag, dart pub publish --dry-run will only exit non-zero if your
    project validation has errors.

v3.10.9

Compare Source

Released on: 2026-02-03

This is a patch release that:

  • Fixes a bug that allowed users to access private declarations in other
    libraries with dot shorthands. (issue dart-lang/sdk#62504)

v3.10.8

Compare Source

Released on: 2026-01-27

This is a patch release that:

  • Removes code completion of private declarations in other libraries for dot
    shorthands. (issue dart-lang/sdk#62416)

v3.10.7

Compare Source

Released on: 2025-12-23

This is a patch release that:

v3.10.6

Compare Source

Released on: 2025-12-16

This is a patch release that:

v3.10.5

Compare Source

Released on: 2025-12-16

This is a patch release that:

  • Fixes several issues with elements that are deprecated with one of the new
    "deprecated functionality" annotations, like @Deprecated.implement. This
    fix directs IDEs to not display such elements (like the RegExp class) as
    fully deprecated (for example, with struck-through text). (issue
    dart-lang/sdk#62013)
  • Fixes code completion for dot shorthands in enum constant arguments. (issue
    dart-lang/sdk#62168)
  • Fixes code completion for dot shorthands and the != operator. (issue
    dart-lang/sdk#62216)

v3.10.4

Compare Source

Released on: 2025-12-09

This is a patch release that:

  • Fixes an issue with dart run not working and simply exiting with
    Process::Exec - (null) under GitBash on Windows.
    (issue dart-lang/sdk#61981)

v3.10.3

Compare Source

Released on: 2025-12-02

This is a patch release that:

  • Fixes an issue with the color picker not working with dot shorthands. (issue
    Dart-Code/Dart-Code#61978)
  • Enables hiding Running build hooks in dart run with --verbosity=error.
    (issue dart-lang/sdk#61996)
  • Fixes an issue with test_with_coverage and build hooks in dev depencencies.
    (issue dart-lang/tools#2237)
  • Fixes an issue where a crash could occur when evaluating expressions
    after a recompilation (issue flutter/flutter#178740).
  • Fixes watching of directory moves on MacOS dart-lang/sdk#62136.
  • Fixes an issue with the analyzer not emitting an error when using a dot
    shorthand with type arguments on a factory constructor in an abstract class.
    (issue dart-lang/sdk#61978)

v3.10.2

Compare Source

Released on: 2025-11-25

This is a patch release that:

  • Fixes an issue with code completion for argument lists in a dot shorthand
    invocation, as well as an issue with renaming dot shorthands.
    (issue dart-lang/sdk#61969)
  • Fixes an issue in dart2wasm that causes the compiler to crash for switch
    statements that contain int cases and a null case.
    (issue dart-lang/sdk#62022)
  • Fixes an issue with renaming fields/parameters on dot shorthand
    constructor invocations.
    (issue dart-lang/sdk#62036)

v3.10.1

Compare Source

Released on: 2025-11-18

This is a patch release that:

  • Fixes an issue with dot shorthand code completion for the == operator,
    FutureOr types, switch expressions, and switch statements.
    (issue dart-lang/sdk#61872).
  • Fixes an issue with the analyzer not reporting an error when invoking an
    instance method with a dot shorthand. (issue dart-lang/sdk#61954).
  • Fixes a crash with the ExitDetector in the analyzer missing a few visitor
    methods for dot shorthand AST nodes. (issue dart-lang/sdk#61963)
  • Fixes an analyzer crash that would sometimes occur when the
    prefer_const_constructors lint was enabled (issue dart-lang/sdk#61953).
  • Updates dartdoc dependency to dartdoc 9.0.0 which fixes dartdoc rendering of
    @Deprecated.extend() and the other new deprecated annotations.
cfug/dio (dio)

v5.9.2: dio 5.9.2

Compare Source

What's new

  • Fixes kIsWeb across different Flutter SDKs.
  • Provides httpVersion in Response.extra when using IOHttpClientAdapter.

v5.9.1: dio 5.9.1

Compare Source

What's new
  • Add requestUrl and responseUrl parameters to LogInterceptor for more precise control over URL logging.
firebase/flutterfire (firebase_auth)

v6.3.0

Compare Source

  • FIX(auth): fix inconsistence in casing in the native iOS SDK and Web SDK (#​18086). (60b5cd5c)
  • FIX(auth,ios): fix crash that could happen when reloading currentUser informations (#​18065). (6e6f6546)
  • FIX(auth,windows): add pluginregistry to properly restore state on Windows (#​18049). (8d715a77)
  • FEAT(ios): migrate iOS to UIScene lifecycle (#​18054). (3ffa4110)
  • DOCS(auth): add documentation about errors code when Email Enumeration Protection is activated (#​18084). (476ba53f)

v6.2.0

Compare Source

v6.1.4

Compare Source

  • Update a dependency to the latest release.

v6.1.3

Compare Source

  • Update a dependency to the latest release.
firebase/flutterfire (firebase_core)

v4.6.0

Compare Source

  • FIX(remote_config,windows): release mode wasn't linking properly for windows (#​18073). (ea1f309a)
  • FIX(core): bump Firebase C++ SDK to 13.5.0 (CMake deprecation fix) (#​18071). (3afd4101)
  • FIX(auth,windows): add pluginregistry to properly restore state on Windows (#​18049). (8d715a77)
  • FEAT(database,windows): add support for Realtime Database to windows (#​18079). (007689f9)
  • FEAT(ios): migrate iOS to UIScene lifecycle (#​18054). (3ffa4110)

v4.5.0

Compare Source

v4.4.0

Compare Source

v4.3.0

Compare Source

imaNNeo/fl_chart (fl_chart)

v1.2.0

Compare Source

gradle/gradle (gradle)

v9.4.1

Compare Source

v9.4.0

Compare Source

v9.3.1: 9.3.1

Compare Source

This is a patch release for 9.3.0. We recommend using 9.3.1 instead of 9.3.0.

The following issues were resolved:

Read the Release Notes

Upgrade instructions

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

./gradlew wrapper --gradle-version=9.3.1 && ./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.

v9.3.0

Compare Source

SourceHorizon/logger (logger)

v2.7.0

Compare Source

juliansteenbakker/mobile_scanner (mobile_scanner)

v7.2.0

Compare Source

Highlights

  • Added support for switching between lens types (normal, wide, zoom) using the switchCamera() method with ToggleLensType or SelectCamera options.
  • Added rawDecodedBytes field to Barcode which replaces Barcode.rawBytes. On Apple platforms, this returns a DecodedVisionBarcodeBytes containing bytes (decoded payload, without header/padding) and rawBytes (full raw payload, available on iOS 17.0+ / macOS 14.0+). On Android and web, this returns a DecodedBarcodeBytes containing bytes.

Improvements

  • [Android] Migrated barcode bounding box from boundingBox to cornerPoints for more accurate scan window detection.
  • Added support for ITF-Two-of-Five.
  • Added constants for testing the method channel methods in MobileScannerMethods and MobileScannerEvents.
  • The global method calculateBoxFitRatio() is now deprecated.

Bug Fixes

  • [Android] Fixed incorrect texture size on orientation change.
  • [Android] Fixed a bug where the isPaused flag was not reset when start() was called.
  • [Android] Fixed imageAnalysis not being unbound on dispose.
  • [Android] Fixed an issue where the app orientation handling was not respecting auto-rotate settings
  • [Apple] Fixed rawBytes returning incorrect data for barcodes containing non-ASCII characters (e.g. ø). For QR codes, bytes are now extracted directly from the error-corrected bit stream via CIQRCodeDescriptor, bypassing the Vision string API entirely. For Aztec, DataMatrix, PDF417 and linear formats, the ISO-Latin-1 round-trip is used to recover the original bytes from payloadStringValue.
  • [Apple] Fixed displayValue returning a garbled Latin-1 string (e.g. hellø) for barcodes with non-ASCII UTF-8 content. It is now correctly decoded to UTF-8 (e.g. hellø).
  • [Apple] Fixed a bug where the barcode type results did not have a value.
  • [Apple] Fixed camera rotating, even when rotation is locked.
  • [macOS] Fixed barcode overlay text displaying upside down.
  • Fixed barcode overlay rendering at wrong position after orientation change.
  • Fixed a bug where taps were ignored on the scanner widget.
  • Fixed a bug where a controller that was only disposed would throw an incorrect error code.
7.1.4
  • [Apple] Fixed crash on iPhone 17 when starting MobileScanner by checking available pixel formats before setting video output settings. (#​1578)
7.1.3
  • Overlay: Updated BarcodePainter to receive deviceOrientation and dynamically adjust cameraPreviewSize, fixing barcode overlay misalignment during device rotation changes .

  • [Android] Refactored orientation detection to use OrientationEventListener instead of BroadcastReceiver for ACTION_CONFIGURATION_CHANGED, ensuring physical device orientation is captured correctly and preventing unwanted screen rotations on MobileScanner initialization .

  • [Android] Changed minSDK from 21 to 23 in line with Flutter requirements.

  • [Android] Removed deprecated renderscript api's, improved performance for analysis.

  • [Apple] Prevent half-stopped camera state causing false ALREADY_STARTED.

  • [Apple] Fixed a bug where invalid images would cause crashes when processing them with CoreVideo.

v7.1.4

Compare Source

  • [Apple] Fixed crash on iPhone 17 when starting MobileScanner by checking available pixel formats before setting video output settings. (#​1578)
JetBrains/kotlin (org.jetbrains.kotlin.android)

v2.3.20: Kotlin 2.3.20

Changelog

Analysis API. FIR
New Features
  • KT-78090 Implement stubs support for new conditional returns and holdsIn contracts
Fixes
  • KT-82948 'FirRegularClass' expected as a containing declaration, got 'FirTypeAliasImpl'
  • KT-83467 Package-level JSpecify annotations are ignored when coming from jars or libraries
  • KT-82057 K2. Cannot infer type parameter 'R' in Ktor routing post() function with explicit response type
  • KT-82846 AA: unresolved KtExpression.expressionType for the reference to the parameter with default value
  • KT-80485 False positive UNRESOLVED_REFERENCE on nested interface from super-super class in the super type position inside an anonymous object
  • KT-82772 Flaky false positive deprecation warning on PersistentMap.put in Kotlin repo in IDE mode
  • KT-76487 StdLibSourcesLazyDeclarationResolveTestGenerated.testWrappedInt is unstable
  • KT-82618 Various tests are failing with NPE in kt-master after updating the compiler on 19.11.25
  • KT-82076 Error querying members of JavaClass created for SymbolLightClassForAnnotationClass during library analysis
  • KT-71596 Include Js/Wasi checkers in AbstractLLFirDiagnosticsCollector
  • KT-82085 No OUTER_CLASS_ARGUMENTS_REQUIRED on type parameter bound in IDE
  • KT-81873 Provide a way of including traces in phase JFR events
  • KT-71929 Consider leaving the non-post-compute version at EnhancementSymbolsCache.enhancedFunctions
Analysis API. Infrastructure
  • KT-83173 Analysis API Tests: Library names with RC versions aren't sanitised
  • KT-65140 LL FIR: Implement AbstractFirPsiJsDiagnosticTest for LL FIR
  • KT-82212 [Analysis API, LL FIR] Implement AbstractDiagnosticsFirWasmTest and AbstractDiagnosticsFirWasmWasiTest for LL FIR
Analysis API. Light Classes
  • KT-82227 Value classes should expose regular static methods
Analysis API. PSI
  • KT-81710 'KtTypeReference.getTypeText' does not account for 'suspend' modifier on suspend lambdas
  • KT-82258 Prepare PSI for migration from context receivers to context parameters
  • KT-81074 KDoc: List rendering is broken
Analysis API. Providers and Caches
  • KT-82449 K2 IDE Analysis Freezes During Gradle Sync (Recursive Module Dependency Computation in KotlinModuleDependentsProviderBase.computeTransitiveDependents)
  • KT-82629 'collectDiagnostics' returns stale syntax error after editor fix
  • KT-74907 Analysis API: Apply platform-based library module content restrictions consistently
Analysis API. Standalone
  • KT-81107 AA: KtSourceModuleBuilder.sourceRoots doesn't works with symbolic links
Analysis API. Stubs and Decompilation
  • KT-82792 Stub for KtValueArgumentList inside KtAnnotationEntry should be present if it is present in psi
  • KT-82527 TypeClsStubBuilder.createFunctionTypeStub throws NullPointerException
  • KT-82558 Deserialized DNN type should have a fully qualified Any
  • KT-81928 KaArrayAnnotationValueImpl.values missing first element
  • KT-82139 Support contracts for property accessors
  • KT-82198 Support context parameters in contracts
Analysis API. Surface
New Features
  • KT-82851 Property accessors should inherit KDoc from the parent property
  • KT-63339 Analysis API: Provide a way to extract KDoc for symbols
  • KT-79070 KaTypeProvider: add API to build a default type with star projections
  • KT-66566 AA: api to create functional types
  • KT-66043 KtTypeCreator doesn't provide a way for creating annotated types
Performance Improvements
  • KT-83694 Provide psi-based implementation of KaDeclarationSymbol#isExternal
  • KT-70868 KaSymbol: support PSI-only visibility and modality for the case without compiler plugins
  • KT-81627 KaFirSymbolDeclarationOverridesProvider#processOverrides should process only relevant declarations
Fixes
  • KT-83152 [Analysis API, KDoc] Make class name links on constructors point to the class
  • KT-83695 Deprecate KaSymbolInformationProvider#{getter, setter}DeprecationStatus
  • KT-82853 Add a convenience property for testing declarations for effective external-ness
  • KT-83226 Support "Collection literals" in the Analysis API
  • KT-83225 Support "@IntroduceAt" in the Analysis API
  • KT-83222 Support "Improve use-site defaulting for annotations" in the Analysis API
  • KT-83351 Rename KaSession context parameter from 's' in bridges to something nicer
  • KT-83199 Clarify API around extension points
  • KT-83074 Inner enum entry class has incorrect default visibility
  • KT-82442 Add Ka prefix to org.jetbrains.kotlin.analysis.api.symbols.AdditionalKDocResolutionProvider
  • KT-82443 Add Ka prefix to org.jetbrains.kotlin.analysis.api.symbols.DebugSymbolRenderer
  • KT-82441 Add Ka prefix to org.jetbrains.kotlin.analysis.api.compile.CodeFragmentCapturedValue
  • KT-82439 Add Ka prefix to org.jetbrains.kotlin.analysis.api.components.DebuggerExtension
  • KT-82438 Add Ka prefix to org.jetbrains.kotlin.analysis.api.components.DefaultTypeClassIds
  • KT-68577 asPsiType and mapTypeToJvmType: leading delimiter for class in a root package
  • KT-81734 MIssing "ARGUMENT_TYPE_MISMATCH" caused by self-referential generic type
  • KT-82856 Redesign KotlinReferenceProviderContributor to make it extensible
  • KT-82615 Clarify KtReference#resolvesByNames contract
  • KT-82534 No expected type for property accessor without body
  • KT-82406 Add a test to ensure that all top-level classes in the Analysis API Surface have Ka prefix
  • KT-78397 investigate if there is a need in Extra support for the "various little features in contracts"
  • KT-74009 Analysis API: Expose "isOverloadable" check for callable symbols similar to "OverloadChecker.isOverloadable"
  • KT-78399 Check return value - check how we see from Java(+Stub) we see “annotated” signatures
  • KT-80357 [Analysis API] KaType.enhancedType doesn't enhance type parameters
  • KT-73659 Analysis API: The name of KaType.enhancedType is too general
  • KT-80545 [Analysis API] Deprecate KaFunctionType.arity
  • KT-77708 K2 Mode: Potentially redundant smart cast highlighing when passing smartcasted expressions as arguments
  • KT-81264 K2 AA: KaValueParameterSymbol.hasDefaultValue is false for overriding or actual functions
  • KT-81166 Forbid the usage of KaSessionComponent implementation types directly
  • KT-74801 Analysis API: Publish/subscribe to modification events with a single message bus topic
Backend. Native. Debug
  • KT-81741 Native: stepping into data class hashCode in lldb goes to line 1
Backend. Wasm
New Features
  • KT-81485 [Wasm] DebuggerCustomFormatters generation support for single module mode
  • KT-81483 [Wasm] Typescript generation support for single module mode
  • KT-81484 [Wasm] Dwarf generation support for single module mode
Performance Improvements
  • KT-83839 K/Wasm: CMP. Load time on Safari significantly increased with Kotlin = 2.3.20-Beta1
  • KT-81524 Unnecessary Any-JsAny conversions are generated for external instanceofs
Fixes
  • KT-82732 K/Wasm runtime crash when using fun reference: convertKotlinClosureToJsClosure
  • KT-82649 K/Wasm: Rewrite StringBuilder to use JsString
  • KT-73240 K/Wasm: consider using JS String Builtins proposal in String implementation for wasm-js target
  • KT-83995 K/Wasm: 2.3.0 -> 2.3.20-Beta1 degradation in arrow tests
  • KT-82309 K/Wasm: refactor _initialize function
  • KT-70075 Wasm: "OutOfMemoryError: GC overhead limit exceeded" during tests
  • KT-83046 K/Wasm: don't use StringBuilder implicitly for string concatenations
  • KT-82645 K/Wasm: wasmJs use js "String" for number2String conversion
  • KT-79937 K/Wasm: support kotlin.js.nativeInvoke annotation
  • KT-67461 Use new lowering phase creation API in Wasm backend
  • KT-83664 Wasm: Colon and space are not sanitized in output file names
  • KT-65779 JsExport declaration name clash
  • KT-82202 [Wasm] SourceMap generation support for single module mode
  • KT-82162 [Wasm] Run single module tests with standalone vm's
  • KT-81325 [Wasm] Remove string pool initialiser dependent code
  • KT-73238 K/Wasm: stop using linear memory inside our code
  • KT-83025 Wasm: Compose application is not loading
  • KT-73239 K/Wasm: use JS String Builtins proposal to transfer strings to and from JS
  • KT-83194 K/Wasm: create WasmIR test infrastructure
  • KT-65234 K/Wasm Ensure that fp operations are aligned with other b-ends
  • KT-81856 K/JS/Wasm interop: external instanceofs do not link in singleModule mode
  • KT-81610 [Wasm] Add CLI test for performance metrics for klibs->binary scenario
  • KT-81550 Incorrect generation of .wat files
  • KT-71533 K/Wasm + K2: no error on KClass::qualifiedName usages
Compiler
New Features
  • KT-75736 Enable reading/writing annotations in metadata on JVM by default
  • KT-79330 Implement the first version of inference for Collection Literals
  • KT-83401 Collection literals: support different types of expected types for CL
  • KT-55548 JSR-305: Overload resolution ambiguity: Platform Types vs Kotlin Types
  • KT-74860 Support Unit coercion (incl. fun refs) in unused return value checker
  • KT-13968 Support vertx nullable annotation
  • KT-79656 Use org.jetbrains.annotations.UnmodifiableView and/or org.jetbrains.annotations.Unmodifiable to infer read-only types for Java entities
  • KT-81684 Implement explicit passing of context arguments using named syntax [TEST_ONLY]
  • KT-80492 Checkers for operator of
  • KT-82638 Collection literals: resolve to factory functions for standard library classes
  • KT-82467 Improve binary and JVM compatibility by generating bridges for abstract interface methods
  • KT-82655 Bridges generated for non-fake overrides shall include annotations from target methods
  • KT-74223 Move Kotlin/Native TestProcessor phase to the first phase
  • KT-27090 Support contracts in getter and setter for top-level extension properties
  • KT-74809 Support unnamed local variables
  • KT-45683 Allow generics in contract type assertions
Performance Improvements
  • KT-81974 Do not eagerly initialize reflection for KProperty objects for delegated properties
  • KT-83697 Native: increased bitcode produced with enabled safe casts
  • KT-83036 Native: too many casts emitted with -Xgeneric-safe-casts=true
  • KT-80061 Compiler (or IDEA) hangs due to importing large Kotlin reflect functions (e.g. KFunction999999999)
  • KT-68592 Investigate performance implications of enabling -Xjvm-default for ir.tree module
  • KT-73687 Inefficient KtCommonFile#getFileAnnotationList
  • KT-71673 Consider making EnhancementSymbolsCache. enhancedFunctions using simple cache
Fixes
  • KT-84773 Annotations not persisted in IR for internal external functions
  • KT-78783 K2: absence of warning for KTLC-284 migration
  • KT-81553 INITIALIZER_TYPE_MISMATCH and ASSIGNMENT_TYPE_MISMATCH is reported on the entire initializer
  • KT-83395 Kotlin/Native 2.3.0 iOS release framework fails with Invalid LLVM module (PHI node type mismatch)
  • KT-84620 Incorrect optimization of property delegation
  • KT-81567 Add a use-site warning if a @DslMarker-marked annotation is used on entities where it is a no-op
  • KT-81700 flaky overload resolution behaviors (false-positive errors, different final candidates, compile-time failures)
  • KT-83372 compileDebugKotlinAndroid hangs in 2.3.0 with SQLDelight
  • KT-82579 Update specificity rule for context parameters
  • KT-83590 Some explicit backing fields must still be considered private-to-this
  • KT-83849 False-positive NULLABILITY_MISMATCH_BASED_ON_JAVA_ANNOTATIONS for Optional.orElse(null) call
  • KT-84192 "Member overrides different '@Throws' filter from" caused by overriding in different module
  • KT-72994 K2: Remove resolution to context receivers
  • KT-80247 No diagnostic on unresolved type annotation from a dependency in an inferred type
  • KT-78730 Move more LLVM-agnostic code to compiler/ir/backend.native or compiler/ir/backend.common
  • KT-74051 Add a Continuation for tail-call suspend functions
  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83317 ClassCastException: with cast kotlin.UInt to java.lang.Number when defining constant
  • KT-83031 K2: unstable resolution of EnhancedNullability from type-use NotNull in presence of unused code
  • KT-83824 Delegated property in Gradle DSL fails to compile
  • KT-83657 [K/N] Pre-codegen inline produces invalid bitcode
  • KT-81555 Kotlin scripts: top-level name-based destructuring with _ = prop fails with “exception while generating code”
  • KT-83314

Configuration

📅 Schedule: Branch creation - "at 10:00 am on friday" (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-minor-patch branch from 872be7b to a7b972d Compare July 26, 2025 05:17
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update dependency dart to >=3.8.2 <4.0.0 Jul 26, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a7b972d to ccd81ce Compare July 26, 2025 23:29
@linpengteng linpengteng force-pushed the main branch 3 times, most recently from 7f984fa to 00c6698 Compare July 28, 2025 13:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ccd81ce to a455f26 Compare August 1, 2025 10:10
@renovate renovate bot changed the title chore(deps): update dependency dart to >=3.8.2 <4.0.0 chore(deps): update all non-major dependencies Aug 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a455f26 to 910e592 Compare August 2, 2025 03:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 910e592 to 4dd6ceb Compare August 2, 2025 03:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e62bb8b to 2368c5b Compare August 2, 2025 12:36
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update dependency dart to >=3.8.2 <4.0.0 Aug 2, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2368c5b to b8dda50 Compare August 4, 2025 21:04
@renovate renovate bot changed the title chore(deps): update dependency dart to >=3.8.2 <4.0.0 chore(deps): update dependency dart to >=3.8.3 <4.0.0 Aug 4, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b8dda50 to f1263c9 Compare August 7, 2025 21:49
@renovate renovate bot changed the title chore(deps): update dependency dart to >=3.8.3 <4.0.0 chore(deps): update all non-major dependencies Aug 7, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from fad1cab to 02405b4 Compare August 14, 2025 11:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 02405b4 to c1d981d Compare August 16, 2025 16:50
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update dependency dart to >=3.9.0 <4.0.0 Aug 17, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c1d981d to 5754eb3 Compare August 17, 2025 12:55
@renovate renovate bot changed the title chore(deps): update dependency dart to >=3.9.2 <4.0.0 chore(deps): update all non-major dependencies Aug 31, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from b25567f to a518e86 Compare September 12, 2025 08:03
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update dependency dart to >=3.9.3 <4.0.0 Sep 12, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2dd6cd9 to 883bdef Compare September 16, 2025 04:41
@renovate renovate bot changed the title chore(deps): update dependency dart to >=3.9.3 <4.0.0 chore(deps): update all non-major dependencies Sep 16, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 1035328 to a42c652 Compare September 24, 2025 21:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a42c652 to d17dfe6 Compare September 27, 2025 11:22
@linpengteng linpengteng force-pushed the main branch 2 times, most recently from 52e12e0 to 7f96dcb Compare September 27, 2025 11:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5be27b8 to da16be8 Compare October 6, 2025 01:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9accb5a to e866c75 Compare October 13, 2025 18:59
@renovate
Copy link
Contributor Author

renovate bot commented Mar 24, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pubspec.lock
Command failed: flutter pub upgrade audioplayers cupertino_icons dio firebase_auth firebase_core fl_chart logger mobile_scanner
The current Dart SDK version is 3.11.3.

Because dompet requires SDK version 3.11.4, version solving failed.
Failed to update packages.

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.

0 participants