@applitools/spec-driver-selenium 1.7.10 → 1.7.12
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 +27 -0
- package/package.json +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.7.12](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-selenium@1.7.11...js/spec-driver-selenium@1.7.12) (2026-02-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/logger bumped to 2.2.8
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* use utils for environment variable retrieval in logger handlers ([#3551](https://github.com/Applitools-Dev/sdk/issues/3551)) ([caf97f3](https://github.com/Applitools-Dev/sdk/commit/caf97f34207bc3b8ee6ccda2855c27a99a262f8c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
#### Performance Improvements
|
|
15
|
+
|
|
16
|
+
* add timing logs to classic | FLD-4137 ([#3543](https://github.com/Applitools-Dev/sdk/issues/3543)) ([de2b0aa](https://github.com/Applitools-Dev/sdk/commit/de2b0aaf08d813f2c59e9552947c2f4fbc12da48))
|
|
17
|
+
* @applitools/driver bumped to 1.25.1
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [1.7.11](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-selenium@1.7.10...js/spec-driver-selenium@1.7.11) (2026-01-19)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
* @applitools/driver bumped to 1.25.0
|
|
26
|
+
#### Features
|
|
27
|
+
|
|
28
|
+
* multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
|
|
29
|
+
|
|
3
30
|
## [1.7.10](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-selenium@1.7.9...js/spec-driver-selenium@1.7.10) (2026-01-11)
|
|
4
31
|
|
|
5
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-selenium",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.12",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"selenium",
|
|
6
6
|
"selenium-webdriver",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"up:framework": "echo \"$(jq '.devDependencies[\"selenium-webdriver\"] = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@applitools/driver": "1.
|
|
49
|
+
"@applitools/driver": "1.25.1",
|
|
50
50
|
"@applitools/utils": "1.14.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
@@ -65,5 +65,11 @@
|
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|
|
68
|
+
},
|
|
69
|
+
"lavamoat": {
|
|
70
|
+
"allowScripts": {
|
|
71
|
+
"selenium-webdriver>ws>bufferutil": false,
|
|
72
|
+
"selenium-webdriver>ws>utf-8-validate": false
|
|
73
|
+
}
|
|
68
74
|
}
|
|
69
75
|
}
|