From 0ddf882d9166ee9ec90939d58bee75056fa1ee30 Mon Sep 17 00:00:00 2001 From: "gregor.weber.knowunity" Date: Sat, 21 Oct 2023 16:47:52 +0200 Subject: [PATCH 1/5] update http and uuid dependency --- pubspec.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2b827e79..486a2871 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -21,13 +21,13 @@ dependencies: file: ^6.0.0 glob: ^2.0.1 html: ">=0.15.0 <1.0.0" - http: ^0.13.5 + http: ^1.1.0 meta: ^1.7.0 path: ^1.8.0 platform: ^3.1.0 # overridden for lowest versions compatibility pub_updater: ^0.3.0 - source_span: ^1.8.0 - uuid: ^3.0.7 + source_span: ^1.10.0 + uuid: ^4.1.0 xml: ">=5.3.0 <7.0.0" yaml: ^3.1.0 From 334957448545bf42872022dc29bbf18398361716 Mon Sep 17 00:00:00 2001 From: "gregor.weber.knowunity" Date: Mon, 23 Oct 2023 22:07:49 +0200 Subject: [PATCH 2/5] update minimum sdk versions --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 486a2871..33072ced 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ description: Dart Code Linter is a software analytics tool that helps developers repository: https://github.com/bancolombia/dart-code-linter environment: - sdk: ">=2.18.0 <4.0.0" + sdk: ">=3.0.0 <4.0.0" platforms: linux: From 97af3e05b67df81259a2bd344f1e983dac96123f Mon Sep 17 00:00:00 2001 From: "gregor.weber.knowunity" Date: Mon, 23 Oct 2023 22:08:46 +0200 Subject: [PATCH 3/5] update sdk version --- example/analysis_options.yaml | 3 --- example/lib/main.dart | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/example/analysis_options.yaml b/example/analysis_options.yaml index b16e1cab..3f3b5017 100644 --- a/example/analysis_options.yaml +++ b/example/analysis_options.yaml @@ -7,9 +7,6 @@ analyzer: # to be shown and need only the CLI, you need to remove the section below. plugins: - dart_code_linter - strong-mode: - implicit-casts: false - implicit-dynamic: false dart_code_linter: # Dart Code Linter supports presets. The config from a preset will be merged diff --git a/example/lib/main.dart b/example/lib/main.dart index 12b5b932..f02dc77f 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -55,7 +55,7 @@ class _MyHomePageState extends State { ), Text( '$_counter', - style: Theme.of(context).textTheme.headline4, + style: Theme.of(context).textTheme.headlineMedium, ), UnusedCodeWidget(), UnnecessaryNullableWidget(), From 8dffeffe04c7aa7f46980e416418ce41aee104a7 Mon Sep 17 00:00:00 2001 From: "gregor.weber.knowunity" Date: Mon, 23 Oct 2023 22:25:22 +0200 Subject: [PATCH 4/5] update git pipeline min sdk --- .github/workflows/build.yaml | 2 +- .github/workflows/release.yaml | 2 +- example/pubspec.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 788962ff..8f867cc8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -15,6 +15,6 @@ jobs: uses: flutter-actions/setup-flutter@v2 with: channel: stable - version: 3.7.12 + version: 3.13.8 - name: Install dependencies run: dart pub get \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5c3b78f9..282a311f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -19,7 +19,7 @@ jobs: uses: flutter-actions/setup-flutter@v2 with: channel: stable - version: 3.7.12 + version: 3.13.8 - name: Install dependencies run: dart pub get - name: Publish to pub.dev diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 4811cc06..a1d79cc8 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ">=2.18.2 <3.0.0" + sdk: ">=3.0.0 <4.0.0" dependencies: flutter: From dc6fda862beccf7a2807fba680125d3f300a96f7 Mon Sep 17 00:00:00 2001 From: "gregor.weber.knowunity" Date: Mon, 23 Oct 2023 22:39:41 +0200 Subject: [PATCH 5/5] update analyzer version --- pubspec.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 33072ced..6c4bac9c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -12,15 +12,15 @@ platforms: macos: dependencies: - analyzer: ">=5.1.0 <5.14.0" - analyzer_plugin: ">=0.11.0 <0.12.0" + analyzer: ^6.0.0 + analyzer_plugin: ^0.11.0 ansicolor: ^2.0.1 args: ^2.0.0 collection: ^1.16.0 crypto: ^3.0.0 file: ^6.0.0 glob: ^2.0.1 - html: ">=0.15.0 <1.0.0" + html: ^0.15.0 http: ^1.1.0 meta: ^1.7.0 path: ^1.8.0