Skip to content

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

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

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

Conversation

@renovate

@renovate renovate Bot commented Jul 24, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
app_links dependencies minor ^7.0.0^7.2.1 age confidence
audioplayers (source) dependencies minor ^6.5.1^6.8.1 age confidence
connectivity_plus (source) dependencies minor ^7.0.0^7.2.0 age confidence
cupertino_icons (source) dependencies patch ^1.0.8^1.0.9 age confidence
dart (source) minor >=3.10.0 <4.0.03.12.2 age confidence
dio dependencies minor ^5.9.0^5.10.0 age confidence
firebase_auth (source) dependencies minor ^6.1.2^6.5.4 age confidence
firebase_core (source) dependencies minor ^4.2.1^4.11.0 age confidence
fl_chart (source) dependencies minor ^1.1.1^1.2.0 age confidence
flutter_inappwebview (source) dependencies patch ^6.2.0-beta.2^6.2.0-beta.3 age confidence
flutter_native_splash dependencies patch ^2.4.7^2.4.8 age confidence
fluttertoast dependencies minor ^9.0.0^9.1.0 age confidence
get dependencies patch ^5.0.0-release-candidate-9.3.2^5.0.0-release-candidate-9.3.3 age confidence
gradle (source) minor 9.2.19.6.1 age confidence
image_picker (source) dependencies patch ^1.2.1^1.2.3 age confidence
intl (source) dependencies patch ^0.20.2^0.20.3 age confidence
logger dependencies minor ^2.6.2^2.7.0 age confidence
mobile_scanner dependencies minor ^7.1.3^7.2.0 age confidence
path_provider (source) dependencies patch ^2.1.5^2.1.6 age confidence
permission_handler dependencies patch ^12.0.1^12.0.3 age confidence
share_plus (source) dependencies patch ^12.0.1^12.0.2 age confidence
signals (source) dependencies patch ^6.3.0^6.3.1 age confidence
sqflite (source) dependencies patch ^2.4.2^2.4.3 age confidence
synchronized (source) dependencies patch ^3.4.0^3.4.1 age confidence
org.jetbrains.kotlin.android (source) plugin minor 2.2.212.4.0 age confidence
com.google.firebase:firebase-bom dependencies minor 34.6.034.16.0 age confidence
com.google.gms.google-services plugin minor 4.4.44.5.0 age confidence

Warning

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


Release Notes

llfbandit/app_links (app_links)

v7.2.0

Compare Source

v7.1.2

Compare Source

v7.1.1

Compare Source

bluefireteam/audioplayers (audioplayers)

v6.8.1

Compare Source

v6.8.0

Compare Source

v6.7.1

Compare Source

v6.7.0

Compare Source

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)
fluttercommunity/plus_plugins (connectivity_plus)

v7.2.0

