@applitools/core 3.2.0 → 3.2.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,7 +1,37 @@
1
- # Change Log
1
+ # Changelog
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## [3.2.2](https://github.com/applitools/eyes.sdk.javascript1/compare/js/core-v3.2.1...js/core@3.2.2) (2023-06-13)
6
+
7
+
8
+ ### Dependencies
9
+
10
+ * update some dependencies
11
+ * The following workspace dependencies were updated
12
+ * dependencies
13
+ * @applitools/core-base bumped from 1.1.56 to 1.1.57
14
+ * @applitools/driver bumped from 1.12.1 to 1.12.2
15
+ * @applitools/ec-client bumped from 1.2.32 to 1.2.33
16
+ * @applitools/logger bumped from 2.0.2 to 2.0.3
17
+ * @applitools/nml-client bumped from 1.3.55 to 1.3.56
18
+ * @applitools/req bumped from 1.3.0 to 1.3.1
19
+ * @applitools/screenshoter bumped from 3.7.46 to 3.7.47
20
+ * @applitools/socket bumped from 1.1.1 to 1.1.2
21
+ * @applitools/spec-driver-webdriver bumped from 1.0.33 to 1.0.34
22
+ * @applitools/ufg-client bumped from 1.2.18 to 1.2.19
23
+ * @applitools/utils bumped from 1.3.37 to 1.4.0
24
+ * devDependencies
25
+ * @applitools/spec-driver-puppeteer bumped from ^1.1.64 to ^1.1.65
26
+ * @applitools/spec-driver-selenium bumped from ^1.5.47 to ^1.5.48
27
+ * @applitools/spec-driver-webdriverio bumped from ^1.5.2 to ^1.5.3
28
+
29
+ ## 3.2.1 - 2023/5/31
30
+
31
+ ### Features
32
+ ### Bug fixes
33
+ - Increase timeout for rendering results polling
34
+
5
35
  ## 3.2.0 - 2023/5/31
6
36
 
7
37
  ### Features
package/dist/cli/cli.js CHANGED
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -15,9 +15,6 @@
15
15
  "name": "Applitools Team",
16
16
  "email": "team@applitools.com"
17
17
  },
18
- "aliases": [
19
- "core"
20
- ],
21
18
  "exports": {
22
19
  ".": {
23
20
  "types": "./types/index.d.ts",
@@ -44,30 +41,23 @@
44
41
  "types"
45
42
  ],
46
43
  "scripts": {
47
- "lint": "node ../../node_modules/.bin/eslint '**/*.ts'",
44
+ "lint": "run --top-level eslint '**/*.ts'",
48
45
  "build": "yarn build:dist",
49
- "build:dist": "node ../../node_modules/.bin/tsc --project ./tsconfig.build.json",
46
+ "build:dist": "run --top-level tsc --project ./tsconfig.build.json",
50
47
  "build:x64": "yarn build:dist && yarn build:bin:x64",
51
48
  "build:arm64": "yarn build:dist && yarn build:bin:arm64",
52
49
  "build:bin:x64": "pkg . --target node14-linux-x64,node14-alpine-x64,node14-macos-x64,node14-win-x64",
53
50
  "build:bin:arm64": "pkg . --target node14-linux-arm64 --output ./bin/core-linux-arm64",
54
51
  "build:bin:zip": "zip -j ./bin/core.zip $(find ./bin -type f -not -name '*.zip' -not -name '*.tar.gz' | xargs)",
55
52
  "build:bin:tgz": "tar -czf ./bin/core.tar.gz $(find ./bin -type f -not -name '*.zip' -not -name '*.tar.gz' | xargs)",
56
- "test": "node ../../node_modules/.bin/mocha './test/**/*.spec.ts' --exclude './test/bin/**' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
57
- "test:bin": "MOCHA_GROUP=bin node ../../node_modules/mocha/bin/mocha './test/bin/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}",
58
- "test:e2e": "MOCHA_GROUP=e2e node ../../node_modules/mocha/bin/mocha './test/e2e/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
59
- "test:it": "MOCHA_GROUP=it node ../../node_modules/.bin/mocha './test/it/**/*.spec.ts'",
60
- "test:unit": "MOCHA_GROUP=unit node ../../node_modules/.bin/mocha './test/unit/**/*.spec.ts'",
61
- "test:sanity": "yarn test:unit",
53
+ "test": "run --top-level mocha './test/**/*.spec.ts' --exclude './test/bin/**' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
54
+ "test:bin": "MOCHA_GROUP=bin run --top-level mocha './test/bin/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}",
55
+ "test:e2e": "MOCHA_GROUP=e2e run --top-level mocha './test/e2e/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
56
+ "test:it": "MOCHA_GROUP=it run --top-level mocha './test/it/**/*.spec.ts'",
57
+ "test:unit": "MOCHA_GROUP=unit run --top-level mocha './test/unit/**/*.spec.ts'",
58
+ "setup": "run --top-level browsers:setup",
62
59
  "report": "bongo report --name 'core' --group 'core'",
63
- "setup": "yarn docker:setup",
64
- "docker:setup": "node ../../scripts/generate-docker-compose-config.js && docker-compose up -d",
65
- "docker:teardown": "docker-compose down",
66
- "deps": "bongo deps",
67
- "preversion": "bongo preversion --verify-pending-changes --skip-deps",
68
- "version": "bongo version --with-pending-changes",
69
- "postversion": "bongo postversion",
70
- "postpublish": "bongo send-release-notification --name 'core'"
60
+ "notify": "dlx --package @applitools/bongo bongo send-release-notification --name 'core'"
71
61
  },
72
62
  "pkg": {
73
63
  "scripts": "./dist/cli/cli.js",
@@ -78,48 +68,48 @@
78
68
  ]
79
69
  },
