Skip to content

Commit

Permalink
update more sdk constraints to 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Dec 16, 2024
1 parent 23f6ec7 commit 1f6da10
Show file tree
Hide file tree
Showing 14 changed files with 228 additions and 302 deletions.
506 changes: 215 additions & 291 deletions .github/workflows/dart.yml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build_modules/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## 5.0.10

- Bump the min sdk to 3.6.0.
- Support analyzer version 7.x.

## 5.0.10-beta.0
Expand Down
2 changes: 1 addition & 1 deletion build_modules/test/fixtures/a/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: a
resolution: workspace
environment:
sdk: ^3.5.0
sdk: ^3.6.0

dependencies:
b:
Expand Down
2 changes: 1 addition & 1 deletion build_modules/test/fixtures/b/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: b
resolution: workspace
environment:
sdk: ^3.5.0
sdk: ^3.6.0

dependencies:
a:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ d.FileDescriptor _pubspec(String name,
var buffer = StringBuffer()
..writeln('name: $name')
..writeln('environment:')
..writeln(' sdk: ^3.5.0-259.0.dev');
..writeln(' sdk: ^3.6.0');

void writeDeps(String group) {
buffer.writeln(group);
Expand Down
2 changes: 1 addition & 1 deletion build_runner_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
to be called by the build system at the end of a completed build.
- Add `wrapInBatch` to obtain a reader/writer pair that will batch writes
before flushing them at the end of a build.
- Bump the min sdk to 3.6.0-dev.228.
- Bump the min sdk to 3.6.0.
- Require analyzer ^6.9.0, allow version 7.x.
- Fix analyzer deprecations.

Expand Down
2 changes: 1 addition & 1 deletion build_runner_core/test/asset/batch_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Future<PackageGraph> _createTestPackage() async {
name: root
environment:
sdk: ^3.5.0
sdk: ^3.6.0
'''),
d.dir('lib', [
d.file('source.dart'),
Expand Down
2 changes: 1 addition & 1 deletion build_runner_core/test/fixtures/flutter_pkg/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Commit: 1bdf351.
name: flutter_gallery
environment:
sdk: ^3.5.0
sdk: ^3.6.0
dependencies:
collection: '>=1.9.1 <2.0.0'
flutter:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: a
environment:
sdk: ^3.5.0
sdk: ^3.6.0
resolution: workspace
dependencies:
b:
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: b
environment:
sdk: ^3.5.0
sdk: ^3.6.0
resolution: workspace
2 changes: 1 addition & 1 deletion build_runner_core/test/fixtures/workspace/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# See https://dart.dev/tools/pub/glossary#lockfile
packages: {}
sdks:
dart: ">=3.5.0-259.0.dev <4.0.0"
dart: ">=3.6.0 <4.0.0"
2 changes: 1 addition & 1 deletion build_runner_core/test/fixtures/workspace/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: workspace
environment:
sdk: ^3.5.0
sdk: ^3.6.0
workspace:
- pkgs/a
- pkgs/b
2 changes: 1 addition & 1 deletion build_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository: https://github.com/dart-lang/build/tree/master/build_test
resolution: workspace

environment:
sdk: ^3.5.0
sdk: ^3.6.0

dependencies:
async: ^2.5.0
Expand Down
1 change: 1 addition & 0 deletions build_web_compilers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- Support package:archive version 4.x.
- Allow analyzer version 7.x.
- Bump the min sdk to 3.6.0.

## 4.1.0-beta.3

Expand Down

0 comments on commit 1f6da10

Please sign in to comment.