@applitools/core 4.64.1 → 4.65.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,62 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.65.1](https://github.com/Applitools-Dev/sdk/compare/js/core@4.65.0...js/core@4.65.1) (2026-06-15)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/nml-client bumped to 1.11.32
9
+
10
+ * @applitools/core-base bumped to 1.35.2
11
+ #### Bug Fixes
12
+
13
+ * re-trigger release for packages missed in the AD-14089 release | AD-14089 ([#3925](https://github.com/Applitools-Dev/sdk/issues/3925)) ([0880c34](https://github.com/Applitools-Dev/sdk/commit/0880c34b66221025e70ca7e3e3fab7b45a9f8d9e))
14
+ * @applitools/ec-client bumped to 1.12.34
15
+
16
+
17
+ ## [4.65.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.64.1...js/core@4.65.0) (2026-06-14)
18
+
19
+
20
+ ### Features
21
+
22
+ * add useLatestEnvBaseline to session startInfo | AD-14089 ([#3887](https://github.com/Applitools-Dev/sdk/issues/3887)) ([b15b9af](https://github.com/Applitools-Dev/sdk/commit/b15b9af34328193f6705c90a26c24aa1e4b23d1c))
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * @applitools/dom-snapshot bumped to 4.17.3
33
+ #### Bug Fixes
34
+
35
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
36
+
37
+
38
+
39
+ * @applitools/snippets bumped to 2.9.3
40
+ #### Bug Fixes
41
+
42
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
43
+ * @applitools/driver bumped to 1.26.3
44
+
45
+ * @applitools/spec-driver-webdriver bumped to 1.6.3
46
+
47
+ * @applitools/spec-driver-selenium bumped to 1.8.3
48
+
49
+ * @applitools/spec-driver-playwright bumped to 1.9.3
50
+
51
+ * @applitools/spec-driver-puppeteer bumped to 1.8.3
52
+
53
+ * @applitools/screenshoter bumped to 3.12.22
54
+
55
+ * @applitools/nml-client bumped to 1.11.31
56
+
57
+ * @applitools/ec-client bumped to 1.12.33
58
+
59
+
3
60
  ## [4.64.1](https://github.com/Applitools-Dev/sdk/compare/js/core@4.64.0...js/core@4.64.1) (2026-06-09)
4
61
 
5
62
 
@@ -81,10 +81,15 @@ async function takeDomSnapshot({ context, settings, logger, }) {
81
81
  .context(reference)
82
82
  .then(context => context.focus())
83
83
  .catch(err => {
84
- var _a;
84
+ var _a, _b;
85
85
  const srcAttr = (_a = cdtNode.attributes) === null || _a === void 0 ? void 0 : _a.find(attr => attr.name === 'src');
86
- if (srcAttr)
86
+ if (srcAttr) {
87
+ // Frame couldn't be captured: blank the active src so the renderer treats it
88
+ // as uncaptured rather than navigating a URL we have no content for, but keep
89
+ // the original on a debug attribute.
90
+ (_b = cdtNode.attributes) === null || _b === void 0 ? void 0 : _b.push({ name: 'data-applitools-original-src', value: srcAttr.value });
87
91
  srcAttr.value = '';
92
+ }
88
93
  logger.log(`could not switch to frame during takeDomSnapshot. Path to frame: ${JSON.stringify(reference)}`, err);
89
94
  });
90
95
  if (frameContext) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "4.64.1",
3
+ "version": "4.65.1",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -61,16 +61,16 @@
61
61
  "setup:standalone": "sh -c 'yarn chromedriver --port=4444 --verbose &'"
62
62
  },
63
63
  "dependencies": {
64
- "@applitools/core-base": "1.35.1",
64
+ "@applitools/core-base": "1.35.2",
65
65
  "@applitools/dom-capture": "11.8.1",
66
- "@applitools/dom-snapshot": "4.17.2",
67
- "@applitools/driver": "1.26.2",
68
- "@applitools/ec-client": "1.12.32",
66
+ "@applitools/dom-snapshot": "4.17.3",
67
+ "@applitools/driver": "1.26.3",
68
+ "@applitools/ec-client": "1.12.34",
69
69
  "@applitools/logger": "2.2.12",
70
- "@applitools/nml-client": "1.11.30",
70
+ "@applitools/nml-client": "1.11.32",
71
71
  "@applitools/req": "1.11.0",
72
- "@applitools/screenshoter": "3.12.21",
73
- "@applitools/snippets": "2.9.2",
72
+ "@applitools/screenshoter": "3.12.22",
73
+ "@applitools/snippets": "2.9.3",
74
74
  "@applitools/socket": "1.3.13",
75
75
  "@applitools/ufg-client": "1.22.3",
76
76
  "@applitools/utils": "1.14.5",
@@ -82,10 +82,10 @@
82
82
  },
83
83
  "devDependencies": {
84
84
  "@applitools/bongo": "^5.10.0",
85
- "@applitools/spec-driver-playwright": "^1.9.2",
86
- "@applitools/spec-driver-puppeteer": "^1.8.2",
87
- "@applitools/spec-driver-selenium": "^1.8.2",
88
- "@applitools/spec-driver-webdriver": "^1.6.2",
85
+ "@applitools/spec-driver-playwright": "^1.9.3",
86
+ "@applitools/spec-driver-puppeteer": "^1.8.3",
87
+ "@applitools/spec-driver-selenium": "^1.8.3",
88
+ "@applitools/spec-driver-webdriver": "^1.6.3",
89
89
  "@applitools/test-server": "^1.4.4",
90
90
  "@applitools/test-utils": "^1.5.17",
91
91
  "@applitools/tunnel-client": "^1.12.0",