Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raise the Dart SDK minimum to at least 2.11.0 #709

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dart_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
sdk: [ 2.7.2, 2.13.4, stable, dev ]
sdk: [ 2.13.4, stable, dev ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v0.2
Expand All @@ -40,7 +40,7 @@ jobs:
# Analyze before generated files are created to verify that component boilerplate analysis is "clean" without the need for building
- name: Analyze example source (pre-build)
run: |
# Analyze lib to ensure public APIs don't depend on build-to-cache files,
# Analyze lib to ensure public APIs don't depend on build-to-cache files,
# which could cause analysis issues for consumers who haven't run a build yet.
dartanalyzer lib
cd example/boilerplate_versions
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
strategy:
fail-fast: false
matrix:
sdk: [ 2.7.2, 2.13.4, stable, dev ]
sdk: [ 2.13.4, stable, dev ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v0.2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM google/dart:2.7
FROM google/dart:2.13

# Expose env vars for git ssh access
ARG GIT_SSH_KEY
Expand Down
2 changes: 1 addition & 1 deletion app/over_react_redux/todo_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: todo_client
version: 1.0.0

environment:
sdk: ">=2.7.0 <3.0.0"
sdk: ">=2.11.0 <3.0.0"

dependencies:
color: any
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 4.2.2
description: A library for building statically-typed React UI components using Dart.
homepage: https://github.com/Workiva/over_react/
environment:
sdk: '>=2.7.0 <3.0.0'
sdk: ">=2.11.0 <3.0.0"

dependencies:
collection: ^1.14.11
Expand Down
2 changes: 1 addition & 1 deletion tools/analyzer_plugin/playground/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: plugin_playground
version: 0.0.0
environment:
sdk: '>=2.7.0 <3.0.0'
sdk: ">=2.11.0 <3.0.0"
dependencies:
over_react: ^3.5.3
dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion tools/analyzer_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: none
description: Dart analyzer plugin for OverReact
repository: https://github.com/Workiva/over_react/tree/master/tools/analyzer_plugin
environment:
sdk: '>=2.7.0 <3.0.0'
sdk: ">=2.11.0 <3.0.0"
dependencies:
analyzer: ">=0.39.10 <0.42.0"
analyzer_plugin: '^0.2.4'
Expand Down