From f7586b6bfb8d93d68439907e641e04b3246264a5 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 19 Apr 2026 07:48:11 +0800 Subject: [PATCH] fix(flutter): sync pubspec.lock with vector_math direct dependency vector_math was promoted to a direct dependency in pubspec.yaml in #13247 (edge scrolling) but the accompanying pubspec.lock regeneration was never committed. The lock has been labeling vector_math as "transitive" ever since, even though pubspec.yaml declares it directly. Running `flutter pub get` on a clean checkout reproduces this diff for anyone contributing to the Flutter side. This commit simply commits the correctly-regenerated lock file. --- flutter/pubspec.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/pubspec.lock b/flutter/pubspec.lock index c6f8aa1c2..7f63ba85f 100644 --- a/flutter/pubspec.lock +++ b/flutter/pubspec.lock @@ -1473,7 +1473,7 @@ packages: source: hosted version: "1.1.16" vector_math: - dependency: transitive + dependency: "direct main" description: name: vector_math sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"