Skip to content

Commit

Permalink
Update history to prepare for 3.35.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
twalpole committed Jan 24, 2021
1 parent 005ef37 commit 4cda03a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# Version 3.34.1
# Version 3.35.0
Release date: unreleased

### Added

* Support Regexp matching for individual class names in :class filter passed an Array
* Animation disabler now supports JQuery animation disabling when JQuery loaded from body [Chien-Wei Huang]

### Fixed

* :button selector type use with `enable_aria_role` [Sean Doyle]
* <label> elements don't associate with aria-role buttons
* Ignore Selenium::WebDriver::Error::InvalidSessionIdError when quitting driver [Robin Daugherty]
* Firefox: Don't click input when sending keys if already focused
* Miscellaneous issues with selenium-webdriver 4.0.0.alphas
* Nil return error in node details optimizations
* Animation disabler now inserts XHTML compliant content [Dale Morgan]

# Version 3.34.0
Release date: 2020-11-26
Expand Down
2 changes: 1 addition & 1 deletion lib/capybara/selector.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# All Selectors below support the listed selector specific filters in addition to the following system-wide filters
# * :id (String, Regexp, XPath::Expression) - Matches the id attribute
# * :class (String, Array<String>, Regexp, XPath::Expression) - Matches the class(es) provided
# * :class (String, Array<String | Regexp>, Regexp, XPath::Expression) - Matches the class(es) provided
# * :style (String, Regexp, Hash<String, String>) - Match on elements style
# * :above (Element) - Match elements above the passed element on the page
# * :below (Element) - Match elements below the passed element on the page
Expand Down
2 changes: 1 addition & 1 deletion lib/capybara/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Capybara
VERSION = '3.34.0'
VERSION = '3.35.0'
end

0 comments on commit 4cda03a

Please sign in to comment.