cypress 12.10.0 → 12.12.0
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/tasks/download.js +1 -1
- package/package.json +3 -3
- package/react/package.json +3 -3
- package/vue/dist/cypress-vue.cjs.js +2788 -8027
- package/vue/dist/cypress-vue.esm-bundler.js +2782 -8021
- package/vue/dist/index.d.ts +1234 -1196
- package/vue/package.json +5 -5
- package/angular/CHANGELOG.md +0 -185
- package/mount-utils/CHANGELOG.md +0 -78
- package/react/CHANGELOG.md +0 -466
- package/react18/CHANGELOG.md +0 -40
- package/svelte/CHANGELOG.md +0 -34
- package/vue/CHANGELOG.md +0 -493
- package/vue2/CHANGELOG.md +0 -93
package/lib/tasks/download.js
CHANGED
@@ -53,7 +53,7 @@ const prepend = (arch, urlPath, version) => {
|
|
53
53
|
const endpoint = url.resolve(getBaseUrl(), urlPath);
|
54
54
|
const platform = os.platform();
|
55
55
|
const pathTemplate = util.getEnv('CYPRESS_DOWNLOAD_PATH_TEMPLATE', true);
|
56
|
-
return pathTemplate ? pathTemplate.replace(/\\?\$\{endpoint\}
|
56
|
+
return pathTemplate ? pathTemplate.replace(/\\?\$\{endpoint\}/g, endpoint).replace(/\\?\$\{platform\}/g, platform).replace(/\\?\$\{arch\}/g, arch).replace(/\\?\$\{version\}/g, version) : `${endpoint}?platform=${platform}&arch=${arch}`;
|
57
57
|
};
|
58
58
|
const getUrl = (arch, version) => {
|
59
59
|
if (is.url(version)) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "cypress",
|
3
|
-
"version": "12.
|
3
|
+
"version": "12.12.0",
|
4
4
|
"main": "index.js",
|
5
5
|
"scripts": {
|
6
6
|
"postinstall": "node index.js --exec install",
|
@@ -118,8 +118,8 @@
|
|
118
118
|
},
|
119
119
|
"buildInfo": {
|
120
120
|
"commitBranch": "develop",
|
121
|
-
"commitSha": "
|
122
|
-
"commitDate": "2023-
|
121
|
+
"commitSha": "236b1816667720e1f0295699a148b84c25d7c04f",
|
122
|
+
"commitDate": "2023-05-09T17:13:59.000Z",
|
123
123
|
"stable": true
|
124
124
|
},
|
125
125
|
"description": "Cypress is a next generation front end testing tool built for the modern web",
|
package/react/package.json
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
"devDependencies": {
|
19
19
|
"@cypress/mount-utils": "0.0.0-development",
|
20
20
|
"@types/semver": "7.3.9",
|
21
|
-
"@vitejs/plugin-react": "
|
21
|
+
"@vitejs/plugin-react": "4.0.0",
|
22
22
|
"axios": "0.21.2",
|
23
23
|
"cypress": "0.0.0-development",
|
24
24
|
"prop-types": "15.7.2",
|
@@ -28,8 +28,8 @@
|
|
28
28
|
"react-router-dom": "6.0.0-alpha.1",
|
29
29
|
"semver": "^7.3.2",
|
30
30
|
"typescript": "^4.7.4",
|
31
|
-
"vite": "4.
|
32
|
-
"vite-plugin-require-transform": "1.0.
|
31
|
+
"vite": "4.3.2",
|
32
|
+
"vite-plugin-require-transform": "1.0.12"
|
33
33
|
},
|
34
34
|
"peerDependencies": {
|
35
35
|
"@types/react": "^16.9.16 || ^17.0.0",
|