@applitools/spec-driver-puppeteer 1.4.24 → 1.4.26

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,38 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.4.26](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.25...js/spec-driver-puppeteer@1.4.26) (2025-03-30)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/utils bumped to 1.8.0
9
+ #### Features
10
+
11
+ * allow sending callback functions to waitBeforeCapture ([#2780](https://github.com/Applitools-Dev/sdk/issues/2780)) ([4caa2e8](https://github.com/Applitools-Dev/sdk/commit/4caa2e8ae055d3dd48164eeceaa4c691eeadcdd4))
12
+ * @applitools/logger bumped to 2.1.2
13
+
14
+ * @applitools/driver bumped to 1.21.0
15
+ #### Features
16
+
17
+ * allow sending callback functions to waitBeforeCapture ([#2780](https://github.com/Applitools-Dev/sdk/issues/2780)) ([4caa2e8](https://github.com/Applitools-Dev/sdk/commit/4caa2e8ae055d3dd48164eeceaa4c691eeadcdd4))
18
+
19
+
20
+
21
+
22
+ ## [1.4.25](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.24...js/spec-driver-puppeteer@1.4.25) (2025-02-26)
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * @applitools/utils bumped to 1.7.8
28
+ #### Performance Improvements
29
+
30
+ * ufg client dedup job info elements ([#2811](https://github.com/Applitools-Dev/sdk/issues/2811)) ([c04c147](https://github.com/Applitools-Dev/sdk/commit/c04c14776736a422292ada1029820e975adc3d31))
31
+ * @applitools/logger bumped to 2.1.1
32
+
33
+ * @applitools/driver bumped to 1.20.5
34
+
35
+
3
36
  ## [1.4.24](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.23...js/spec-driver-puppeteer@1.4.24) (2025-01-30)
4
37
 
5
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/spec-driver-puppeteer",
3
- "version": "1.4.24",
3
+ "version": "1.4.26",
4
4
  "keywords": [
5
5
  "puppeteer",
6
6
  "chrome devtools protocol",
@@ -41,8 +41,8 @@
41
41
  "up:framework": "echo \"$(jq '.devDependencies.puppeteer = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
42
42
  },
43
43
  "dependencies": {
44
- "@applitools/driver": "1.20.4",
45
- "@applitools/utils": "1.7.7"
44
+ "@applitools/driver": "1.21.0",
45
+ "@applitools/utils": "1.8.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -36,5 +36,6 @@ export type PrimarySpecType = {
36
36
  element: Element<globalThis.Element>;
37
37
  selector: Selector;
38
38
  secondary: never;
39
+ userFunction: unknown;
39
40
  };
40
41
  export type SpecDriver = import('@applitools/driver').SpecDriver<PrimarySpecType>;