Skip to content

Commit 4c7f413

Browse files
Merge pull request #709 from Workiva/batch/client_platform/up_dart_sdk_minimum_to_2.11
Raise the Dart SDK minimum to at least 2.11.0
2 parents 81e3719 + 0f8c72a commit 4c7f413

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/dart_ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
sdk: [ 2.7.2, 2.13.4, stable, dev ]
18+
sdk: [ 2.13.4, stable, dev ]
1919
steps:
2020
- uses: actions/checkout@v2
2121
- uses: dart-lang/[email protected]
@@ -40,7 +40,7 @@ jobs:
4040
# Analyze before generated files are created to verify that component boilerplate analysis is "clean" without the need for building
4141
- name: Analyze example source (pre-build)
4242
run: |
43-
# Analyze lib to ensure public APIs don't depend on build-to-cache files,
43+
# Analyze lib to ensure public APIs don't depend on build-to-cache files,
4444
# which could cause analysis issues for consumers who haven't run a build yet.
4545
dartanalyzer lib
4646
cd example/boilerplate_versions
@@ -82,7 +82,7 @@ jobs:
8282
strategy:
8383
fail-fast: false
8484
matrix:
85-
sdk: [ 2.7.2, 2.13.4, stable, dev ]
85+
sdk: [ 2.13.4, stable, dev ]
8686
steps:
8787
- uses: actions/checkout@v2
8888
- uses: dart-lang/[email protected]

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM google/dart:2.7
1+
FROM google/dart:2.13
22

33
# Expose env vars for git ssh access
44
ARG GIT_SSH_KEY

app/over_react_redux/todo_client/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: todo_client
22
version: 1.0.0
33

44
environment:
5-
sdk: ">=2.7.0 <3.0.0"
5+
sdk: ">=2.11.0 <3.0.0"
66

77
dependencies:
88
color: any

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 4.2.2
33
description: A library for building statically-typed React UI components using Dart.
44
homepage: https://github.com/Workiva/over_react/
55
environment:
6-
sdk: '>=2.7.0 <3.0.0'
6+
sdk: ">=2.11.0 <3.0.0"
77

88
dependencies:
99
collection: ^1.14.11

tools/analyzer_plugin/playground/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: plugin_playground
22
version: 0.0.0
33
environment:
4-
sdk: '>=2.7.0 <3.0.0'
4+
sdk: ">=2.11.0 <3.0.0"
55
dependencies:
66
over_react: ^3.5.3
77
dev_dependencies:

tools/analyzer_plugin/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ publish_to: none
44
description: Dart analyzer plugin for OverReact
55
repository: https://github.com/Workiva/over_react/tree/master/tools/analyzer_plugin
66
environment:
7-
sdk: '>=2.7.0 <3.0.0'
7+
sdk: ">=2.11.0 <3.0.0"
88
dependencies:
99
analyzer: ">=0.39.10 <0.42.0"
1010
analyzer_plugin: '^0.2.4'

0 commit comments

Comments
 (0)