@applitools/spec-driver-browser-extension 1.5.0 → 1.5.1

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,34 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.1](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-browser-extension@1.5.0...js/spec-driver-browser-extension@1.5.1) (2026-05-19)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * address CI regressions from executeBrowserCommands and Chromium 140+ service worker ([#3848](https://github.com/Applitools-Dev/sdk/issues/3848)) ([099ada5](https://github.com/Applitools-Dev/sdk/commit/099ada5e52d4153157b98c2203df428579527e49))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/snippets bumped to 2.9.1
14
+ #### Bug Fixes
15
+
16
+ * declare @babel/preset-typescript dep for sandbox build ([#3815](https://github.com/Applitools-Dev/sdk/issues/3815)) ([10c44c6](https://github.com/Applitools-Dev/sdk/commit/10c44c66635f1ed4e0361f22ecebf2221c2cc912))
17
+ * @applitools/driver bumped to 1.26.1
18
+ #### Bug Fixes
19
+
20
+ * address CI regressions from executeBrowserCommands and Chromium 140+ service worker ([#3848](https://github.com/Applitools-Dev/sdk/issues/3848)) ([099ada5](https://github.com/Applitools-Dev/sdk/commit/099ada5e52d4153157b98c2203df428579527e49))
21
+
22
+
23
+
24
+ * @applitools/spec-driver-playwright bumped to 1.9.1
25
+ #### Bug Fixes
26
+
27
+ * address CI regressions from executeBrowserCommands and Chromium 140+ service worker ([#3848](https://github.com/Applitools-Dev/sdk/issues/3848)) ([099ada5](https://github.com/Applitools-Dev/sdk/commit/099ada5e52d4153157b98c2203df428579527e49))
28
+
29
+
30
+
31
+
3
32
  ## [1.5.0](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-browser-extension@1.4.16...js/spec-driver-browser-extension@1.5.0) (2026-05-05)
4
33
 
5
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/spec-driver-browser-extension",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "keywords": [
5
5
  "playwright",
6
6
  "chrome devtools protocol",
@@ -40,13 +40,14 @@
40
40
  "playwright:setup": "yarn playwright install --with-deps chromium"
41
41
  },
42
42
  "dependencies": {
43
- "@applitools/driver": "1.26.0",
43
+ "@applitools/driver": "1.26.1",
44
44
  "@applitools/utils": "1.14.4",
45
45
  "webextension-polyfill": "0.10.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@applitools/api-extractor": "^1.2.22",
49
- "@applitools/spec-driver-playwright": "^1.9.0",
49
+ "@applitools/logger": "^2.2.11",
50
+ "@applitools/spec-driver-playwright": "^1.9.1",
50
51
  "@applitools/test-utils": "^1.5.17",
51
52
  "@babel/core": "^7.26.0",
52
53
  "@babel/preset-env": "^7.22.5",
@@ -1,7 +1,7 @@
1
1
  import type { Size } from '@applitools/utils';
2
2
  import type { SpecType, SpecDriver as BaseSpecDriver, CommonSelector, DriverInfo, Cookie } from '@applitools/driver';
3
3
  import type { BrowserCommand } from '@applitools/driver';
4
- import { Logger } from '@applitools/logger';
4
+ import type { Logger } from '@applitools/logger';
5
5
  import type { Ref } from './refer';
6
6
  export type Driver = {
7
7
  windowId: number;