mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
Update History in preparation for 3.25 release
This commit is contained in:
parent
b9d1b8f3a4
commit
c0f1a48d8d
3 changed files with 17 additions and 2 deletions
15
History.md
15
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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Capybara
|
||||
VERSION = '3.24.0'
|
||||
VERSION = '3.25.0'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue