Skip to content

Commit 75ace2f

Browse files
authored
Allow analyzer 9. (#4288)
1 parent 92218f0 commit 75ace2f

File tree

12 files changed

+37
-11
lines changed

12 files changed

+37
-11
lines changed

build/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.0.3
2+
3+
- Allow `analyzer` 9.0.0.
4+
15
## 4.0.2
26

37
- Require `analyzer` 8.0.0. Remove use of deprecated `analyzer` members, use

build/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build
2-
version: 4.0.2
2+
version: 4.0.3
33
description: A package for authoring build_runner compatible code generators.
44
repository: https://github.com/dart-lang/build/tree/master/build
55
resolution: workspace
@@ -8,7 +8,7 @@ environment:
88
sdk: ^3.7.0
99

1010
dependencies:
11-
analyzer: ^8.0.0
11+
analyzer: '>=8.0.0 <10.0.0'
1212
crypto: ^3.0.0
1313
glob: ^2.0.0
1414
logging: ^1.0.0

build_modules/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 5.1.3
2+
3+
- Allow `analyzer` 9.0.0.
4+
15
## 5.1.2
26

37
- Make compatible with `dart run build_runner build --force-aot`.

build_modules/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build_modules
2-
version: 5.1.2
2+
version: 5.1.3
33
description: >-
44
Builders to analyze and split Dart code into individually compilable modules
55
based on imports.
@@ -10,7 +10,7 @@ environment:
1010
sdk: '>=3.7.0 <3.11.0-z'
1111

1212
dependencies:
13-
analyzer: '>=5.1.0 <9.0.0'
13+
analyzer: '>=5.1.0 <10.0.0'
1414
async: ^2.5.0
1515
bazel_worker: ^1.0.0
1616
build: '>=2.0.0 <5.0.0'

build_runner/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.10.4
2+
3+
- Allow `analyzer` 9.0.0.
4+
15
## 2.10.3
26

37
- Performance: improve scalability with the number of library cycles, making

build_runner/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build_runner
2-
version: 2.10.3
2+
version: 2.10.4
33
description: A build system for Dart code generation and modular compilation.
44
repository: https://github.com/dart-lang/build/tree/master/build_runner
55
resolution: workspace
@@ -13,7 +13,7 @@ platforms:
1313
macos:
1414

1515
dependencies:
16-
analyzer: ^8.0.0
16+
analyzer: '>=8.0.0 <10.0.0'
1717
args: ^2.5.0
1818
async: ^2.5.0
1919
build: ^4.0.0

build_test/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.5.4
2+
3+
- Use `build_runner` 2.10.4.
4+
15
## 3.5.3
26

37
- Use `build_runner` 2.10.3.

build_test/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: build_test
22
description: Utilities for writing unit tests of Builders.
3-
version: 3.5.3
3+
version: 3.5.4
44
repository: https://github.com/dart-lang/build/tree/master/build_test
55
resolution: workspace
66

@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
build: ^4.0.0
1212
build_config: ^1.0.0
13-
build_runner: '2.10.3'
13+
build_runner: '2.10.4'
1414
built_collection: ^5.1.1
1515
crypto: ^3.0.0
1616
glob: ^2.0.0
@@ -25,7 +25,7 @@ dependencies:
2525
watcher: ^1.0.0
2626

2727
dev_dependencies:
28-
analyzer: ^8.0.0
28+
analyzer: '>=8.0.0 <10.0.0'
2929

3030
topics:
3131
- build-runner

build_web_compilers/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.4.3
2+
3+
- Allow `analyzer` 9.0.0.
4+
15
## 4.4.2
26

37
- Fixes DDC + FES not reading the entrypoint when serving a prebuilt app.

build_web_compilers/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
sdk: '>=3.7.0 <3.11.0-z'
99

1010
dependencies:
11-
analyzer: '>=5.1.0 <9.0.0'
11+
analyzer: '>=5.1.0 <10.0.0'
1212
archive: '>=3.0.0 <5.0.0'
1313
bazel_worker: ^1.0.0
1414
build: '>=2.0.0 <5.0.0'

0 commit comments

Comments
 (0)