Skip to content

Commit

Permalink
Prep for v1.2.2 (#134)
Browse files Browse the repository at this point in the history
-  Update change log.
-  Update readme.
-  Update dependency version numbers for Bazel and pub.
  • Loading branch information
DrMarcII authored Jan 11, 2017
1 parent e651776 commit 27e2c77
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 42 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v1.2.2

* Refactor tests.
* Make project buildable and testable with Bazel.
* Enable generics for waitFor.

## v1.2.1

* Enable redirects to handle 303 responses from Selenium.
Expand Down
19 changes: 1 addition & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,26 +46,9 @@ and as such, require the use of the WebDriver remote server.

## Testing

You can run the tests either with bazel (only supported on Linux) or with pub.

To run the tests with bazel:
You can run the tests either with bazel (only supported on Linux).

```shell
bazel test ...
```

To run the tests with pub, you will need to first download
[chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads)
and start it:

```shell
chromedriver
```

Then in another terminal you can run:

```shell
pub install
WEB_TEST_WEBDRIVER_SERVER=http://localhost:9515/ pub run test:test
```
15 changes: 7 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: webdriver
version: 1.2.1
version: 1.2.2
author: Marc Fisher II <fisherii@google.com>
description: >
Provides WebDriver bindings for Dart. These use the WebDriver JSON interface,
Expand All @@ -8,11 +8,10 @@ homepage: https://github.com/google/webdriver.dart
environment:
sdk: '>=1.21.0 <2.0.0'
dependencies:
archive: '^1.0.20'
matcher: '^0.12.0+1'
path: '^1.3.6'
stack_trace: '^1.3.4'
unittest: '^0.11.6+1'
archive: '^1.0.0'
matcher: '^0.12.0'
path: '^1.3.0'
stack_trace: '^1.3.0'
unittest: '^0.11.6'
dev_dependencies:
test: '^0.12.3+8'

test: '^0.12.3'
32 changes: 16 additions & 16 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def webdriver_dart_repositories(
native.new_http_archive(
name="org_dartlang_pub_analyzer",
build_file=str(Label("//build_files:analyzer.BUILD")),
sha256="9411ecbcc39275a78c59d0b205918433c8592413c966d63e67c5e3a87893a887",
url="https://storage.googleapis.com/pub.dartlang.org/packages/analyzer-0.29.1.tar.gz"
sha256="ee9bb36b3bc588b97d491a28ba5f9823ed1cd0eb99dabdcf5b8b52bf0d757f06",
url="https://storage.googleapis.com/pub.dartlang.org/packages/analyzer-0.29.3.tar.gz"
)

if not omit_org_dartlang_pub_archive:
Expand Down Expand Up @@ -121,8 +121,8 @@ def webdriver_dart_repositories(
native.new_http_archive(
name="org_dartlang_pub_collection",
build_file=str(Label("//build_files:collection.BUILD")),
sha256="6b8d4ed7922b3734bacf82761eac0267c839d4647418f779c63d45c6fe6cc171",
url="https://storage.googleapis.com/pub.dartlang.org/packages/collection-1.12.0.tar.gz"
sha256="396abdd82b601422f21b3020392b45f8464b89c2c407082eaf8c038ef2b8306b",
url="https://storage.googleapis.com/pub.dartlang.org/packages/collection-1.13.0.tar.gz"
)

if not omit_org_dartlang_pub_convert:
Expand Down Expand Up @@ -185,8 +185,8 @@ def webdriver_dart_repositories(
native.new_http_archive(
name="org_dartlang_pub_http_parser",
build_file=str(Label("//build_files:http_parser.BUILD")),
sha256="ec05c896b259f60296d92807b1231cf6b94bcf3e3d99e4e707b3e0ef82d36c2e",
url="https://storage.googleapis.com/pub.dartlang.org/packages/http_parser-3.1.0.tar.gz"
sha256="cdd2fbf11f37ada5d81ab55395a5f1a7be303beee4b2b73631192cc6fe46a34e",
url="https://storage.googleapis.com/pub.dartlang.org/packages/http_parser-3.1.1.tar.gz"
)

if not omit_org_dartlang_pub_isolate:
Expand Down Expand Up @@ -313,24 +313,24 @@ def webdriver_dart_repositories(
native.new_http_archive(
name="org_dartlang_pub_source_map_stack_trace",
build_file=str(Label("//build_files:source_map_stack_trace.BUILD")),
sha256="7f457f6c378e1f325bad74793cb864ca9eab3875604b52632832cc59aeb74c95",
url="https://storage.googleapis.com/pub.dartlang.org/packages/source_map_stack_trace-1.1.3.tar.gz"
sha256="a9dde62354b0544f4c7e6ee00e7584e327c77dd6b380f18d7ec91aa72e07ebf2",
url="https://storage.googleapis.com/pub.dartlang.org/packages/source_map_stack_trace-1.1.4.tar.gz"
)

if not omit_org_dartlang_pub_source_maps:
native.new_http_archive(
name="org_dartlang_pub_source_maps",
build_file=str(Label("//build_files:source_maps.BUILD")),
sha256="b42839ea0ba3245f429ba98ae57aeb5f0db957938ce914e96a40d1b860d6040f",
url="https://storage.googleapis.com/pub.dartlang.org/packages/source_maps-0.10.1+3.tar.gz"
sha256="1b77163b33baf614454ad34c79233754e120fbd03ac491dee70a2612a15eae85",
url="https://storage.googleapis.com/pub.dartlang.org/packages/source_maps-0.10.2.tar.gz"
)

if not omit_org_dartlang_pub_source_span:
native.new_http_archive(
name="org_dartlang_pub_source_span",
build_file=str(Label("//build_files:source_span.BUILD")),
sha256="4f8990c5182821dd7632375ccbac47ccdf226b16a68bec356dbf46a3ecce19af",
url="https://storage.googleapis.com/pub.dartlang.org/packages/source_span-1.3.0.tar.gz"
sha256="32c891d21baa24013f1a516d367061862daa47039f052e322d83767cbe862725",
url="https://storage.googleapis.com/pub.dartlang.org/packages/source_span-1.3.1.tar.gz"
)

if not omit_org_dartlang_pub_stack_trace:
Expand Down Expand Up @@ -361,8 +361,8 @@ def webdriver_dart_repositories(
native.new_http_archive(
name="org_dartlang_pub_test",
build_file=str(Label("//build_files:test.BUILD")),
sha256="5c56e194a30ac190e0e2ee91c84962bece8057e0560da922176c4f864b00221b",
url="https://storage.googleapis.com/pub.dartlang.org/packages/test-0.12.17+2.tar.gz"
sha256="064efe7993b3be3a1980f88c5d1e5573f3bae1808d45785238a445edb70638f4",
url="https://storage.googleapis.com/pub.dartlang.org/packages/test-0.12.18+1.tar.gz"
)

if not omit_org_dartlang_pub_typed_data:
Expand All @@ -377,8 +377,8 @@ def webdriver_dart_repositories(
native.new_http_archive(
name="org_dartlang_pub_unittest",
build_file=str(Label("//build_files:unittest.BUILD")),
sha256="d6532a6e5cba4351fa07a46b5fba92c54bafa647cc9a6ef7ababcc68d31f9c2f",
url="https://storage.googleapis.com/pub.dartlang.org/packages/unittest-0.11.6+4.tar.gz"
sha256="96cd840fc210e876f6e9734ce2f95644c30c1b162a833b6015a6aa752b31ecf3",
url="https://storage.googleapis.com/pub.dartlang.org/packages/unittest-0.11.7.tar.gz"
)

if not omit_org_dartlang_pub_utf:
Expand Down

0 comments on commit 27e2c77

Please sign in to comment.