cypress 14.5.3 → 14.5.4

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": "14.5.3",
3
+ "version": "14.5.4",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
@@ -124,8 +124,8 @@
124
124
  },
125
125
  "buildInfo": {
126
126
  "commitBranch": "develop",
127
- "commitSha": "d1478d8961a69dc3c0304d3d3d85ef68fbb5e2eb",
128
- "commitDate": "2025-07-24T19:13:32.000Z",
127
+ "commitSha": "3cbfbe76b02816280e1d9fa5bf1d30e0e39aaaf1",
128
+ "commitDate": "2025-08-07T15:32:22.000Z",
129
129
  "stable": true
130
130
  },
131
131
  "description": "Cypress is a next generation front end testing tool built for the modern web",
@@ -3815,7 +3815,7 @@ declare namespace Cypress {
3815
3815
  validate?: () => Promise<false | void> | void
3816
3816
  }
3817
3817
 
3818
- type SameSiteStatus = 'no_restriction' | 'strict' | 'lax'
3818
+ type SameSiteStatus = 'no_restriction' | 'strict' | 'lax' | 'unspecified'
3819
3819
 
3820
3820
  interface SelectFileOptions extends Loggable, Timeoutable, ActionableOptions {
3821
3821
  /**
@@ -3866,8 +3866,8 @@ declare namespace Cypress {
3866
3866
  */
3867
3867
  expiry: number
3868
3868
  /**
3869
- * The cookie's SameSite value. If set, should be one of `lax`, `strict`, or `no_restriction`.
3870
- * `no_restriction` is the equivalent of `SameSite=None`. Pass `undefined` to use the browser's default.
3869
+ * The cookie's SameSite value. If set, should be one of `lax`, `strict`, `no_restriction`, or `unspecified`.
3870
+ * `no_restriction` is the equivalent of `SameSite=None`. Pass `undefined` to use the browser's default ('unspecified' is the default for Firefox 140 and up).
3871
3871
  * Note: `no_restriction` can only be used if the secure flag is set to `true`.
3872
3872
  * @default undefined
3873
3873
  */