@applitools/ec-client 1.7.6 → 1.7.8

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,52 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.7.8](https://github.com/applitools/eyes.sdk.javascript1/compare/js/ec-client@1.7.7...js/ec-client@1.7.8) (2023-09-05)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/core-base bumped to 1.6.0
9
+ #### Features
10
+
11
+ * show aborted tests in Eyes dashboard ([#1877](https://github.com/applitools/eyes.sdk.javascript1/issues/1877)) ([f9840d4](https://github.com/applitools/eyes.sdk.javascript1/commit/f9840d494222ccc6c6f262896771e28da2565bc6))
12
+
13
+ ## [1.7.7](https://github.com/applitools/eyes.sdk.javascript1/compare/js/ec-client@1.7.6...js/ec-client@1.7.7) (2023-09-04)
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * @applitools/utils bumped to 1.6.0
19
+ #### Features
20
+
21
+ * add support for fallback in `req` ([#1899](https://github.com/applitools/eyes.sdk.javascript1/issues/1899)) ([d69c4b5](https://github.com/applitools/eyes.sdk.javascript1/commit/d69c4b5830370c471dfc25b6e2caddca8b458df9))
22
+ * @applitools/logger bumped to 2.0.10
23
+
24
+ * @applitools/socket bumped to 1.1.10
25
+
26
+ * @applitools/req bumped to 1.6.0
27
+ #### Features
28
+
29
+ * add support for fallback in `req` ([#1899](https://github.com/applitools/eyes.sdk.javascript1/issues/1899)) ([d69c4b5](https://github.com/applitools/eyes.sdk.javascript1/commit/d69c4b5830370c471dfc25b6e2caddca8b458df9))
30
+ * update testcafe ([#1884](https://github.com/applitools/eyes.sdk.javascript1/issues/1884)) ([104f1b6](https://github.com/applitools/eyes.sdk.javascript1/commit/104f1b6cc0d4f107ba46404383de2fa11fe99dcf))
31
+
32
+
33
+
34
+ * @applitools/driver bumped to 1.14.0
35
+ #### Features
36
+
37
+ * update testcafe ([#1884](https://github.com/applitools/eyes.sdk.javascript1/issues/1884)) ([104f1b6](https://github.com/applitools/eyes.sdk.javascript1/commit/104f1b6cc0d4f107ba46404383de2fa11fe99dcf))
38
+
39
+
40
+
41
+ * @applitools/image bumped to 1.1.5
42
+
43
+ * @applitools/spec-driver-webdriver bumped to 1.0.44
44
+
45
+ * @applitools/tunnel-client bumped to 1.2.2
46
+
47
+ * @applitools/core-base bumped to 1.5.3
48
+
49
+
3
50
  ## [1.7.6](https://github.com/applitools/eyes.sdk.javascript1/compare/js/ec-client@1.7.5...js/ec-client@1.7.6) (2023-08-30)
4
51
 
5
52
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/ec-client",
3
- "version": "1.7.6",
3
+ "version": "1.7.8",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -52,14 +52,14 @@
52
52
  "test:it": "MOCHA_GROUP=it run --top-level mocha './test/it/*.spec.ts'"
53
53
  },
54
54
  "dependencies": {
55
- "@applitools/core-base": "1.5.2",
56
- "@applitools/driver": "1.13.6",
57
- "@applitools/logger": "2.0.9",
58
- "@applitools/req": "1.5.4",
59
- "@applitools/socket": "1.1.9",
60
- "@applitools/spec-driver-webdriver": "1.0.43",
61
- "@applitools/tunnel-client": "1.2.1",
62
- "@applitools/utils": "1.5.2",
55
+ "@applitools/core-base": "1.6.0",
56
+ "@applitools/driver": "1.14.0",
57
+ "@applitools/logger": "2.0.10",
58
+ "@applitools/req": "1.6.0",
59
+ "@applitools/socket": "1.1.10",
60
+ "@applitools/spec-driver-webdriver": "1.0.44",
61
+ "@applitools/tunnel-client": "1.2.2",
62
+ "@applitools/utils": "1.6.0",
63
63
  "abort-controller": "3.0.0",
64
64
  "webdriver": "7.31.1",
65
65
  "yargs": "^17.7.2"
@@ -1,15 +0,0 @@
1
- import { type Logger } from '@applitools/logger';
2
- import { type AbortSignal } from 'abort-controller';
3
- export type Queue = {
4
- readonly corked: boolean;
5
- readonly pause: never;
6
- run<TResult>(task: Task<TResult>): Promise<TResult>;
7
- cancel(task: (signal: AbortSignal) => Promise<any>): void;
8
- cork(): void;
9
- uncork(): void;
10
- };
11
- type Task<TResult> = (signal: AbortSignal) => Promise<TResult>;
12
- export declare function makeQueue({ logger }: {
13
- logger: Logger;
14
- }): Queue;
15
- export {};