@applitools/eyes-playwright 1.39.4 → 1.39.5

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,40 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.39.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-playwright@1.39.4...js/eyes-playwright@1.39.5) (2025-09-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * isDisabled with reporter | FLD-3528 ([#3198](https://github.com/Applitools-Dev/sdk/issues/3198)) ([98ad069](https://github.com/Applitools-Dev/sdk/commit/98ad069fc23a74ec836a660e1744727d6b2e0f17))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/dom-shared bumped to 1.1.1
14
+ #### Code Refactoring
15
+
16
+ * dom shared js -> ts ([#3202](https://github.com/Applitools-Dev/sdk/issues/3202)) ([c6d6b77](https://github.com/Applitools-Dev/sdk/commit/c6d6b77179d48539cc40f609f150f380aa48d6bb))
17
+ * @applitools/tunnel-client bumped to 1.11.0
18
+ #### Features
19
+
20
+ * mask apiKey and eyesServerUrl from the logs | AD-10661 ([#3200](https://github.com/Applitools-Dev/sdk/issues/3200)) ([eaba565](https://github.com/Applitools-Dev/sdk/commit/eaba565898d8e72745a1e95c9b17ae77c396ca14))
21
+ * report to coralogix | AD-10945 ([#3191](https://github.com/Applitools-Dev/sdk/issues/3191)) ([2f57db1](https://github.com/Applitools-Dev/sdk/commit/2f57db162db4d3dbe4cdab06096f0d183af94946))
22
+ * @applitools/core bumped to 4.45.0
23
+ #### Features
24
+
25
+ * respect NO_PROXY for WebDriver | AD-10927 | FLD-2702 ([#3186](https://github.com/Applitools-Dev/sdk/issues/3186)) ([8e53d9a](https://github.com/Applitools-Dev/sdk/commit/8e53d9a7c1b6fe38c11d63fad915fc89b199a749))
26
+
27
+
28
+
29
+ * @applitools/dom-snapshot bumped to 4.13.5
30
+
31
+ * @applitools/dom-capture bumped to 11.6.3
32
+
33
+ * @applitools/ec-client bumped to 1.12.5
34
+
35
+ * @applitools/eyes bumped to 1.36.4
36
+
37
+
3
38
  ## [1.39.4](https://github.com/Applitools-Dev/sdk/compare/js/eyes-playwright@1.39.3...js/eyes-playwright@1.39.4) (2025-08-27)
4
39
 
5
40
 
@@ -167,6 +167,10 @@ exports.InternalData = {
167
167
  async write({ testInfo, data, eyes, uuid }) {
168
168
  var _a, _b;
169
169
  const logger = ((_a = eyes.getLogger) === null || _a === void 0 ? void 0 : _a.call(eyes)) || (0, logger_1.makeLogger)();
170
+ if (!data || data.length === 0) {
171
+ logger.log('No data to write for test:', testInfo.title);
172
+ return;
173
+ }
170
174
  const uploadUrl = eyes._eyes.test.account.batchExecReportsUrl
171
175
  .replace('__batch_id__', uuid)
172
176
  .replace('__report_id__', uuid);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-playwright",
3
- "version": "1.39.4",
3
+ "version": "1.39.5",
4
4
  "description": "Applitools Eyes SDK for Playwright",
5
5
  "keywords": [
6
6
  "eyes-playwright",
@@ -59,7 +59,7 @@
59
59
  "up:framework": "echo \"$(jq '.devDependencies.playwright = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
60
60
  },
61
61
  "dependencies": {
62
- "@applitools/eyes": "1.36.3",
62
+ "@applitools/eyes": "1.36.4",
63
63
  "@applitools/req": "1.8.2",
64
64
  "@applitools/spec-driver-playwright": "1.7.3",
65
65
  "@applitools/utils": "1.11.1",