Skip to content

Commit 3f86c24

Browse files
chore: release [skip ci] (#1100)
Co-authored-by: WebdriverIO Release Bot <[email protected]>
1 parent 340fbe6 commit 3f86c24

File tree

11 files changed

+96
-49
lines changed

11 files changed

+96
-49
lines changed

.changeset/improve-error-message-baseline.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.changeset/swift-terms-jump.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/tasty-forks-wonder.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

packages/image-comparison-core/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# @wdio/image-comparison-core
22

3+
## 1.1.1
4+
5+
### Patch Changes
6+
7+
- 340fbe6: # 🐛 Bugfixes
8+
9+
## #1098 Improve error message when baseline is missing and both flags are false
10+
11+
When `autoSaveBaseline = false` and `alwaysSaveActualImage = false` and a baseline image doesn't exist, the error message now provides clear guidance suggesting users set `alwaysSaveActualImage` to `true` if they need the actual image to create a baseline manually.
12+
13+
# Committers: 1
14+
15+
- Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
16+
17+
- e4e5b5c: # 🐛 Bugfixes
18+
19+
## #1085 autoSaveBaseline collides with the new alwaysSaveActualImage flag
20+
21+
When `autoSaveBaseline` is `true` and `alwaysSaveActualImage` is `false`, actual images were still saved. This patch should fix that
22+
23+
# Committers: 1
24+
25+
- Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
26+
327
## 1.1.0
428

529
### Minor Changes

packages/image-comparison-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdio/image-comparison-core",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"author": "Wim Selles - wswebcreation",
55
"description": "Image comparison core module for @wdio/visual-service - WebdriverIO visual testing framework",
66
"keywords": [

packages/ocr-service/CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @wdio/ocr-service
22

3+
## 2.2.8
4+
5+
### Patch Changes
6+
7+
- e4e5b5c: # 🐛 Bugfixes
8+
9+
## #1085 autoSaveBaseline collides with the new alwaysSaveActualImage flag
10+
11+
When `autoSaveBaseline` is `true` and `alwaysSaveActualImage` is `false`, actual images were still saved. This patch should fix that
12+
13+
# Committers: 1
14+
15+
- Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
16+
317
## 2.2.7
418

519
### Patch Changes
@@ -8,7 +22,7 @@
822

923
## Committers: 1
1024

11-
- P-Courteille ([@P-Courteille](https://github.com/P-Courteille))
25+
- P-Courteille ([@P-Courteille](https://github.com/P-Courteille))
1226

1327
## 2.2.6
1428

packages/ocr-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@wdio/ocr-service",
33
"author": "Wim Selles - wswebcreation",
44
"description": "A WebdriverIO service that is using Tesseract OCR for Desktop/Mobile Web and Mobile Native App tests.",
5-
"version": "2.2.7",
5+
"version": "2.2.8",
66
"license": "MIT",
77
"homepage": "https://webdriver.io/docs/visual-testing",
88
"repository": {

packages/visual-reporter/CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @wdio/visual-reporter
22

3+
## 0.4.12
4+
5+
### Patch Changes
6+
7+
- e4e5b5c: # 🐛 Bugfixes
8+
9+
## #1085 autoSaveBaseline collides with the new alwaysSaveActualImage flag
10+
11+
When `autoSaveBaseline` is `true` and `alwaysSaveActualImage` is `false`, actual images were still saved. This patch should fix that
12+
13+
# Committers: 1
14+
15+
- Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
16+
317
## 0.4.11
418

519
### Patch Changes
@@ -8,7 +22,7 @@
822

923
## Committers: 1
1024

11-
- P-Courteille ([@P-Courteille](https://github.com/P-Courteille))
25+
- P-Courteille ([@P-Courteille](https://github.com/P-Courteille))
1226

1327
## 0.4.10
1428

packages/visual-reporter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@wdio/visual-reporter",
33
"author": "Wim Selles - wswebcreation",
44
"description": "Visual Testing HTML Report for the @wdio/visual-service module",
5-
"version": "0.4.11",
5+
"version": "0.4.12",
66
"license": "MIT",
77
"homepage": "https://webdriver.io/docs/visual-testing",
88
"repository": {

packages/visual-service/CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# @wdio/visual-service
22

3+
## 9.1.1
4+
5+
### Patch Changes
6+
7+
- 340fbe6: # 🐛 Bugfixes
8+
9+
## #1098 Improve error message when baseline is missing and both flags are false
10+
11+
When `autoSaveBaseline = false` and `alwaysSaveActualImage = false` and a baseline image doesn't exist, the error message now provides clear guidance suggesting users set `alwaysSaveActualImage` to `true` if they need the actual image to create a baseline manually.
12+
13+
# Committers: 1
14+
15+
- Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
16+
17+
- e4e5b5c: # 🐛 Bugfixes
18+
19+
## #1085 autoSaveBaseline collides with the new alwaysSaveActualImage flag
20+
21+
When `autoSaveBaseline` is `true` and `alwaysSaveActualImage` is `false`, actual images were still saved. This patch should fix that
22+
23+
# Committers: 1
24+
25+
- Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
26+
27+
- ddf68fe: # 🐛 Bugfixes
28+
29+
## #1084 expect(...).toMatch\*Snapshot methods do not have Promise return types
30+
31+
The methods should be typed as promises
32+
33+
# Committers: 1
34+
35+
- Wim Selles ([@wswebcreation](https://github.com/wswebcreation))
36+
37+
- Updated dependencies [340fbe6]
38+
- Updated dependencies [e4e5b5c]
39+
- @wdio/image-comparison-core@1.1.1
40+
341
## 9.1.0
442

543
### Minor Changes

0 commit comments

Comments
 (0)