80
70
  "dependencies": {
81
- "@applitools/core-base": "1.1.56",
71
+ "@applitools/core-base": "1.1.57",
82
72
  "@applitools/dom-capture": "11.2.2",
83
73
  "@applitools/dom-snapshot": "4.7.9",
84
- "@applitools/driver": "1.12.1",
85
- "@applitools/ec-client": "1.2.32",
86
- "@applitools/logger": "2.0.2",
87
- "@applitools/nml-client": "1.3.55",
88
- "@applitools/req": "1.3.0",
89
- "@applitools/screenshoter": "3.7.46",
74
+ "@applitools/driver": "1.12.2",
75
+ "@applitools/ec-client": "1.2.33",
76
+ "@applitools/logger": "2.0.3",
77
+ "@applitools/nml-client": "1.3.56",
78
+ "@applitools/req": "1.3.1",
79
+ "@applitools/screenshoter": "3.7.47",
90
80
  "@applitools/snippets": "2.4.21",
91
- "@applitools/socket": "1.1.1",
92
- "@applitools/spec-driver-webdriver": "1.0.33",
93
- "@applitools/ufg-client": "1.2.17",
94
- "@applitools/utils": "1.3.37",
81
+ "@applitools/socket": "1.1.2",
82
+ "@applitools/spec-driver-webdriver": "1.0.34",
83
+ "@applitools/ufg-client": "1.2.19",
84
+ "@applitools/utils": "1.4.0",
95
85
  "@types/ws": "8.5.4",
96
86
  "abort-controller": "3.0.0",
97
87
  "chalk": "4.1.2",
98
88
  "node-fetch": "2.6.7",
99
89
  "webdriver": "7.30.0",
100
90
  "ws": "8.12.0",
101
- "yargs": "17.6.2"
91
+ "yargs": "^17.7.2"
102
92
  },
103
93
  "devDependencies": {
104
94
  "@applitools/bongo": "^4.0.0",
105
95
  "@applitools/sdk-coverage-tests": "^3.0.2",
106
- "@applitools/spec-driver-puppeteer": "^1.1.64",
107
- "@applitools/spec-driver-selenium": "^1.5.47",
108
- "@applitools/spec-driver-webdriverio": "^1.5.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",
109
99
  "@applitools/test-server": "^1.2.2",
110
100
  "@applitools/test-utils": "^1.5.17",
111
101
  "@types/node": "^12.20.55",
112
102
  "@types/selenium-webdriver": "^4.1.2",
113
103
  "@types/yargs": "^17.0.22",
114
- "chromedriver": "^106.0.0",
104
+ "chromedriver": "^114.0.1",
115
105
  "nock": "^13.2.8",
116
106
  "pkg": "^5.8.0",
117
107
  "png-async": "^0.9.4",
118
- "puppeteer": "^19.7.0",
108
+ "puppeteer": "^19.11.1",
119
109
  "selenium-webdriver": "4.4",
120
110
  "webdriverio": "^7.25.0"
121
111
  },
122
112
  "engines": {
123
113
  "node": ">=12.13.0"
124
114
  }
125
- }
115
+ }