cypress 13.15.2 → 13.16.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "13.15.2",
3
+ "version": "13.16.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
@@ -141,8 +141,8 @@
141
141
  },
142
142
  "buildInfo": {
143
143
  "commitBranch": "develop",
144
- "commitSha": "5caacc2f1a69a5faae85aadcc26353e5aebdb201",
145
- "commitDate": "2024-11-05T20:33:30.000Z",
144
+ "commitSha": "5c21c4b40186670572acef9452ebd0875c296dc9",
145
+ "commitDate": "2024-11-19T17:19:06.000Z",
146
146
  "stable": true
147
147
  },
148
148
  "description": "Cypress is a next generation front end testing tool built for the modern web",
@@ -22,10 +22,10 @@
22
22
  "axios": "0.21.2",
23
23
  "cypress": "0.0.0-development",
24
24
  "prop-types": "15.7.2",
25
- "react": "16.8.6",
26
- "react-dom": "16.8.6",
27
- "react-router": "6.0.0-alpha.1",
28
- "react-router-dom": "6.0.0-alpha.1",
25
+ "react": "17.0.2",
26
+ "react-dom": "17.0.2",
27
+ "react-router": "6.10.0",
28
+ "react-router-dom": "6.10.0",
29
29
  "semver": "^7.5.3",
30
30
  "typescript": "~5.4.5",
31
31
  "vite": "5.2.11",
@@ -22,10 +22,10 @@
22
22
  "axios": "0.21.2",
23
23
  "cypress": "0.0.0-development",
24
24
  "prop-types": "15.7.2",
25
- "react": "16.8.6",
26
- "react-dom": "16.8.6",
27
- "react-router": "6.0.0-alpha.1",
28
- "react-router-dom": "6.0.0-alpha.1",
25
+ "react": "17.0.2",
26
+ "react-dom": "17.0.2",
27
+ "react-router": "6.10.0",
28
+ "react-router-dom": "6.10.0",
29
29
  "semver": "^7.5.3",
30
30
  "typescript": "~5.4.5",
31
31
  "vite": "5.2.11",
@@ -15,11 +15,11 @@
15
15
  "@cypress/react": "0.0.0-development",
16
16
  "@rollup/plugin-commonjs": "^17.1.0",
17
17
  "@rollup/plugin-node-resolve": "^11.1.1",
18
- "@types/react": "^16",
19
- "@types/react-dom": "^16",
18
+ "@types/react": "17.0.83",
19
+ "@types/react-dom": "17.0.25",
20
20
  "cypress": "0.0.0-development",
21
- "react": "^16",
22
- "react-dom": "^16",
21
+ "react": "^17.0.2",
22
+ "react-dom": "^17.0.2",
23
23
  "rollup": "3.7.3",
24
24
  "rollup-plugin-typescript2": "^0.29.0",
25
25
  "typescript": "~5.4.5"
@@ -15,11 +15,11 @@
15
15
  "@cypress/react": "0.0.0-development",
16
16
  "@rollup/plugin-commonjs": "^17.1.0",
17
17
  "@rollup/plugin-node-resolve": "^11.1.1",
18
- "@types/react": "^16",
19
- "@types/react-dom": "^16",
18
+ "@types/react": "17.0.83",
19
+ "@types/react-dom": "17.0.25",
20
20
  "cypress": "0.0.0-development",
21
- "react": "^16",
22
- "react-dom": "^16",
21
+ "react": "^17.0.2",
22
+ "react-dom": "^17.0.2",
23
23
  "rollup": "3.7.3",
24
24
  "rollup-plugin-typescript2": "^0.29.0",
25
25
  "typescript": "~5.4.5"
@@ -3216,6 +3216,11 @@ declare namespace Cypress {
3216
3216
  setupNodeEvents: (on: PluginEvents, config: PluginConfigOptions) => Promise<PluginConfigOptions | void> | PluginConfigOptions | void
3217
3217
 
3218
3218
  indexHtmlFile: string
3219
+
3220
+ /**
3221
+ * The default browser to launch if the "--browser" command line option is not provided.
3222
+ */
3223
+ defaultBrowser: string
3219
3224
  }
3220
3225
 
3221
3226
  interface EndToEndConfigOptions extends Omit<CoreConfigOptions, 'indexHtmlFile'> {