@applitools/eyes-selenium 4.57.0 → 4.58.3

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 (3) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/package.json +17 -17
  3. package/types/index.d.ts +1362 -2010
package/CHANGELOG.md CHANGED
@@ -3,6 +3,35 @@
3
3
  ## Unreleased
4
4
 
5
5
 
6
+ ## 4.58.3 - 2022/1/12
7
+
8
+ - fix bugs
9
+ - updated to @applitools/eyes-sdk-core@12.24.12 (from 12.24.3)
10
+ - updated to @applitools/spec-driver-selenium@1.3.1 (from 1.3.0)
11
+ - updated to @applitools/visual-grid-client@15.8.59 (from 15.8.47)
12
+ - updated to @applitools/spec-driver-selenium@1.3.2 (from 1.3.1)
13
+ - updated to @applitools/eyes-sdk-core@12.24.13 (from 12.24.12)
14
+ - updated to @applitools/spec-driver-selenium@1.3.3 (from 1.3.2)
15
+ - updated to @applitools/visual-grid-client@15.8.60 (from 15.8.59)
16
+
17
+ ## 4.58.2 - 2021/11/18
18
+
19
+ - updated to @applitools/eyes-sdk-core@12.24.3 (from 12.24.2)
20
+
21
+ ## 4.58.1 - 2021/11/18
22
+
23
+ - updated to @applitools/eyes-sdk-core@12.24.2 (from 12.24.0)
24
+ - updated to @applitools/spec-driver-selenium@1.3.0 (from 1.2.0)
25
+ - updated to @applitools/visual-grid-client@15.8.47 (from 15.8.44)
26
+
27
+ ## 4.58.0 - 2021/11/10
28
+
29
+ - support cookies
30
+ - updated to @applitools/eyes-api@1.1.6 (from 1.1.5)
31
+ - updated to @applitools/eyes-sdk-core@12.24.0 (from 12.23.24)
32
+ - updated to @applitools/spec-driver-selenium@1.2.0 (from 1.1.1)
33
+ - updated to @applitools/visual-grid-client@15.8.44 (from 15.8.43)
34
+
6
35
  ## 4.57.0 - 2021/11/5
7
36
 
8
37
  - updated to @applitools/eyes-api@1.1.5 (from 1.1.4)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-selenium",
3
- "version": "4.57.0",
3
+ "version": "4.58.3",
4
4
  "description": "Applitools Eyes SDK for Selenium WebDriver",
5
5
  "keywords": [
6
6
  "eyes-selenium",
@@ -44,16 +44,15 @@
44
44
  ],
45
45
  "scripts": {
46
46
  "lint": "eslint '**/*.ts'",
47
- "build": "yarn build:dist && yarn build:types",
48
- "build:dist": "tsc",
49
- "build:types": "api-extractor ./src/index.ts --out ./types/index.d.ts --external-modules selenium-webdriver",
50
- "generate:tests": "coverage-tests generate https://raw.githubusercontent.com/applitools/sdk.coverage.tests/master/js/config.js --name 'eyes-selenium'",
47
+ "build": "ttsc",
48
+ "generate:tests": "coverage-tests generate https://raw.githubusercontent.com/applitools/sdk.coverage.tests/universal-sdk/js/config.js --name 'eyes-selenium'",
51
49
  "test": "yarn test:coverage",
52
50
  "test:coverage": "yarn generate:tests && APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-selenium' APPLITOOLS_BATCH_ID=$(uuidgen) XUNIT_FILE=coverage-test-report.xml mocha --config .mocharc.cvg.js",
53
51
  "report": "coverage-tests report https://raw.githubusercontent.com/applitools/sdk.coverage.tests/master/js/config.js --name 'eyes-selenium'",
54
52
  "setup": "yarn docker:setup",
55
53
  "docker:setup": "node ../scripts/scripts/generate-docker-compose-config.js && docker-compose up -d",
56
54
  "docker:teardown": "docker-compose down",
55
+ "upgrade:framework": "if [ ! -z $APPLITOOLS_SELENIUM_MAJOR_VERSION ]; then packagejson=`cat package.json`; yarn upgrade --no-lockfile selenium-webdriver@$APPLITOOLS_SELENIUM_MAJOR_VERSION; echo \"$packagejson\" > package.json; fi",
57
56
  "deps": "bongo deps",
58
57
  "gh:test": "gh workflow run test.yml --ref $(git rev-parse --abbrev-ref HEAD) -f packages='selenium selenium@3' -f links='types test-utils sdk-shared eyes-sdk-core visual-grid-client eyes-api spec-driver-selenium utils driver snippets screenshoter' -f linking-depth=3",
59
58
  "gh:publish": "gh workflow run publish.yml --ref $(git rev-parse --abbrev-ref HEAD) -f packages='selenium'",
@@ -67,18 +66,18 @@
67
66
  }
68
67
  },
69
68
  "dependencies": {
70
- "@applitools/eyes-api": "1.1.5",
71
- "@applitools/eyes-sdk-core": "12.23.24",
72
- "@applitools/spec-driver-selenium": "1.1.1",
73
- "@applitools/visual-grid-client": "15.8.43"
69
+ "@applitools/eyes-api": "1.1.6",
70
+ "@applitools/eyes-sdk-core": "12.24.13",
71
+ "@applitools/spec-driver-selenium": "1.3.3",
72
+ "@applitools/visual-grid-client": "15.8.60"
74
73
  },
75
74
  "devDependencies": {
76
- "@applitools/api-extractor": "1.1.3",
77
- "@applitools/scripts": "1.0.1",
78
- "@applitools/sdk-coverage-tests": "2.3.15",
79
- "@applitools/sdk-release-kit": "0.13.4",
80
- "@applitools/sdk-shared": "0.9.7",
81
- "@applitools/test-utils": "1.0.9",
75
+ "@applitools/api-extractor": "1.2.6",
76
+ "@applitools/scripts": "1.1.0",
77
+ "@applitools/sdk-coverage-tests": "2.3.18",
78
+ "@applitools/sdk-release-kit": "0.13.10",
79
+ "@applitools/sdk-shared": "0.9.11",
80
+ "@applitools/test-utils": "1.0.10",
82
81
  "@types/selenium-webdriver": "^4.0.11",
83
82
  "@typescript-eslint/eslint-plugin": "^4.15.1",
84
83
  "@typescript-eslint/parser": "^4.15.1",
@@ -91,9 +90,10 @@
91
90
  "husky": "^4.3.8",
92
91
  "mocha": "^9.1.2",
93
92
  "prettier": "^2.1.2",
94
- "selenium-webdriver": "^4.0.0-rc-2",
93
+ "selenium-webdriver": "^4.1.1",
95
94
  "spec-xunit-file": "0.0.1-3",
96
- "typescript": "^4.1.3"
95
+ "ttypescript": "^1.5.12",
96
+ "typescript": "^4.5.4"
97
97
  },
98
98
  "peerDependencies": {
99
99
  "selenium-webdriver": ">=3.6.0"