From 6ffa65735536172450875f59f5de4b7a5e30277d Mon Sep 17 00:00:00 2001 From: IamPekka058 <59747867+IamPekka058@users.noreply.github.com> Date: Sun, 17 Aug 2025 14:46:02 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20dependency?= =?UTF-8?q?=20flutter=5Flints=20to=20v6=20and=20lints=20to=20v6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 24c9bba1..ebae4571 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -20,11 +20,11 @@ dev_dependencies: build_test: any collection: ^1.15.0 dependency_validator: - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 flutter_test: sdk: flutter json_serializable: ^6.9.4 - lints: ^5.1.1 + lints: ^6.0.0 mockito: ^5.0.0 nock: ^1.0.0 test: ^1.16.0 From 9e74c06ec6204c3f377c468ba773921cc011b67e Mon Sep 17 00:00:00 2001 From: IamPekka058 <59747867+IamPekka058@users.noreply.github.com> Date: Sun, 17 Aug 2025 15:25:38 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=9D=20Fix=20type=20annotation=20in?= =?UTF-8?q?=20`=5FprettyEncode`=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/data_object_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/data_object_test.dart b/test/data_object_test.dart index 95a71677..953450a5 100644 --- a/test/data_object_test.dart +++ b/test/data_object_test.dart @@ -41,4 +41,4 @@ void main() { }); } -String _prettyEncode(obj) => GitHubJson.encode(obj, indent: ' '); +String _prettyEncode(dynamic obj) => GitHubJson.encode(obj, indent: ' ');