cypress 15.14.2 → 15.15.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,13 +1,13 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "15.14.2",
3
+ "version": "15.15.0",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node dist/index.js --exec install",
7
7
  "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
8
8
  },
9
9
  "dependencies": {
10
- "@cypress/request": "^3.0.10",
10
+ "@cypress/request": "^4.0.0",
11
11
  "@cypress/xvfb": "^1.2.4",
12
12
  "@types/sinonjs__fake-timers": "8.1.1",
13
13
  "@types/sizzle": "^2.3.2",
@@ -139,8 +139,8 @@
139
139
  },
140
140
  "buildInfo": {
141
141
  "commitBranch": "develop",
142
- "commitSha": "545556ee30d468d005a4efea07742e237d44ecd9",
143
- "commitDate": "2026-04-28T19:06:42.000Z",
142
+ "commitSha": "914ad901d9d50e2c744769a445643702ceca774b",
143
+ "commitDate": "2026-05-12T03:59:53.000Z",
144
144
  "stable": true
145
145
  },
146
146
  "description": "Cypress is a next generation front end testing tool built for the modern web",
@@ -6,7 +6,7 @@
6
6
  "scripts": {
7
7
  "build": "rimraf dist && rollup -c rollup.config.mjs",
8
8
  "postbuild": "node ../../scripts/sync-exported-npm-with-cli.js",
9
- "check-ts": "tsc --noEmit",
9
+ "check-ts": "tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json && tsc --noEmit -p tsconfig.cypress.json",
10
10
  "cy:open": "node ../../scripts/cypress.js open --component",
11
11
  "cy:open:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
12
12
  "cy:run": "node ../../scripts/cypress.js run --component",
@@ -18,11 +18,12 @@
18
18
  "devDependencies": {
19
19
  "@packages/eslint-config": "0.0.0-development",
20
20
  "@cypress/mount-utils": "0.0.0-development",
21
- "eslint": "^9.31.0",
22
- "jiti": "^2.4.2",
21
+ "@testing-library/cypress": "10.1.0",
23
22
  "@vitejs/plugin-react": "4.6.0",
24
23
  "axios": "^1.15.1",
25
24
  "cypress": "0.0.0-development",
25
+ "eslint": "^9.31.0",
26
+ "jiti": "^2.4.2",
26
27
  "prop-types": "15.8.1",
27
28
  "react": "18.3.1",
28
29
  "react-dom": "18.3.1",
@@ -6,7 +6,7 @@
6
6
  "scripts": {
7
7
  "build": "rimraf dist && rollup -c rollup.config.mjs",
8
8
  "postbuild": "node ../../scripts/sync-exported-npm-with-cli.js",
9
- "check-ts": "tsc --noEmit",
9
+ "check-ts": "tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json && tsc --noEmit -p tsconfig.cypress.json",
10
10
  "cy:open": "node ../../scripts/cypress.js open --component",
11
11
  "cy:open:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
12
12
  "cy:run": "node ../../scripts/cypress.js run --component",
@@ -18,11 +18,12 @@
18
18
  "devDependencies": {
19
19
  "@packages/eslint-config": "0.0.0-development",
20
20
  "@cypress/mount-utils": "0.0.0-development",
21
- "eslint": "^9.31.0",
22
- "jiti": "^2.4.2",
21
+ "@testing-library/cypress": "10.1.0",
23
22
  "@vitejs/plugin-react": "4.6.0",
24
23
  "axios": "^1.15.1",
25
24
  "cypress": "0.0.0-development",
25
+ "eslint": "^9.31.0",
26
+ "jiti": "^2.4.2",
26
27
  "prop-types": "15.8.1",
27
28
  "react": "18.3.1",
28
29
  "react-dom": "18.3.1",
@@ -1372,6 +1372,8 @@ declare namespace Cypress {
1372
1372
  /**
1373
1373
  * End a chain of commands
1374
1374
  *
1375
+ * @deprecated `cy.end()` has been deprecated and will be removed in a future release.
1376
+ * Instead of using `.end()` to break a chain, start a new chain of commands off of `cy`.
1375
1377
  * @see https://on.cypress.io/end
1376
1378
  */
1377
1379
  end(): Chainable<null>