Update dart_ci to SDK version 2.9.0-1.0.dev

Upgrade packages to recent versions, run dartfmt on all files.

Change-Id: I9189d055c3013b2f58efb27c47b77123f8602b07
Reviewed-on: https://dart-review.googlesource.com/c/dart_ci/+/144100
Reviewed-by: Karl Klose <karlklose@google.com>
diff --git a/functions/node/firestore_impl.dart b/functions/node/firestore_impl.dart
index 0c51013..06d70a8 100644
--- a/functions/node/firestore_impl.dart
+++ b/functions/node/firestore_impl.dart
@@ -101,8 +101,7 @@
   // The update function may be run multiple times, if the transaction retries.
   // Increment documentsWritten and documentsRead in the update function body.
   // The counts will include reads and attempted writes during retries.
-  Future<T> runTransaction<T>(
-          String info, Future<T> update(Transaction t)) =>
+  Future<T> runTransaction<T>(String info, Future<T> update(Transaction t)) =>
       traceRequest<T>(
           'run transaction', info, () => firestore.runTransaction(update));
 
diff --git a/functions/pubspec.lock b/functions/pubspec.lock
index 6ffb9e4..2a292e1 100644
--- a/functions/pubspec.lock
+++ b/functions/pubspec.lock
@@ -245,7 +245,7 @@
       name: io
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "0.3.3"
+    version: "0.3.4"
   js:
     dependency: transitive
     description:
@@ -357,7 +357,7 @@
       name: path
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "1.6.4"
+    version: "1.7.0"
   pedantic:
     dependency: transitive
     description:
@@ -546,7 +546,7 @@
       name: vm_service
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "4.0.0"
+    version: "4.0.1"
   watcher:
     dependency: transitive
     description:
diff --git a/results_feed/pubspec.lock b/results_feed/pubspec.lock
index 0d4178c..9df3559 100644
--- a/results_feed/pubspec.lock
+++ b/results_feed/pubspec.lock
@@ -252,7 +252,7 @@
       name: firebase
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "7.2.1"
+    version: "7.3.0"
   fixnum:
     dependency: transitive
     description:
@@ -322,7 +322,7 @@
       name: io
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "0.3.3"
+    version: "0.3.4"
   js:
     dependency: transitive
     description:
@@ -434,7 +434,7 @@
       name: path
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "1.6.4"
+    version: "1.7.0"
   pedantic:
     dependency: "direct dev"
     description:
@@ -651,7 +651,7 @@
       name: vm_service
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "4.0.0"
+    version: "4.0.1"
   watcher:
     dependency: transitive
     description:
@@ -688,4 +688,4 @@
     source: hosted
     version: "2.2.0"
 sdks:
-  dart: ">=2.8.0-dev.10.0 <2.9.0"
+  dart: ">=2.8.0-dev.10.0 <=2.9.0-1.0.dev"
diff --git a/results_feed/web/main.dart b/results_feed/web/main.dart
index 5fa424d..877c058 100644
--- a/results_feed/web/main.dart
+++ b/results_feed/web/main.dart
@@ -14,8 +14,8 @@
 
 // Allow links from comments to GitHub issues in allowed organizations.
 List<Uri> getUriWhitelist() => List.unmodifiable(<Uri>[
-  for (final organization in formatting.organizations)
-      Uri.https('github.com', '$organization/')
+      for (final organization in formatting.organizations)
+        Uri.https('github.com', '$organization/')
     ]);
 
 // Use for local testing