Compare Source

  • FEAT(connectivity_plus): Updated Swift Package Manager setup for Flutter 3.44 (#​3893). (9c064c2e)

v7.1.1

Compare Source

  • DOCS(connectivity_plus): Add missing info about Xcode 26.1.1 requirement, deduplicate headers (#​3792). (ba6e6b94)

v7.1.0

Compare Source

  • FIX(connectivity_plus): Register broadcast receiver with correct flag, bump minSDK to 21 (#​3781). (93135ff2)
  • FIX(connectivity_plus): Use serial queue for NWPathMonitor to prevent race condition crash (#​3752). (05a50f32)
  • FEAT(connectivity_plus): add ConnectivityResult.satellite on Android and iOS (#​3771). (2b58cffe)
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.12.2

Compare Source

v3.12.1

Compare Source

v3.12.0

Compare Source

Released on: 2026-05-20

Language
Private named parameters

Dart now supports private named parameters. Before 3.12, it was an error to
have a named parameter that starts with an underscore:

class Point {
  final int _x, _y;
  // Compile error in Dart 3.11.
  Point({required this._x, required this._y});
}

This means that, before 3.12, initializing a private field from
a named parameter required an explicit initializer list:

class Point {
  final int _x, _y;
  Point({required int x, required int y})
    : _x = x,
      _y = y;
}

All the initializer list is doing is removing the leading _.
In Dart 3.12, the language does that for you. Now you can write:

class Point {
  final int _x, _y; // Private fields.
  Point({required this._x, required this._y});
}

This code behaves exactly like the previous example. The initialized fields are
private, but the argument names written at the call site are public:

void main() {
  print(Point(x: 1, y: 2));
}
Libraries
dart:core
  • The Dart VM's RegExp implementation now supports
    modifier spans and duplicate named capture groups.
dart:js_interop
  • Breaking change in extension name of isA: isA is moved from
    JSAnyUtilityExtension to NullableObjectUtilExtension to support
    type-checking any Object?. isA<JSObject>() also now handles JS objects
    with no prototypes correctly and isA<JSAny>() does a non-trivial check to
    make sure the value is a JS value. See #​56905 for more details. As
    JSAnyUtilityExtension is on JSAny? and NullableObjectUtilExtension is on
    the supertype Object?, this change is only breaking if users referred to the
    extension name directly, either through applying the extension directly or
    through using show/hide directives.

  • isA<JSExportedDartFunction>() now checks whether the function is
    actually a JS wrapper function that is returned from
    Function.toJS or Function.toJSCaptureThis.

  • Added JSIterableProtocol, JSIterable, JSIteratorProtocol, JSIterator,
    and JSIteratorResult types to model JavaScript's iteration protocols.
    JSArray and JSString now implement JSIterable.

  • Added extension types to provide Iterable.toJSIterable,
    JSIterable.toDartIterable, Iterator.toJSIterator, and
    JSIterator.toDartIterator.

Tools
Analyzer
  • The new simple_directive_paths lint and its associated fix
    flag and simplify unnecessarily complex import and export paths,
    such as those containing redundant ./ or backtracking ../ segments.

    Use dart fix --code=simple_directive_paths (with either --dry-run or
    --apply) to bulk fix existing lint violations.

  • The prefer_initializing_formals lint rule highlights named parameters
    that could be private named parameters.

    Use dart fix --code=prefer_initializing_formals (with either --dry-run or
    --apply) to bulk fix existing lint violations.

  • Violations of the avoid_final_parameters lint can now be
    fixed with dart fix --code=avoid_final_parameters.

  • The analyzer now warns when a function that contains a
    parameter annotated with @mustBeConst is torn off.

  • The invalid_runtime_check_with_js_interop_types rule now checks for JS
    interop types used in a catch clause's on-type and instructs users to
    use isA for type checks instead.

  • Analyzer plugins: Initial support for 'print debugging' via new sections in
    the "Plugins" Insights (Diagnostics) page. When a plugin is computing lint
    and warning diagnostics, print calls are now redirected to the analysis
    server, which presents the messages in the appropriate plugin's section on
    the Plugins page.

  • Improved support for extension types in many existing lint rules.

  • Improved support for null-aware elements in existing lint rules.

  • The analysis server starts up faster with the help of improved analysis
    options file caching. The improvement depends on the number of analysis
    options files in the workspace, and the number of included analysis options
    files. The improvement is greater for systems with slower disk access.

  • Various other improvements to analysis performance.

Pub
  • dart pub cache repair now, by default, only repairs the
    packages referenced by the current project's pubspec.lock file.
    For the old behavior of repairing all packages, use the --all flag.
  • dart pub add and dart pub unpack now accept @ as an alternative to :
    for separating a package name from its version constraint.
  • Git dependencies now support Git Large File Storage (LFS).
dart2wasm
  • Updated deferred loading module loader API to allow batched fetching of
    deferred modules. The embedder now takes loadDeferredModules instead of
    loadDeferredModule where the new function should now expect an array of
    module names rather than individual module names. All the module loading
    functions must now also accept an instantiator callback to which they
    should pass the loaded results.
dart2js
  • JSExportedDartFunction.toDart sometimes incorrectly returned the original
    Dart function even if the wrapper JS function was cast from a call to the
    deprecated allowInterop. Instead, to be consistent with DDC and dart2wasm,
    it now throws if the wrapper JS function wasn't a result of Function.toJS or
    Function.toJSCaptureThis.

v3.11.6

Compare Source

Released on: 2026-05-05

This is a patch release that:

  • Fixes a bug causing network profiling to stop working in certain situations.
    (issue [#​63156]).

v3.11.5

Compare Source

Released on: 2026-04-15

This is a patch release that:

  • Fixes an issue with the Dart MCP server and latest AntiGravity. (issue
    dart-lang/ai#439)

v3.11.4

Compare Source

Released on: 2026-03-24

This is a patch release that:

  • Fixes a bug causing the analyzer and analysis server to crash when calling a
    dot shorthand function expression invocation. (issue dart-lang/sdk#62595)

v3.11.3

Compare Source

Released on: 2026-03-17

This is a patch release that:

  • Fixes a bug causing Dart & Flutter DevTools to crash when using the skwasm renderer.
    (issue flutter/devtools#9701).

v3.11.2

Compare Source

Released on: 2026-03-10

This is a patch release that:

  • Fixes a bug in pub's support tag_pattern git dependencies that prevented it to
    load lightweight tags (as opposed to annotated tags).
    (issue dart-lang/pub#4756).

v3.11.1

Compare Source

Released on: 2026-02-24

This is a patch release that:

  • Fixes a performance issue in the Dart Analysis Server when analyzing a workspace with many files (issue #​62456)
  • Fixes a performance issue in the Dart Analysis Server when analyzing a workspace with many directories (issue #​62456)

v3.11.0

Compare Source

Released on: 2026-02-11

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 command 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.

  • dart pub cache repair now by default only repairs the packages referenced
    by the current projects pubspec.lock. For the old behavior of repairing all
    packages use the --all flag.

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 dependencies.
    (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.10.0: dio 5.10.0

Compare Source

What's new

  • Fix FormData.readAsBytes excessive memory usage with large payloads by replacing the O(n²) reduce+spread approach with a pre-allocated Uint8List.
  • Fix request hanging indefinitely when async interceptor callbacks throw without calling the handler.
  • Fix HttpException: Connection closed before full header was received being reported as DioExceptionType.unknown.
  • Add transformTimeout to bound long-running response transformations, including background JSON decoding.
    On web, timeout handling is best-effort because synchronous JavaScript work cannot be preempted.
  • Fix FormData.clone() dropping boundaryName and camelCaseContentDisposition, so a retried multipart request now keeps the original options instead of silently falling back to the defaults.
  • Fix QueuedInterceptor stalling its queue forever when the active request is cancelled while its callback is still pending (never calls next/resolve/reject), which blocked every subsequent request routed through the interceptor.
  • Fix ErrorInterceptorHandler.reject(..., true) not continuing to following error interceptors in queued interceptors.

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.5.4

Compare Source

  • FIX: resolve FlutterSceneLifeCycleDelegate conformance guard (#​18385). (48d67196)

v6.5.3

Compare Source

  • Update a dependency to the latest release.

v6.5.2

Compare Source

  • FIX(auth,android): update token retrieval in PigeonParser to handle Number type correctly (#​18328). (3b77147b)
  • DOCS(auth): clarify behavior of password reset email with email enumeration protection enabled (#​18296). (0bcce87a)

v6.5.1

Compare Source

  • Update a dependency to the latest release.

v6.5.0

Compare Source

v6.4.0

Compare Source

  • FIX(auth,ios): serialize Sign in with Apple to prevent crash on overlapping requests (#​18172). (752cbcaa)
  • FEAT: use local firebase_core instead of remote SPM dependency (#​18141). (995caf40)

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.11.0

Compare Source

v4.10.0

Compare Source

v4.9.0

Compare Source

v4.8.0

Compare Source

  • REFACTOR: move all packages to workspace (#​18182). (6cdfcb10)
  • FIX: update core, auth and app-check logic so internal resources on method channels are properly disposed (#​18268). (a0de4ed8)
  • FEAT(core): Add Auth and AppCheck as App's registered service. (#​18237). (7ce191cb)
  • FEAT: upgrade pigeon to version 26.3.4 (#​18205). (cb6b4aef)

v4.7.0

Compare Source

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

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "at 10:00 am on friday"
  • 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

renovate Bot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ 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 app_links audioplayers connectivity_plus cupertino_icons dio firebase_auth firebase_core fl_chart flutter_inappwebview flutter_native_splash fluttertoast get image_picker intl logger mobile_scanner path_provider permission_handler share_plus signals sqflite synchronized
Note: intl is pinned to version 0.20.2 by flutter_localizations from the flutter SDK.
See https://dart.dev/go/sdk-version-pinning for details.


Because dompet depends on flutter_localizations from sdk which depends on intl 0.20.2, intl 0.20.2 is required.
So, because dompet depends on intl ^0.20.3, version solving failed.


You can try the following suggestion to make the pubspec resolve:
* Consider downgrading your constraint on intl: flutter pub add intl:^0.20.2
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