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
3 changes: 2 additions & 1 deletion build_runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## 2.10.3-wip
## 2.10.2

- Bug fix: fix issue with webdev failing due to a modification during a build.
- In "serve" and "watch" modes, retry failed compiles instead of exiting.

## 2.10.1
Expand Down
4 changes: 2 additions & 2 deletions build_runner/lib/src/build/build_series.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ class BuildSeries {

// For modifications, confirm that the content actually changed.
if (change.type == ChangeType.MODIFY) {
_readerWriter.cache.invalidate([id]);
final newDigest = await _readerWriter.digest(id);
// Use `_buildPlan.readerWriter` which has no cache to do a real read.
final newDigest = await _buildPlan.readerWriter.digest(id);
if (node.digest != newDigest) {
result.add(change);
}
Expand Down
2 changes: 1 addition & 1 deletion 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-wip
version: 2.10.2
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 Down
6 changes: 1 addition & 5 deletions build_test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
## 3.5.3-wip

- Use `build_runner` 2.10.3.

## 3.5.2-wip
## 3.5.2

- Use `build_runner` 2.10.2.

Expand Down
4 changes: 2 additions & 2 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-wip
version: 3.5.2
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-wip'
build_runner: '2.10.2'
built_collection: ^5.1.1
crypto: ^3.0.0
glob: ^2.0.0
Expand Down
Loading