Skip to content
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
4 changes: 4 additions & 0 deletions build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.0.3

- Allow `analyzer` 9.0.0.

## 4.0.2

- Require `analyzer` 8.0.0. Remove use of deprecated `analyzer` members, use
Expand Down
4 changes: 2 additions & 2 deletions build/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build
version: 4.0.2
version: 4.0.3
description: A package for authoring build_runner compatible code generators.
repository: https://github.com/dart-lang/build/tree/master/build
resolution: workspace
Expand All @@ -8,7 +8,7 @@ environment:
sdk: ^3.7.0

dependencies:
analyzer: ^8.0.0
analyzer: '>=8.0.0 <10.0.0'
crypto: ^3.0.0
glob: ^2.0.0
logging: ^1.0.0
Expand Down
4 changes: 4 additions & 0 deletions build_modules/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.1.3

- Allow `analyzer` 9.0.0.

## 5.1.2

- Make compatible with `dart run build_runner build --force-aot`.
Expand Down
4 changes: 2 additions & 2 deletions build_modules/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build_modules
version: 5.1.2
version: 5.1.3
description: >-
Builders to analyze and split Dart code into individually compilable modules
based on imports.
Expand All @@ -10,7 +10,7 @@ environment:
sdk: '>=3.7.0 <3.11.0-z'

dependencies:
analyzer: '>=5.1.0 <9.0.0'
analyzer: '>=5.1.0 <10.0.0'
async: ^2.5.0
bazel_worker: ^1.0.0
build: '>=2.0.0 <5.0.0'
Expand Down
4 changes: 4 additions & 0 deletions build_runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.10.4

- Allow `analyzer` 9.0.0.

## 2.10.3

- Performance: improve scalability with the number of library cycles, making
Expand Down
4 changes: 2 additions & 2 deletions build_runner/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build_runner
version: 2.10.3
version: 2.10.4
description: A build system for Dart code generation and modular compilation.
repository: https://github.com/dart-lang/build/tree/master/build_runner
resolution: workspace
Expand All @@ -13,7 +13,7 @@ platforms:
macos:

dependencies:
analyzer: ^8.0.0
analyzer: '>=8.0.0 <10.0.0'
args: ^2.5.0
async: ^2.5.0
build: ^4.0.0
Expand Down
4 changes: 4 additions & 0 deletions build_test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.5.4

- Use `build_runner` 2.10.4.

## 3.5.3

- Use `build_runner` 2.10.3.
Expand Down
6 changes: 3 additions & 3 deletions build_test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: build_test
description: Utilities for writing unit tests of Builders.
version: 3.5.3
version: 3.5.4
repository: https://github.com/dart-lang/build/tree/master/build_test
resolution: workspace

Expand All @@ -10,7 +10,7 @@ environment:
dependencies:
build: ^4.0.0
build_config: ^1.0.0
build_runner: '2.10.3'
build_runner: '2.10.4'
built_collection: ^5.1.1
crypto: ^3.0.0
glob: ^2.0.0
Expand All @@ -25,7 +25,7 @@ dependencies:
watcher: ^1.0.0

dev_dependencies:
analyzer: ^8.0.0
analyzer: '>=8.0.0 <10.0.0'

topics:
- build-runner
Expand Down
4 changes: 4 additions & 0 deletions build_web_compilers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.4.3

- Allow `analyzer` 9.0.0.

## 4.4.2

- Fixes DDC + FES not reading the entrypoint when serving a prebuilt app.
Expand Down
2 changes: 1 addition & 1 deletion build_web_compilers/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ environment:
sdk: '>=3.7.0 <3.11.0-z'

dependencies:
analyzer: '>=5.1.0 <9.0.0'
analyzer: '>=5.1.0 <10.0.0'
archive: '>=3.0.0 <5.0.0'
bazel_worker: ^1.0.0
build: '>=2.0.0 <5.0.0'
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ environment:
resolution: workspace

dependencies:
analyzer: ">=5.0.0 <9.0.0"
analyzer: ">=5.0.0 <10.0.0"
build: ^4.0.0
# Not imported in code, but used to constrain `build.yaml` requirements
build_config: ^1.0.0
Expand Down
6 changes: 6 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@ workspace:
- build_modules/test/fixtures/b
- build_web_compilers/test/fixtures/c
- build_web_compilers/test/fixtures/d

# Test with analyzer 9.0.0 because users of build_runner can use it. The
# workspace is held back by a dev_dependency on source_gen which is not
# released for 9.0.0 yet.
dependency_overrides:
analyzer: ^9.0.0