Merge pull request #471 from RedBrogdon/twoseven

Rolls 2.7.0 into dart-services.
diff --git a/.travis.yml b/.travis.yml
index a5a6442..3b2980d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,7 +3,7 @@
   - gem install coveralls-lcov
 dart:
   # Keep this value aligned with min SDK value in pubspec.yaml and FROM line of Dockerfile
-  - "2.6.1"
+  - "2.7.0"
   # TODO(devoncarew): commented out due to
   # https://github.com/dart-lang/dart-pad/issues/1002
   #- dev
diff --git a/Dockerfile b/Dockerfile
index 30fac2a..037148a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
 # Keep aligned with min SDK in pubspec.yaml and Dart test version in .travis.yml
-FROM google/dart:2.6.1
+FROM google/dart:2.7.0
 
 # The specific commit that dart-services should use. This should be kept
 # in sync with the flutter submodule in the dart-services repo.
diff --git a/pubspec.lock b/pubspec.lock
index 4528d8d..768dd62 100644
--- a/pubspec.lock
+++ b/pubspec.lock
@@ -98,14 +98,14 @@
       name: coverage
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "0.13.3+1"
+    version: "0.13.3+3"
   crypto:
     dependency: "direct main"
     description:
       name: crypto
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "2.1.3"
+    version: "2.1.4"
   csslib:
     dependency: transitive
     description:
@@ -343,7 +343,7 @@
       name: pedantic
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "1.8.0+1"
+    version: "1.9.0"
   pool:
     dependency: transitive
     description:
@@ -455,7 +455,7 @@
       name: synchronized
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "2.1.0+2"
+    version: "2.1.1"
   term_glyph:
     dependency: transitive
     description:
@@ -525,7 +525,7 @@
       name: vm_service
       url: "https://pub.dartlang.org"
     source: hosted
-    version: "2.1.1"
+    version: "2.1.3"
   watcher:
     dependency: transitive
     description:
@@ -548,4 +548,4 @@
     source: hosted
     version: "2.2.0"
 sdks:
-  dart: ">=2.6.1 <3.0.0"
+  dart: ">=2.7.0 <3.0.0"
diff --git a/pubspec.yaml b/pubspec.yaml
index d7acd1f..3d7fa3c 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -3,7 +3,7 @@
 
 environment:
   # Keep SDK aligned with .travis.yml and FROM line of Dockerfile
-  sdk: ^2.6.1
+  sdk: ^2.7.0
 
 dependencies:
   _discoveryapis_commons: 0.1.9
diff --git a/test/common_server_test.dart b/test/common_server_test.dart
index 284bf20..34c013e 100644
--- a/test/common_server_test.dart
+++ b/test/common_server_test.dart
@@ -471,7 +471,7 @@
       expect(response.status, 200);
       var data = json.decode(utf8.decode(await response.body.first));
       expect(data, {
-        'info': {'staticType': 'void'}
+        'info': {},
       });
     });