@applitools/core-universal 1.0.0 → 1.0.2

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,69 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.2](https://github.com/Applitools-Dev/sdk/compare/js/core-universal@1.0.1...js/core-universal@1.0.2) (2026-03-08)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/dom-capture bumped to 11.6.10
9
+ #### Bug Fixes
10
+
11
+ * handle empty data URLs in CSS extraction | FLD-4158 ([#3606](https://github.com/Applitools-Dev/sdk/issues/3606)) ([8adef70](https://github.com/Applitools-Dev/sdk/commit/8adef702c7136b0b4a15f150b3d7ca6f649b30a2))
12
+ * @applitools/core bumped to 4.57.1
13
+ #### Bug Fixes
14
+
15
+ * remove checkNetwork from public API, add unit tests ([#3598](https://github.com/Applitools-Dev/sdk/issues/3598)) ([d0a70a3](https://github.com/Applitools-Dev/sdk/commit/d0a70a3b7319aab6e1ca9dbca5e6a94069955447))
16
+
17
+
18
+
19
+
20
+ ## [1.0.1](https://github.com/Applitools-Dev/sdk/compare/js/core-universal@1.0.0...js/core-universal@1.0.1) (2026-03-02)
21
+
22
+
23
+ ### Dependencies
24
+
25
+ * @applitools/dom-snapshot bumped to 4.15.10
26
+ #### Bug Fixes
27
+
28
+ * video link with http live streaming - workaround | FLD-4089 ([#3567](https://github.com/Applitools-Dev/sdk/issues/3567)) ([8639c37](https://github.com/Applitools-Dev/sdk/commit/8639c37d39997915d5fcdc46c45a96d510b6ad91))
29
+ * @applitools/req bumped to 1.9.0
30
+ #### Features
31
+
32
+ * http 2 support | FLD-4085 ([#3539](https://github.com/Applitools-Dev/sdk/issues/3539)) ([b304d4a](https://github.com/Applitools-Dev/sdk/commit/b304d4a1072a201d1c3f5cea1275b6a15230d6aa))
33
+ * @applitools/core-base bumped to 1.32.0
34
+ #### Features
35
+
36
+ * http 2 support | FLD-4085 ([#3539](https://github.com/Applitools-Dev/sdk/issues/3539)) ([b304d4a](https://github.com/Applitools-Dev/sdk/commit/b304d4a1072a201d1c3f5cea1275b6a15230d6aa))
37
+
38
+
39
+ #### Bug Fixes
40
+
41
+ * video link with http live streaming - workaround | FLD-4089 ([#3567](https://github.com/Applitools-Dev/sdk/issues/3567)) ([8639c37](https://github.com/Applitools-Dev/sdk/commit/8639c37d39997915d5fcdc46c45a96d510b6ad91))
42
+
43
+
44
+
45
+ * @applitools/nml-client bumped to 1.11.18
46
+
47
+ * @applitools/tunnel-client bumped to 1.11.7
48
+
49
+ * @applitools/ufg-client bumped to 1.19.3
50
+
51
+ * @applitools/ec-client bumped to 1.12.20
52
+
53
+ * @applitools/core bumped to 4.57.0
54
+ #### Features
55
+
56
+ * http 2 support | FLD-4085 ([#3539](https://github.com/Applitools-Dev/sdk/issues/3539)) ([b304d4a](https://github.com/Applitools-Dev/sdk/commit/b304d4a1072a201d1c3f5cea1275b6a15230d6aa))
57
+
58
+
59
+ #### Bug Fixes
60
+
61
+ * resolve Node.js punycode deprecation warning in tests ([#3590](https://github.com/Applitools-Dev/sdk/issues/3590)) ([b759df9](https://github.com/Applitools-Dev/sdk/commit/b759df98dcce2bcfb09db105edadbc73964e4d8d))
62
+ * video link with http live streaming - workaround | FLD-4089 ([#3567](https://github.com/Applitools-Dev/sdk/issues/3567)) ([8639c37](https://github.com/Applitools-Dev/sdk/commit/8639c37d39997915d5fcdc46c45a96d510b6ad91))
63
+
64
+
65
+
66
+
3
67
  ## [1.0.0](https://github.com/Applitools-Dev/sdk/compare/js/core-universal@0.0.0...js/core-universal@1.0.0) (2026-03-01)
4
68
 
5
69
 
@@ -61,6 +125,3 @@
61
125
  #### Performance Improvements
62
126
 
63
127
  * use sharp to accelerate png performance in all js packages ([#3547](https://github.com/Applitools-Dev/sdk/issues/3547)) ([6e3c7b9](https://github.com/Applitools-Dev/sdk/commit/6e3c7b9e34815f470032ece52a161001592ad1b1))
64
-
65
-
66
-
package/dist/cli/cli.js CHANGED
@@ -42,7 +42,6 @@ void yargs_1.default
42
42
  ['eyes universal --port 8080', 'Run Eyes Universal server on port 8080'],
43
43
  ['eyes universal --no-singleton', 'Run Eyes Universal server on a non-singleton mode'],
44
44
  ['eyes universal --shutdown-mode stdin', 'Run Eyes Universal server which will close once stdin stream will end'],
45
- ['eyes check-network', ''],
46
45
  ])
47
46
  .version(JSON.parse(fs_1.default.readFileSync(require.resolve('../../package.json'), 'utf-8')).version)
48
47
  .command({
@@ -150,11 +149,5 @@ void yargs_1.default
150
149
  console.log(JSON.stringify(logs, null, 2));
151
150
  }
152
151
  },
153
- })
154
- .command({
155
- command: 'check-network',
156
- handler: async () => {
157
- await (0, core_1.checkNetwork)();
158
- },
159
152
  })
160
153
  .wrap(yargs_1.default.terminalWidth()).argv;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core-universal",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -40,7 +40,7 @@
40
40
  "test:bin": "MOCHA_GROUP=bin run --top-level mocha './test/bin/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15} --require ./test/mocha-global-setup.js"
41
41
  },
42
42
  "dependencies": {
43
- "@applitools/core": "4.56.3",
43
+ "@applitools/core": "4.57.1",
44
44
  "@applitools/driver": "1.25.1",
45
45
  "@applitools/logger": "2.2.8",
46
46
  "@applitools/socket": "1.3.9",