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 ## [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. * 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 * Now logging the flutter driver command used when the configuration setting `logFlutterProcessOutput` is true

View File

@ -15,8 +15,6 @@ environment:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
path: ^1.6.2
glob: ^1.1.7
# The following adds the Cupertino Icons font to your application. # The following adds the Cupertino Icons font to your application.
@ -30,6 +28,8 @@ dev_dependencies:
sdk: flutter sdk: flutter
flutter_gherkin: flutter_gherkin:
path: ../ path: ../
path:
glob:
# For information on the generic Dart part of this file, see the # For information on the generic Dart part of this file, see the
# following page: https://www.dartlang.org/tools/pub/pubspec # 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 name: gherkin
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.3" version: "1.1.5"
glob: glob:
dependency: "direct main" dependency: "direct main"
description: description:
name: glob name: glob
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.7" version: "1.2.0"
html: html:
dependency: transitive dependency: transitive
description: description:
name: html name: html
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.14.0+2" version: "0.14.0+3"
http: http:
dependency: transitive dependency: transitive
description: description:
@ -203,6 +203,20 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.0.2" 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: node_preamble:
dependency: transitive dependency: transitive
description: description:
@ -403,7 +417,7 @@ packages:
name: watcher name: watcher
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.9.7+12" version: "0.9.7+13"
web_socket_channel: web_socket_channel:
dependency: transitive dependency: transitive
description: description:
@ -419,4 +433,4 @@ packages:
source: hosted source: hosted
version: "2.2.0" version: "2.2.0"
sdks: sdks:
dart: ">=2.2.2 <3.0.0" dart: ">=2.3.0 <3.0.0"

View File

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