chore(lib): updated to latest gherkin lib

This commit is contained in:
Jon Samwell 2019-12-05 17:12:59 +11:00
parent 0e0ab079d0
commit 1ac4b909af
5 changed files with 27 additions and 10 deletions

View File

@ -1,3 +1,6 @@
## [1.1.5] - 05/12/2019
* Updated to latest Gherkin library (see https://github.com/jonsamwell/dart_gherkin/blob/master/CHANGELOG.md#115---05122019)
## [1.1.4] - 27/09/2019
* Added configuration parameter `flutterBuildTimeout` to allow setting the app build wait timeout. Slower machines may need longer to build and start the Flutter app under test.
* Now logging the flutter driver command used when the configuration setting `logFlutterProcessOutput` is true

View File

@ -15,8 +15,6 @@ environment:
dependencies:
flutter:
sdk: flutter
path: ^1.6.2
glob: ^1.1.7
# The following adds the Cupertino Icons font to your application.
@ -30,6 +28,8 @@ dev_dependencies:
sdk: flutter
flutter_gherkin:
path: ../
path:
glob:
# For information on the generic Dart part of this file, see the
# following page: https://www.dartlang.org/tools/pub/pubspec

File diff suppressed because one or more lines are too long

View File

@ -104,21 +104,21 @@ packages:
name: gherkin
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.3"
version: "1.1.5"
glob:
dependency: "direct main"
description:
name: glob
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.7"
version: "1.2.0"
html:
dependency: transitive
description:
name: html
url: "https://pub.dartlang.org"
source: hosted
version: "0.14.0+2"
version: "0.14.0+3"
http:
dependency: transitive
description:
@ -203,6 +203,20 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.2"
node_interop:
dependency: transitive
description:
name: node_interop
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.3"
node_io:
dependency: transitive
description:
name: node_io
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1+2"
node_preamble:
dependency: transitive
description:
@ -403,7 +417,7 @@ packages:
name: watcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.9.7+12"
version: "0.9.7+13"
web_socket_channel:
dependency: transitive
description:
@ -419,4 +433,4 @@ packages:
source: hosted
version: "2.2.0"
sdks:
dart: ">=2.2.2 <3.0.0"
dart: ">=2.3.0 <3.0.0"

View File

@ -1,6 +1,6 @@
name: flutter_gherkin
description: A Gherkin / Cucumber parser and test runner for Dart and Flutter
version: 1.1.4
version: 1.1.5
author: Jon Samwell <jonsamwell@gmail.com>
homepage: https://github.com/jonsamwell/flutter_gherkin
@ -16,7 +16,7 @@ dependencies:
sdk: flutter
glob: ^1.1.7
meta: ">=1.1.6 <2.0.0"
gherkin: ^1.1.3
gherkin: ^1.1.5
dev_dependencies:
test: ">=1.6.1 <1.7.0"