@applitools/spec-driver-webdriver 1.5.4 → 1.5.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +11 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.6](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.5.5...js/spec-driver-webdriver@1.5.6) (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/test-server bumped to 1.4.0
18
+ #### Features
19
+
20
+ * make eyes-browser truly browser-importable ([#3512](https://github.com/Applitools-Dev/sdk/issues/3512)) ([9574a2f](https://github.com/Applitools-Dev/sdk/commit/9574a2fa45ec80466dfe93744c8a736f40fb51c3))
21
+ * mcp server test results support and improvements to initial setup ([#3518](https://github.com/Applitools-Dev/sdk/issues/3518)) ([ef6c27b](https://github.com/Applitools-Dev/sdk/commit/ef6c27b9e35dc54fd588e19a4811631433e15dbb))
22
+
23
+
24
+
25
+ * @applitools/driver bumped to 1.25.1
26
+
27
+
28
+ ## [1.5.5](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.5.4...js/spec-driver-webdriver@1.5.5) (2026-01-19)
29
+
30
+
31
+ ### Dependencies
32
+
33
+ * @applitools/driver bumped to 1.25.0
34
+ #### Features
35
+
36
+ * multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
37
+
3
38
  ## [1.5.4](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.5.3...js/spec-driver-webdriver@1.5.4) (2026-01-11)
4
39
 
5
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/spec-driver-webdriver",
3
- "version": "1.5.4",
3
+ "version": "1.5.6",
4
4
  "keywords": [
5
5
  "webdriver",
6
6
  "chrome devtools protocol",
@@ -49,14 +49,14 @@
49
49
  "up:framework": "echo \"$(jq '.devDependencies.webdriver = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
50
50
  },
51
51
  "dependencies": {
52
- "@applitools/driver": "1.24.4",
52
+ "@applitools/driver": "1.25.1",
53
53
  "@applitools/utils": "1.14.1",
54
54
  "http-proxy-agent": "5.0.0",
55
55
  "https-proxy-agent": "5.0.1"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@applitools/api-extractor": "^1.2.22",
59
- "@applitools/test-server": "^1.3.5",
59
+ "@applitools/test-server": "^1.4.0",
60
60
  "@applitools/test-utils": "^1.5.17",
61
61
  "@types/node": "^12.20.55",
62
62
  "nock": "^13.3.2",
@@ -70,5 +70,13 @@
70
70
  },
71
71
  "publishConfig": {
72
72
  "access": "public"
73
+ },
74
+ "lavamoat": {
75
+ "allowScripts": {
76
+ "webdriver>@wdio/utils>edgedriver": false,
77
+ "webdriver>@wdio/utils>geckodriver": false,
78
+ "webdriver>ws>bufferutil": false,
79
+ "webdriver>ws>utf-8-validate": false
80
+ }
73
81
  }
74
82
  }