cypress 12.10.0 → 12.12.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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\}/, endpoint).replace(/\\?\$\{platform\}/, platform).replace(/\\?\$\{arch\}/, arch).replace(/\\?\$\{version\}/, version) : `${endpoint}?platform=${platform}&arch=${arch}`;
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.10.0",
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": "1ed2031faac6e01848fafe71f27e5c3afd9c21a3",
122
- "commitDate": "2023-04-17T15:59:15.000Z",
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",
@@ -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": "1.3.1",
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.1.4",
32
- "vite-plugin-require-transform": "1.0.3"
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",