@applitools/spec-driver-puppeteer 1.4.21 → 1.4.23
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 +31 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.4.23](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.22...js/spec-driver-puppeteer@1.4.23) (2025-01-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/snippets bumped to 2.6.4
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* remove side-eyes and fix code scanning issues ([#2712](https://github.com/Applitools-Dev/sdk/issues/2712)) ([cda98e4](https://github.com/Applitools-Dev/sdk/commit/cda98e4748c73cd97c11f646a2b5e26ff9416892))
|
|
12
|
+
* @applitools/driver bumped to 1.20.3
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [1.4.22](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.21...js/spec-driver-puppeteer@1.4.22) (2024-12-31)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Dependencies
|
|
19
|
+
|
|
20
|
+
* @applitools/utils bumped to 1.7.7
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* shim process execution functions for browser environment ([#2698](https://github.com/Applitools-Dev/sdk/issues/2698)) ([8d77db4](https://github.com/Applitools-Dev/sdk/commit/8d77db48e1c7fd54cad92c89a819a924255e5868))
|
|
24
|
+
* @applitools/logger bumped to 2.1.0
|
|
25
|
+
#### Features
|
|
26
|
+
|
|
27
|
+
* logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
* @applitools/driver bumped to 1.20.2
|
|
32
|
+
|
|
33
|
+
|
|
3
34
|
## [1.4.21](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.20...js/spec-driver-puppeteer@1.4.21) (2024-12-18)
|
|
4
35
|
|
|
5
36
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-puppeteer",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.23",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"puppeteer",
|
|
6
6
|
"chrome devtools protocol",
|
|
@@ -35,13 +35,14 @@
|
|
|
35
35
|
"lint": "run --top-level eslint '**/*.ts'",
|
|
36
36
|
"build": "run --top-level tspc --project ./tsconfig.build.json",
|
|
37
37
|
"test": "run --top-level mocha './test/**/*.spec.ts' --exit",
|
|
38
|
-
"setup": "yarn puppeteer:setup",
|
|
38
|
+
"setup": "[[ \"$APPLITOOLS_FRAMEWORK_VERSION\" != \"21\" ]] && yarn puppeteer:setup || yarn puppeteer:setup-chrome-only",
|
|
39
39
|
"puppeteer:setup": "PUPPETEER_PRODUCT=firefox node --eval 'import(\"puppeteer/install.mjs\").catch(() => import(\"puppeteer/install.js\"))'",
|
|
40
|
+
"puppeteer:setup-chrome-only": "puppeteer browsers install chrome",
|
|
40
41
|
"up:framework": "echo \"$(jq '.devDependencies.puppeteer = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@applitools/driver": "1.20.
|
|
44
|
-
"@applitools/utils": "1.7.
|
|
44
|
+
"@applitools/driver": "1.20.3",
|
|
45
|
+
"@applitools/utils": "1.7.7"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@applitools/api-extractor": "^1.2.22",
|