Releases: bazelbuild/rules_webtesting
Version 0.3.5
Version 0.3.4
Bug fixes and improvements, including:
- PY3 migration
- More robust capabilities merging
- CDP support for ChromeDriver
Version 0.3.3
Bugfixes for Windows support
Add the following to your WORSKPACE file to use:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_webtesting",
sha256 = "9bb461d5ef08e850025480bab185fd269242d4e533bca75bfb748001ceb343c3",
urls = [
"https://github.com/bazelbuild/rules_webtesting/releases/download/0.3.3/rules_webtesting.tar.gz",
],
)
load("@io_bazel_rules_webtesting//web:repositories.bzl", "web_test_repositories")
web_test_repositories()
Version 0.3.2
Windows support (untested).
Change way that web_tests are tagged.
Update versions of dependencies.
Make compatible with users of rules_jvm_external
Add the following to your WORSKPACE file to use:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_webtesting",
sha256 = "f1f4d2c2f88d2beac64c82499a1e762b037966675dd892da89c87e39d72b33f6",
urls = [
"https://github.com/bazelbuild/rules_webtesting/releases/download/0.3.2/rules_webtesting.tar.gz",
],
)
load("@io_bazel_rules_webtesting//web:repositories.bzl", "web_test_repositories")
web_test_repositories()
Version 0.3.1
Update versions.
Add versioned browsers bzl file.
Add the following to your WORSKPACE file to use:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_webtesting",
sha256 = "f89ca8e91ac53b3c61da356c685bf03e927f23b97b086cc593db8edc088c143f",
urls = [
"https://github.com/bazelbuild/rules_webtesting/releases/download/0.3.1/rules_webtesting.tar.gz",
],
)
load("@io_bazel_rules_webtesting//web:repositories.bzl", "web_test_repositories")
web_test_repositories()
Version 0.3.0
Created a new release version of rules_webtesting that includes prebuilt binaries.
Split repository rules based on the test language they support.
Add the following to your WORSKPACE file to use:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_webtesting",
sha256 = "1c0900547bdbe33d22aa258637dc560ce6042230e41e9ea9dad5d7d2fca8bc42",
urls = [
"https://github.com/bazelbuild/rules_webtesting/releases/download/0.3.0/rules_webtesting.tar.gz",
],
)
load("@io_bazel_rules_webtesting//web:repositories.bzl", "web_test_repositories")
web_test_repositories()
Version 0.2.2
Various compatibility fixes.
Version 0.2.1
Improve Sauce Labs support.
Update versions of dependencies.
Version 0.2.0
Added WSL.
Various changes to capabilities variables.
Removed browser-specific environments/services.
Version 0.1.2
- Add language specific BUILD rules.
- Improve extensibility of Web Test Launcher.