From d02e1127d19c540772ab4927abe379fe9fb9bb8b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2026 16:47:51 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20dependency?= =?UTF-8?q?=20flutter=20to=20v3.47.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mise.toml | 2 +- test_app/pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mise.toml b/mise.toml index 862771d..d0f79a3 100644 --- a/mise.toml +++ b/mise.toml @@ -1,3 +1,3 @@ [tools] node = "24.19.0" -flutter = "3.41.9" +flutter = "3.47.1" diff --git a/test_app/pubspec.yaml b/test_app/pubspec.yaml index fb4cedd..af44dda 100644 --- a/test_app/pubspec.yaml +++ b/test_app/pubspec.yaml @@ -20,7 +20,7 @@ version: 1.0.0+1 environment: sdk: 3.11.5 - flutter: 3.41.9 + flutter: 3.47.1 # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions From 209e9421d49809e83809fcf2934c229ae13bae94 Mon Sep 17 00:00:00 2001 From: Friedinger <71267611+Friedinger@users.noreply.github.com> Date: Thu, 27 Aug 2026 20:24:08 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9B=20Fix=20Dart=20SDK=20constrain?= =?UTF-8?q?t=20for=20Flutter=20v3.47.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flutter 3.47.1 bundles Dart 3.13.1, but pubspec.yaml pinned the SDK to the exact 3.11.5 that shipped with Flutter 3.41.9, so `flutter pub get` failed version solving. Update the SDK pin to 3.13.1, and commit the pubspec.lock and analysis_options.yaml changes generated by the new toolchain. --- test_app/analysis_options.yaml | 9 +++++++++ test_app/pubspec.lock | 20 ++++++++++---------- test_app/pubspec.yaml | 2 +- 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/test_app/analysis_options.yaml b/test_app/analysis_options.yaml index 0d29021..bf8d421 100644 --- a/test_app/analysis_options.yaml +++ b/test_app/analysis_options.yaml @@ -7,6 +7,15 @@ # The following line activates a set of recommended lints for Flutter apps, # packages, and plugins designed to encourage good coding practices. +analyzer: + exclude: + - build/** + - android/** + - ios/** + - web/** + - windows/** + - macos/** + - linux/** include: package:flutter_lints/flutter.yaml linter: diff --git a/test_app/pubspec.lock b/test_app/pubspec.lock index 5419f39..1ff010d 100644 --- a/test_app/pubspec.lock +++ b/test_app/pubspec.lock @@ -111,10 +111,10 @@ packages: dependency: transitive description: name: matcher - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861 + sha256: "31bd099b47c10cd1aeb55146a2d46ce0277630ecef3f7dae54ad7873f36696cd" url: "https://pub.dev" source: hosted - version: "0.12.19" + version: "0.12.20" material_color_utilities: dependency: transitive description: @@ -127,10 +127,10 @@ packages: dependency: transitive description: name: meta - sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" + sha256: "307249ce4ff29d58a18e97f6345f539382eb9c9c29ecda628900f31de0443dd9" url: "https://pub.dev" source: hosted - version: "1.17.0" + version: "1.19.0" path: dependency: transitive description: @@ -188,18 +188,18 @@ packages: dependency: transitive description: name: test_api - sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a" + sha256: "2a122cbe059f8b610d3a5415f42e255b6c17b1f21eee1d960f31080237fb4f11" url: "https://pub.dev" source: hosted - version: "0.7.10" + version: "0.7.12" vector_math: dependency: transitive description: name: vector_math - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b + sha256: f36f9f3be64c6198714492bb455c11056e33e2f85d9a0b676a48301e44fdcf47 url: "https://pub.dev" source: hosted - version: "2.2.0" + version: "2.4.2" vm_service: dependency: transitive description: @@ -209,5 +209,5 @@ packages: source: hosted version: "15.3.0" sdks: - dart: "3.11.5" - flutter: "3.41.9" + dart: "3.13.1" + flutter: "3.47.1" diff --git a/test_app/pubspec.yaml b/test_app/pubspec.yaml index af44dda..032b931 100644 --- a/test_app/pubspec.yaml +++ b/test_app/pubspec.yaml @@ -19,7 +19,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: 3.11.5 + sdk: 3.13.1 flutter: 3.47.1 # Dependencies specify other packages that your package needs in order to work.