cypress 15.0.0 → 15.2.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": "15.0.0",
3
+ "version": "15.2.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
@@ -32,7 +32,6 @@
32
32
  "extract-zip": "2.0.1",
33
33
  "figures": "^3.2.0",
34
34
  "fs-extra": "^9.1.0",
35
- "getos": "^3.2.1",
36
35
  "hasha": "5.2.2",
37
36
  "is-installed-globally": "~0.4.0",
38
37
  "lazy-ass": "^1.6.0",
@@ -47,6 +46,7 @@
47
46
  "request-progress": "^3.0.0",
48
47
  "semver": "^7.7.1",
49
48
  "supports-color": "^8.1.1",
49
+ "systeminformation": "5.27.7",
50
50
  "tmp": "~0.2.4",
51
51
  "tree-kill": "1.2.2",
52
52
  "untildify": "^4.0.0",
@@ -77,6 +77,9 @@
77
77
  "import": "./index.mjs",
78
78
  "require": "./index.js"
79
79
  },
80
+ "./types/net-stubbing": {
81
+ "types": "./types/net-stubbing.d.ts"
82
+ },
80
83
  "./vue": {
81
84
  "types": "./vue/dist/index.d.ts",
82
85
  "import": "./vue/dist/cypress-vue.esm-bundler.js",
@@ -124,8 +127,8 @@
124
127
  },
125
128
  "buildInfo": {
126
129
  "commitBranch": "develop",
127
- "commitSha": "6db5cb19350db11fe615dfc17a07d09b46a4d8d1",
128
- "commitDate": "2025-08-20T01:55:57.000Z",
130
+ "commitSha": "058e7d26c0a0a2402a15ad5638508cd38777b350",
131
+ "commitDate": "2025-09-09T18:54:38.000Z",
129
132
  "stable": true
130
133
  },
131
134
  "description": "Cypress is a next generation front end testing tool built for the modern web",
@@ -19,7 +19,7 @@
19
19
  "@cypress/mount-utils": "0.0.0-development",
20
20
  "@types/semver": "7.5.8",
21
21
  "@vitejs/plugin-react": "4.6.0",
22
- "axios": "1.7.7",
22
+ "axios": "1.8.2",
23
23
  "cypress": "0.0.0-development",
24
24
  "prop-types": "15.8.1",
25
25
  "react": "18.3.1",
@@ -19,7 +19,7 @@
19
19
  "@cypress/mount-utils": "0.0.0-development",
20
20
  "@types/semver": "7.5.8",
21
21
  "@vitejs/plugin-react": "4.6.0",
22
- "axios": "1.7.7",
22
+ "axios": "1.8.2",
23
23
  "cypress": "0.0.0-development",
24
24
  "prop-types": "15.8.1",
25
25
  "react": "18.3.1",
@@ -0,0 +1,18 @@
1
+ declare namespace Cypress {
2
+ type SupportedNamedKey = 'ArrowDown' |
3
+ 'ArrowLeft' |
4
+ 'ArrowRight' |
5
+ 'ArrowUp' |
6
+ 'End' |
7
+ 'Home' |
8
+ 'PageDown' |
9
+ 'PageUp' |
10
+ 'Space' |
11
+ 'Enter' |
12
+ 'Tab' |
13
+ 'Backspace' |
14
+ 'Delete' |
15
+ 'Insert'
16
+
17
+ type SupportedKey = SupportedNamedKey | string | number
18
+ }
@@ -2,7 +2,7 @@
2
2
  /// <reference path="./cypress-npm-api.d.ts" />
3
3
  /// <reference path="./cypress-eventemitter.d.ts" />
4
4
  /// <reference path="./cypress-type-helpers.d.ts" />
5
-
5
+ /// <reference path="./cypress-automation.d.ts" />
6
6
  declare namespace Cypress {
7
7
  type FileContents = string | any[] | object
8
8
  type HistoryDirection = 'back' | 'forward'
@@ -684,7 +684,20 @@ declare namespace Cypress {
684
684
  Keyboard: {
685
685
  defaults(options: Partial<KeyboardDefaultsOptions>): void
686
686
  Keys: {
687
+ DOWN: 'ArrowDown',
688
+ LEFT: 'ArrowLeft',
689
+ RIGHT: 'ArrowRight',
690
+ UP: 'ArrowUp',
691
+ END: 'End',
692
+ HOME: 'Home',
693
+ PAGEDOWN: 'PageDown',
694
+ PAGEUP: 'PageUp',
695
+ ENTER: 'Enter',
687
696
  TAB: 'Tab',
697
+ BACKSPACE: 'Backspace',
698
+ SPACE: 'Space',
699
+ DELETE: 'Delete',
700
+ INSERT: 'Insert',
688
701
  },
689
702
  }
690
703
 
@@ -1765,7 +1778,7 @@ declare namespace Cypress {
1765
1778
  * cy.press(Cypress.Keyboard.Keys.TAB) // dispatches a keydown and press event to the browser, followed by a keyup event.
1766
1779
  * @see https://on.cypress.io/press
1767
1780
  */
1768
- press(key: typeof Cypress.Keyboard.Keys[keyof typeof Cypress.Keyboard.Keys], options?: Partial<Loggable & Timeoutable>): Chainable<null>
1781
+ press(key: SupportedKey, options?: Partial<Loggable & Timeoutable>): Chainable<null>
1769
1782
 
1770
1783
  /**
1771
1784
  * Get the immediately preceding sibling of each element in a set of the elements.
package/types/index.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  // Mike Woudenberg <https://github.com/mikewoudenberg>
5
5
  // Robbert van Markus <https://github.com/rvanmarkus>
6
6
  // Nicholas Boll <https://github.com/nicholasboll>
7
- // TypeScript Version: 4.3
7
+ // TypeScript Version: 5.0
8
8
  // Updated by the Cypress team: https://www.cypress.io/about/
9
9
 
10
10
  /// <reference path="./cy-blob-util.d.ts" />
package/vue/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "@vitejs/plugin-vue": "6.0.0",
20
20
  "@vue/compiler-sfc": "3.2.47",
21
21
  "@vue/test-utils": "2.4.6",
22
- "axios": "0.21.2",
22
+ "axios": "0.30.0",
23
23
  "cypress": "0.0.0-development",
24
24
  "debug": "^4.3.4",
25
25
  "globby": "^11.0.1",
@@ -19,7 +19,7 @@
19
19
  "@vitejs/plugin-vue": "6.0.0",
20
20
  "@vue/compiler-sfc": "3.2.47",
21
21
  "@vue/test-utils": "2.4.6",
22
- "axios": "0.21.2",
22
+ "axios": "0.30.0",
23
23
  "cypress": "0.0.0-development",
24
24
  "debug": "^4.3.4",
25
25
  "globby": "^11.0.1",