@applitools/eyes-cypress 3.23.8 → 3.23.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/package.json +2 -2
- package/src/plugin/config.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## 3.23.9 - 2022/2/22
|
|
7
|
+
|
|
8
|
+
- support 'tapDirPath' with newer Cypress versions
|
|
9
|
+
- updated to @applitools/visual-grid-client@15.9.0 (from 15.8.65)
|
|
10
|
+
|
|
6
11
|
## 3.23.8 - 2022/2/16
|
|
7
12
|
|
|
8
13
|
- upgrade axios version to 0.26.0 (from 0.21.4) fixing axios > 'follow-redirects' vulnerability issue
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-cypress",
|
|
3
|
-
"version": "3.23.
|
|
3
|
+
"version": "3.23.9",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"bin": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@applitools/dom-snapshot": "4.5.12",
|
|
44
44
|
"@applitools/functional-commons": "1.6.0",
|
|
45
45
|
"@applitools/logger": "1.0.11",
|
|
46
|
-
"@applitools/visual-grid-client": "15.
|
|
46
|
+
"@applitools/visual-grid-client": "15.9.0",
|
|
47
47
|
"body-parser": "1.19.0",
|
|
48
48
|
"chalk": "3.0.0",
|
|
49
49
|
"cors": "2.8.5",
|
package/src/plugin/config.js
CHANGED