Skip to content

Commit

Permalink
Bump v0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Jul 15, 2022
1 parent 7119602 commit b036334
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,22 @@

## Main

- Fix `refute_has` when passed a query with an invalid selector.
- Specifying `at` now removes the default `count` of 1 (#641)
## v0.30.0 (2022-07-14)

### Breaking

- Now only supports Elixir v1.12 and higher. Please open an issue if this is too restrictive. This was done to allow us to vendor `PartitionSupervisor`, which uses functions that were introduced in v1.12, so vendoring only gets us that far.

### Fixes

- Handle errors related to Wallaby.Element more consistently #632
- Fix `refute_has` when passed a query with an invalid selector #639
- Fix ambiguity between imported Browser.tap/2 and Kernel.tap/2 #686
- Fix `remote_url` config option for selenium driver #582
- Specifying `at` now removes the default `count` of 1 #641
- Various documentation fixes/improvements
- Start a ChromeDriver for every scheduler #692
- This may fix a long standing issue #365

## v0.29.1 (2021-09-22)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Read on to see what else Wallaby can do or check out the [Official Documentation

### Requirements

Wallaby requires Elixir 1.8+ and OTP 21+.
Wallaby requires Elixir 1.12+ and OTP 22+.

Wallaby also requires `bash` to be installed. Generally `bash` is widely available, but it does not come pre-installed on Alpine Linux.

Expand All @@ -86,7 +86,7 @@ Add Wallaby to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:wallaby, "~> 0.29.0", runtime: false, only: :test}
{:wallaby, "~> 0.30.0", runtime: false, only: :test}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Wallaby.Mixfile do
use Mix.Project

@source_url "https://github.com/elixir-wallaby/wallaby"
@version "0.29.1"
@version "0.30.0"
@drivers ~w(selenium chrome)
@selected_driver System.get_env("WALLABY_DRIVER")
@maintainers ["Mitchell Hanberg"]
Expand Down

0 comments on commit b036334

Please sign in to comment.