Skip to content

Commit af1ee07

Browse files
kenzieschmollrishika0212
authored andcommitted
Update the DCM and Flutter versions (flutter#9767)
1 parent 011024a commit af1ee07

23 files changed

Lines changed: 15 additions & 18 deletions

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
wget -qO- https://dcm.dev/pgp-key.public | sudo gpg --dearmor -o /usr/share/keyrings/dcm.gpg
7575
echo 'deb [signed-by=/usr/share/keyrings/dcm.gpg arch=amd64] https://dcm.dev/debian stable main' | sudo tee /etc/apt/sources.list.d/dart_stable.list
7676
sudo apt-get update
77-
sudo apt-get install dcm=1.30.0-1 # To avoid errors add `-1` (build number) to the version
77+
sudo apt-get install dcm=1.36.0-1 # To avoid errors add `-1` (build number) to the version
7878
sudo chmod +x /usr/bin/dcm
7979
echo "$(dcm --version)"
8080
- name: Setup Dart SDK

flutter-candidate.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c6cec79f1f5d4ea1242936c7574af02bd39207c4
1+
49233d08009d7e3313da0bfbd859960d14d9c90c

packages/devtools_app/benchmark/web_bundle_size_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import 'package:path/path.dart' as path;
1111
import 'package:test/test.dart';
1212

1313
// Benchmark size in kB.
14-
const bundleSizeBenchmark = 5550;
14+
const bundleSizeBenchmark = 5600;
1515
const gzipBundleSizeBenchmark = 1650;
1616

1717
void main() {

packages/devtools_app/lib/src/shared/console/eval/auto_complete.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ Future<List<String>> autoCompleteResultsFor(
9494
}
9595
} catch (_) {}
9696
}
97-
return result.nonNulls
98-
.where((name) => name.startsWith(parts.activeWord))
99-
.toList();
97+
return result.where((name) => name.startsWith(parts.activeWord)).toList();
10098
}
10199

102100
// Due to https://github.com/dart-lang/sdk/issues/46221
@@ -197,7 +195,7 @@ Future<Set<String>> _libraryMemberAutocompletes(
197195
final members = functions.map(
198196
(funcRef) => funcRef.name!.replaceAll('=', ''),
199197
);
200-
result.addAll(members.nonNulls);
198+
result.addAll(members);
201199
}
202200
final classes = library.classes;
203201
if (classes != null) {

packages/devtools_app/test/screens/cpu_profiler/cpu_profile_benchmark_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void main() {
3535
final score = await benchmark.measure();
3636
expect(
3737
score,
38-
lessThan(100000),
38+
lessThan(110000),
3939
reason: 'Exceeded benchmark for run $i: $score',
4040
);
4141
}
-4 Bytes
Loading
3.13 KB
Loading
-5 Bytes
Loading
70 Bytes
Loading
-18 Bytes
Loading

0 commit comments

Comments
 (0)