@applitools/ec-client 1.7.10 → 1.7.12
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 +27 -0
- package/package.json +4 -4
- package/types/utils/queue.d.ts +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.7.12](https://github.com/applitools/eyes.sdk.javascript1/compare/js/ec-client-v1.7.11...js/ec-client@1.7.12) (2023-09-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* change expiration time of the tunnel ([c019241](https://github.com/applitools/eyes.sdk.javascript1/commit/c0192411410135b23f3ae47dd62fbef67be66f1a))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Code Refactoring
|
|
12
|
+
|
|
13
|
+
* refactored spec driver interface ([#1839](https://github.com/applitools/eyes.sdk.javascript1/issues/1839)) ([aa49ec2](https://github.com/applitools/eyes.sdk.javascript1/commit/aa49ec2a7d14b8529acc3a8a4c2baecfa113d98a))
|
|
14
|
+
* use Uint8Array instead of Buffer for binary data representation ([#1928](https://github.com/applitools/eyes.sdk.javascript1/issues/1928)) ([d1472ab](https://github.com/applitools/eyes.sdk.javascript1/commit/d1472ab8fd49e9a240e99a44dbf1d180b6c7a54b))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
* @applitools/spec-driver-webdriver bumped to 1.0.47
|
|
20
|
+
|
|
21
|
+
* @applitools/driver bumped to 1.14.3
|
|
22
|
+
#### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* force native on get environment ([#1939](https://github.com/applitools/eyes.sdk.javascript1/issues/1939)) ([f42854e](https://github.com/applitools/eyes.sdk.javascript1/commit/f42854eacc769751447204143cb4d50113edc732))
|
|
25
|
+
* @applitools/core-base bumped to 1.7.1
|
|
26
|
+
#### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* send domMapping payload with correct content encoding ([2bc8e39](https://github.com/applitools/eyes.sdk.javascript1/commit/2bc8e390de1d147d84d1de24df337b8652547b6a))
|
|
29
|
+
|
|
3
30
|
## [1.7.10](https://github.com/applitools/eyes.sdk.javascript1/compare/js/ec-client@1.7.9...js/ec-client@1.7.10) (2023-09-25)
|
|
4
31
|
|
|
5
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/ec-client",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.12",
|
|
4
4
|
"homepage": "https://applitools.com",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -52,12 +52,12 @@
|
|
|
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.
|
|
56
|
-
"@applitools/driver": "1.14.
|
|
55
|
+
"@applitools/core-base": "1.7.1",
|
|
56
|
+
"@applitools/driver": "1.14.3",
|
|
57
57
|
"@applitools/logger": "2.0.11",
|
|
58
58
|
"@applitools/req": "1.6.1",
|
|
59
59
|
"@applitools/socket": "1.1.11",
|
|
60
|
-
"@applitools/spec-driver-webdriver": "1.0.
|
|
60
|
+
"@applitools/spec-driver-webdriver": "1.0.47",
|
|
61
61
|
"@applitools/tunnel-client": "1.2.3",
|
|
62
62
|
"@applitools/utils": "1.6.1",
|
|
63
63
|
"abort-controller": "3.0.0",
|
package/types/utils/queue.d.ts
DELETED
|
@@ -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 {};
|