@applitools/core 4.37.0 → 4.37.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
+ ## [4.37.1](https://github.com/Applitools-Dev/sdk/compare/js/core@4.37.0...js/core@4.37.1) (2025-04-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * handle slashes in branch name extraction from GITHUB_REF ([#2937](https://github.com/Applitools-Dev/sdk/issues/2937)) ([aa8bfa3](https://github.com/Applitools-Dev/sdk/commit/aa8bfa3118f43c52485362f729556acceea40ac6))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/driver bumped to 1.21.2
14
+ #### Bug Fixes
15
+
16
+ * not properly detected platform if written with underscore | FLD-2892 ([#2934](https://github.com/Applitools-Dev/sdk/issues/2934)) ([5ca4eb9](https://github.com/Applitools-Dev/sdk/commit/5ca4eb9d952cb089b7b3678d0d6f242ac7f9dad5))
17
+ * @applitools/dom-snapshot bumped to 4.11.19
18
+
19
+ * @applitools/spec-driver-webdriver bumped to 1.2.3
20
+
21
+ * @applitools/spec-driver-selenium bumped to 1.5.99
22
+
23
+ * @applitools/spec-driver-puppeteer bumped to 1.4.28
24
+
25
+ * @applitools/screenshoter bumped to 3.11.2
26
+
27
+ * @applitools/nml-client bumped to 1.9.2
28
+
29
+ * @applitools/ec-client bumped to 1.10.10
30
+
31
+
3
32
  ## [4.37.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.36.0...js/core@4.37.0) (2025-04-17)
4
33
 
5
34
 
@@ -70,7 +70,7 @@ exports.extractGitBranch = utils.general.cachify(async function ({ execOptions,
70
70
  return process.env.GITHUB_HEAD_REF;
71
71
  }
72
72
  if (process.env.GITHUB_REF) {
73
- return process.env.GITHUB_REF.split('/')[2]; // refs/heads/<branch_name>
73
+ return process.env.GITHUB_REF.split('/').splice(2).join('/'); // refs/heads/<branch_name>
74
74
  }
75
75
  const result = await executeWithLog('git branch --show-current', { execOptions, logger });
76
76
  if (result.stderr) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "4.37.0",
3
+ "version": "4.37.1",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -77,16 +77,16 @@
77
77
  "dependencies": {
78
78
  "@applitools/core-base": "1.24.0",
79
79
  "@applitools/dom-capture": "11.5.5",
80
- "@applitools/dom-snapshot": "4.11.18",
81
- "@applitools/driver": "1.21.1",
82
- "@applitools/ec-client": "1.10.9",
80
+ "@applitools/dom-snapshot": "4.11.19",
81
+ "@applitools/driver": "1.21.2",
82
+ "@applitools/ec-client": "1.10.10",
83
83
  "@applitools/logger": "2.1.2",
84
- "@applitools/nml-client": "1.9.1",
84
+ "@applitools/nml-client": "1.9.2",
85
85
  "@applitools/req": "1.7.10",
86
- "@applitools/screenshoter": "3.11.1",
86
+ "@applitools/screenshoter": "3.11.2",
87
87
  "@applitools/snippets": "2.6.5",
88
88
  "@applitools/socket": "1.2.3",
89
- "@applitools/spec-driver-webdriver": "1.2.2",
89
+ "@applitools/spec-driver-webdriver": "1.2.3",
90
90
  "@applitools/ufg-client": "1.16.9",
91
91
  "@applitools/utils": "1.8.0",
92
92
  "@types/ws": "8.5.5",
@@ -102,8 +102,8 @@
102
102
  "devDependencies": {
103
103
  "@applitools/bongo": "^5.10.0",
104
104
  "@applitools/sea": "^1.0.0",
105
- "@applitools/spec-driver-puppeteer": "^1.4.27",
106
- "@applitools/spec-driver-selenium": "^1.5.98",
105
+ "@applitools/spec-driver-puppeteer": "^1.4.28",
106
+ "@applitools/spec-driver-selenium": "^1.5.99",
107
107
  "@applitools/test-server": "^1.2.2",
108
108
  "@applitools/test-utils": "^1.5.17",
109
109
  "@applitools/tunnel-client": "^1.6.5",