@wdio/visual-service 9.0.0 → 9.0.2

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 CHANGED
@@ -1,5 +1,61 @@
1
1
  # @wdio/visual-service
2
2
 
3
+ ## 9.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 8ff1bc3: # 🐛 BugFix
8
+
9
+ ## #1078: Cursor inside shadow is shown, even with disableBlinkingCursor
10
+
11
+ Fix option "disableBlinkingCursor" to also work within shadowdom
12
+
13
+ # Committers: 1
14
+
15
+ - Carlo Jeske ([@plusgut](https://github.com/plusgut))
16
+
17
+ - Updated dependencies [8ff1bc3]
18
+ - @wdio/image-comparison-core@1.0.2
19
+
20
+ ## 9.0.1
21
+
22
+ ### Patch Changes
23
+
24
+ - 79d2b1d: # 🐛 Bugfixes
25
+
26
+ ## #1073 Normalize Safari desktop screenshots by trimming macOS window corner radius and top window shadow
27
+
28
+ Safari desktop screenshots included the macOS window mask at the bottom and a shadow at the top. These artifacts caused incorrect detection of the viewable area for full page screenshots, which resulted in misaligned stitching. The viewable region is now calculated correctly by trimming these areas.
29
+
30
+ # Committers: 1
31
+
32
+ - Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
33
+
34
+ - 782b98a: # 🐛 Bugfixes
35
+
36
+ ## #1000 fix incorrect cropping and stitching of last image for fullpage screenshots on mobile
37
+
38
+ The determination of the position of the last image in mobile fullpage webscreenshots was incorrect. This was mostly seen with iOS, but also had some impact on Android. This is now fixed
39
+
40
+ # Committers: 1
41
+
42
+ - Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
43
+
44
+ - 2c109b3: # 🐛 Bugfixes
45
+
46
+ ## #1038 fix incorrect determination of ignore area
47
+
48
+ Ignore regions with `left: 0` and `right:0` lead to an incorrect width which lead to an incorrect ignore area. This is now fixed
49
+
50
+ # Committers: 1
51
+
52
+ - Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
53
+
54
+ - Updated dependencies [79d2b1d]
55
+ - Updated dependencies [782b98a]
56
+ - Updated dependencies [2c109b3]
57
+ - @wdio/image-comparison-core@1.0.1
58
+
3
59
  ## 9.0.0
4
60
 
5
61
  ### Major Changes
@@ -82,12 +138,13 @@
82
138
  - be4272c: fix: [983](#983) in multiremote, commands are now executed on the requested instances
83
139
  - Updated dependencies [74df53b]
84
140
  - Updated dependencies [1326e99]
141
+
85
142
  - @wdio/image-comparison-core@1.0.0
86
143
 
87
144
  ## Committers: 2
88
145
 
89
- - P-Courteille ([@P-Courteille](https://github.com/P-Courteille))
90
- - Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
146
+ - P-Courteille ([@P-Courteille](https://github.com/P-Courteille))
147
+ - Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
91
148
 
92
149
  ## 8.0.4
93
150
 
@@ -36,7 +36,7 @@ export async function checkStorybookIsRunning(url) {
36
36
  try {
37
37
  const res = await fetch(url, { method: 'GET', headers: {} });
38
38
  if (res.status !== 200) {
39
- throw new Error(`Unxpected status: ${res.status}`);
39
+ throw new Error(`Unexpected status: ${res.status}`);
40
40
  }
41
41
  }
42
42
  catch (_e) {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@wdio/visual-service",
3
3
  "author": "Wim Selles - wswebcreation",
4
4
  "description": "Image comparison / visual regression testing for WebdriverIO",
5
- "version": "9.0.0",
5
+ "version": "9.0.2",
6
6
  "license": "MIT",
7
7
  "homepage": "https://webdriver.io/docs/visual-testing",
8
8
  "repository": {
@@ -22,9 +22,9 @@
22
22
  "dependencies": {
23
23
  "@wdio/globals": "^9.17.0",
24
24
  "@wdio/logger": "^9.18.0",
25
- "@wdio/types": "^9.16.2",
26
- "expect-webdriverio": "^5.4.0",
27
- "@wdio/image-comparison-core": "1.0.0"
25
+ "@wdio/types": "^9.20.0",
26
+ "expect-webdriverio": "^5.5.0",
27
+ "@wdio/image-comparison-core": "1.0.2"
28
28
  },
29
29
  "scripts": {
30
30
  "build": "run-s clean build:*",