Skip to content

Commit

Permalink
sandwich-webdriver: release 0.3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Nov 3, 2024
1 parent 523d392 commit d00c7a6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
13 changes: 13 additions & 0 deletions sandwich-webdriver/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

# Unreleased

# 0.3.0.0

* BREAKING CHANGE: switch most monads away from using `MonadBaseControl IO` and switch to `MonadUnliftIO`. We also remove `MonadThrow` constraints, relying only on `MonadIO` for throwing exceptions.
* Fix window positioning commands to use window.devicePixelRatio.
* Add support for introducing Selenium dependencies using Nix with `sandwich-contexts`.
* Improve Haddocks and simplify module structure.
* Export `getDownloadDirectory` accessor for `WebDriver`.
* Be able to obtain dependencies like `ffmpeg` and `Xvfb` on demand.
* Clean up dependencies and fix some warnings on MacOS and Windows.
* Be able to pass a custom Firefox profile in `Capabilities`.
* Remove `hoistExample` helper which didn't belong in this package.
* Support video recording flags `--error-videos`/`--individual-videos`.

# 0.2.3.1

* Binary fetching: don't create the toolsRoot directory unless necessary.
Expand Down
6 changes: 3 additions & 3 deletions sandwich-webdriver/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sandwich-webdriver
version: 0.2.3.1
version: 0.3.0.0
github: "codedownio/sandwich"
license: BSD3
author: "Tom McLaughlin"
Expand Down Expand Up @@ -35,8 +35,8 @@ dependencies:
- random
- retry
- safe
- sandwich >= 0.1.0.3
- sandwich-contexts
- sandwich >= 0.3.0.0
- sandwich-contexts >= 0.3.0.0
- string-interpolate
- text
- time
Expand Down
12 changes: 6 additions & 6 deletions sandwich-webdriver/sandwich-webdriver.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.36.0.
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack

name: sandwich-webdriver
version: 0.2.3.1
version: 0.3.0.0
synopsis: Sandwich integration with Selenium WebDriver
description: Please see the <https://codedownio.github.io/sandwich/docs/extensions/sandwich-webdriver documentation>.
category: Testing
Expand Down Expand Up @@ -97,8 +97,8 @@ library
, random
, retry
, safe
, sandwich >=0.1.0.3
, sandwich-contexts
, sandwich >=0.3.0.0
, sandwich-contexts >=0.3.0.0
, string-interpolate
, text
, time
Expand Down Expand Up @@ -182,8 +182,8 @@ test-suite sandwich-webdriver-test
, random
, retry
, safe
, sandwich >=0.1.0.3
, sandwich-contexts
, sandwich >=0.3.0.0
, sandwich-contexts >=0.3.0.0
, sandwich-webdriver
, string-interpolate
, text
Expand Down

0 comments on commit d00c7a6

Please sign in to comment.