Skip to content

Commit

Permalink
0.20.1 (#2443)
Browse files Browse the repository at this point in the history
  • Loading branch information
miherlosev authored and AndreyBelym committed May 22, 2018
1 parent 3cca39e commit 7307f6f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .publishrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"gitTag": true
},
"confirm": true,
"publishTag": "alpha",
"publishTag": "latest",
"prePublishScript": "gulp test-server",
"postPublishScript": "gulp docker-publish"
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v0.20.1 (2018-6-21)

#### :gear: Typescript definitions for new features from v0.20.0 have been added (#2428)

### Bug fixes

* Now sites with the overridden `Element.prototype.matches` method work properly [#2241](https://github.com/DevExpress/testcafe/issues/2241)
* `window.Blob` now returns a correct result when Array of `ArrayBuffer` is passed as a parameter ([testcafe-hammerhead/#1599](https://github.com/DevExpress/testcafe-hammerhead/issues/1599))
* Firefox Shield popup is not shown during test execution now ([#2421](https://github.com/DevExpress/testcafe/pull/2421))

## v0.20.0 (2018-5-15)

### Request Hooks: Intercepting HTTP requests ([#1341](https://github.com/DevExpress/testcafe/issues/1341))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "testcafe",
"description": "Automated browser testing for the modern web development stack.",
"license": "MIT",
"version": "0.20.1-alpha.1",
"version": "0.20.1",
"author": {
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
Expand Down
22 changes: 12 additions & 10 deletions test/functional/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,20 @@ testingEnvironments[testingEnvironmentNames.mobileBrowsers] = {
alias: 'android'
},
{
os: 'ios',
osVersion: '10.0',
device: 'iPad Pro (9.7 inch)',
name: 'Mobile Safari',
alias: 'ipad'
realMobile: true,
os: 'ios',
osVersion: '11.2',
device: 'iPad Pro',
name: 'Mobile Safari',
alias: 'ipad'
},
{
os: 'ios',
osVersion: '10.0',
device: 'iPhone 7 Plus',
name: 'Mobile Safari',
alias: 'iphone'
realMobile: true,
os: 'ios',
osVersion: '10.3',
device: 'iPhone 7 Plus',
name: 'Mobile Safari',
alias: 'iphone'
}
]
};
Expand Down

0 comments on commit 7307f6f

Please # to comment.