@applitools/core 3.2.3 → 3.2.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +55 -0
  2. package/package.json +16 -14
package/CHANGELOG.md CHANGED
@@ -2,6 +2,61 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## [3.2.4](https://github.com/applitools/eyes.sdk.javascript1/compare/js/core@3.2.3...js/core@3.2.4) (2023-06-21)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * fix coverage tests ([f5067d8](https://github.com/applitools/eyes.sdk.javascript1/commit/f5067d8693502c3f6c9dbdf8adafbe513d86a9ad))
11
+ * fix tests ([0325ca0](https://github.com/applitools/eyes.sdk.javascript1/commit/0325ca07a57949714f04eb008d269fe0726486b6))
12
+
13
+
14
+ ### Dependencies
15
+
16
+ * @applitools/core-base bumped from 1.1.58 to 1.2.0
17
+ #### Features
18
+
19
+ * **js/core-base:** new feature ([dd5705d](https://github.com/applitools/eyes.sdk.javascript1/commit/dd5705d5e99d34f9492e890a0b4af6c52d6b33e3))
20
+
21
+
22
+ #### Bug Fixes
23
+
24
+ * rerelease ([2d46d0c](https://github.com/applitools/eyes.sdk.javascript1/commit/2d46d0c9ee14a72406e60350d4cce92991272afd))
25
+
26
+
27
+
28
+ * @applitools/driver bumped from 1.12.2 to 1.12.3
29
+
30
+ * @applitools/ec-client bumped from 1.2.34 to 1.3.0
31
+ #### Features
32
+
33
+ * put in a queue create tunnel requests which cannot succeed due to a limit ([3309147](https://github.com/applitools/eyes.sdk.javascript1/commit/33091473f3fcbc4dd5fc853624bbe441ce11ce87))
34
+
35
+
36
+
37
+ * @applitools/logger bumped from 2.0.3 to 2.0.4
38
+ #### Bug Fixes
39
+
40
+ * fixed issue when extended logger didn't preserve base's handler ([7c5e029](https://github.com/applitools/eyes.sdk.javascript1/commit/7c5e0299522f792aad72b7b3827df31a1ab2d68f))
41
+ * @applitools/nml-client bumped from 1.3.57 to 1.3.58
42
+
43
+ * @applitools/screenshoter bumped from 3.7.47 to 3.8.0
44
+ #### Features
45
+
46
+ * **js/screenshoter:** new feature ([23b43a7](https://github.com/applitools/eyes.sdk.javascript1/commit/23b43a7a0634f6262f5cfa683acd58975bcaa949))
47
+ * **js/screenshoter:** new feature ([97c9a38](https://github.com/applitools/eyes.sdk.javascript1/commit/97c9a38ea03ce4065ea9e593f2eb9b2dc02d03b1))
48
+ * **js/screenshoter:** new feature ([a6886e2](https://github.com/applitools/eyes.sdk.javascript1/commit/a6886e2596e6162f0f38d84cf5e99f23906330fc))
49
+ * **js/screenshoter:** new feature ([5224a13](https://github.com/applitools/eyes.sdk.javascript1/commit/5224a132edf26d0fb023cfc2074e66b610b60c30))
50
+
51
+
52
+
53
+ * @applitools/socket bumped from 1.1.3 to 1.1.4
54
+
55
+ * @applitools/spec-driver-webdriver bumped from 1.0.34 to 1.0.35
56
+
57
+ * @applitools/ufg-client bumped from 1.2.20 to 1.2.21
58
+
59
+
5
60
  ## [3.2.3](https://github.com/applitools/eyes.sdk.javascript1/compare/js/core@3.2.2...js/core@3.2.3) (2023-06-15)
6
61
 
7
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "3.2.3",
3
+ "version": "3.2.4",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -51,12 +51,14 @@
51
51
  "build:bin:zip": "zip -j ./bin/core.zip $(find ./bin -type f -not -name '*.zip' -not -name '*.tar.gz' | xargs)",
52
52
  "build:bin:tgz": "tar -czf ./bin/core.tar.gz $(find ./bin -type f -not -name '*.zip' -not -name '*.tar.gz' | xargs)",
53
53
  "test": "run --top-level mocha './test/**/*.spec.ts' --exclude './test/bin/**' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
54
+ "test:local": "MOCHA_OMIT_TAGS=sauce run test",
55
+ "test:sauce": "MOCHA_ONLY_TAGS=sauce run test",
54
56
  "test:bin": "MOCHA_GROUP=bin run --top-level mocha './test/bin/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}",
55
57
  "test:e2e": "MOCHA_GROUP=e2e run --top-level mocha './test/e2e/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
56
58
  "test:it": "MOCHA_GROUP=it run --top-level mocha './test/it/**/*.spec.ts'",
57
59
  "test:unit": "MOCHA_GROUP=unit run --top-level mocha './test/unit/**/*.spec.ts'",
58
60
  "setup": "run --top-level browsers:setup",
59
- "report": "bongo report --name 'core' --group 'core'",
61
+ "report": "bongo report --name 'core' --group 'core' --result-path './logs'",
60
62
  "notify": "dlx --package @applitools/bongo bongo send-release-notification --name 'core'"
61
63
  },
62
64
  "pkg": {
@@ -68,19 +70,19 @@
68
70
  ]
69
71
  },
70
72
  "dependencies": {
71
- "@applitools/core-base": "1.1.58",
73
+ "@applitools/core-base": "1.2.0",
72
74
  "@applitools/dom-capture": "11.2.2",
73
75
  "@applitools/dom-snapshot": "4.7.9",
74
- "@applitools/driver": "1.12.2",
75
- "@applitools/ec-client": "1.2.34",
76
- "@applitools/logger": "2.0.3",
77
- "@applitools/nml-client": "1.3.57",
76
+ "@applitools/driver": "1.12.3",
77
+ "@applitools/ec-client": "1.3.0",
78
+ "@applitools/logger": "2.0.4",
79
+ "@applitools/nml-client": "1.3.58",
78
80
  "@applitools/req": "1.3.2",
79
- "@applitools/screenshoter": "3.7.47",
81
+ "@applitools/screenshoter": "3.8.0",
80
82
  "@applitools/snippets": "2.4.21",
81
- "@applitools/socket": "1.1.3",
82
- "@applitools/spec-driver-webdriver": "1.0.34",
83
- "@applitools/ufg-client": "1.2.20",
83
+ "@applitools/socket": "1.1.4",
84
+ "@applitools/spec-driver-webdriver": "1.0.35",
85
+ "@applitools/ufg-client": "1.2.21",
84
86
  "@applitools/utils": "1.4.0",
85
87
  "@types/ws": "8.5.5",
86
88
  "abort-controller": "3.0.0",
@@ -93,9 +95,9 @@
93
95
  "devDependencies": {
94
96
  "@applitools/bongo": "^4.0.0",
95
97
  "@applitools/sdk-coverage-tests": "^3.0.2",
96
- "@applitools/spec-driver-puppeteer": "^1.1.65",
97
- "@applitools/spec-driver-selenium": "^1.5.48",
98
- "@applitools/spec-driver-webdriverio": "^1.5.3",
98
+ "@applitools/spec-driver-puppeteer": "^1.1.66",
99
+ "@applitools/spec-driver-selenium": "^1.5.49",
100
+ "@applitools/spec-driver-webdriverio": "^1.5.4",
99
101
  "@applitools/test-server": "^1.2.2",
100
102
  "@applitools/test-utils": "^1.5.17",
101
103
  "@types/node": "^12.20.55",