diff --git a/History.md b/History.md index 114e1955..907b53e6 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,18 @@ +# Version 3.25.0 +Release date: 2019-06-27 + +### Added + +* Animation disabler also disables before and after pseudoelements - Issue #2221 [Daniel Heath] +* `w3c_click_offset` configuration option to determine whether click offsets are calculated from element + center or top left corner + +### Fixed + +* Woraround issue with chromedriver 76/77 in W3C mode losing mouse state during legacy drag. Only fixed if + both source and target are simultaenously inside the viewport - Issue #2223 +* Negative ancestor expectations/predicates were incorrectly checking siblings rather than ancestors + # Version 3.24.0 Release date: 2019-06-13 diff --git a/README.md b/README.md index 6eee9f4f..19b0e44c 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=capybara&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=capybara&package-manager=bundler&version-scheme=semver) **Note** You are viewing the README for the development version of Capybara. If you are using the current release version -you can find the README at https://github.com/teamcapybara/capybara/blob/3.24_stable/README.md +you can find the README at https://github.com/teamcapybara/capybara/blob/3.25_stable/README.md Capybara helps you test web applications by simulating how a real user would diff --git a/lib/capybara/version.rb b/lib/capybara/version.rb index 4e7a0db4..e94e8b57 100644 --- a/lib/capybara/version.rb +++ b/lib/capybara/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Capybara - VERSION = '3.24.0' + VERSION = '3.25.0' end