From 4aed262d2378dfd659bbc2c540c7bec7053f2dce Mon Sep 17 00:00:00 2001 From: true2fik <646taoufik@gmail.com> Date: Wed, 14 May 2025 08:23:24 +0100 Subject: [PATCH 1/3] misc: add timeout field to EnqueuedCommandAttributes type --- cli/types/cypress.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/types/cypress.d.ts b/cli/types/cypress.d.ts index 65f51f96722..570522c2f2d 100644 --- a/cli/types/cypress.d.ts +++ b/cli/types/cypress.d.ts @@ -6426,6 +6426,7 @@ declare namespace Cypress { injected: boolean userInvocationStack?: string query?: boolean + timeout?: number fn(...args: any[]): any } From 7b8c01f4fe4b702278eb99e1377effc31b190115 Mon Sep 17 00:00:00 2001 From: true2fik <646taoufik@gmail.com> Date: Wed, 14 May 2025 08:23:57 +0100 Subject: [PATCH 2/3] Add changelog entry --- cli/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index dc1499f6214..c3e3216cd81 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -3,6 +3,10 @@ _Released 6/3/2025 (PENDING)_ +**Misc:** + +- Added timeout field to EnqueuedCommandAttributes type. Addresses [#30198](https://github.com/cypress-io/cypress/issues/30198). + **Dependency Updates:** - Updated `@sinonjs/fake-timers` from `10.3.0` to `11.3.1`. Addressed in [#31746](https://github.com/cypress-io/cypress/pull/31746). From 90c7f4d880a37e5c0a5f5deb74f5094c2ae55e3e Mon Sep 17 00:00:00 2001 From: true2fik <646taoufik@gmail.com> Date: Fri, 6 Jun 2025 08:43:58 +0100 Subject: [PATCH 3/3] Move changelog entry to next minor version --- cli/CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 31eaabaaec1..c4b3725f16e 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -11,6 +11,10 @@ _Released 6/17/2025 (PENDING)_ - Fixed an issue when using `Cypress.stop()` where a run may be aborted prior to receiving the required runner events causing Test Replay to not be available. Addresses [#31781](https://github.com/cypress-io/cypress/issues/31781). +**Misc:** + +- Added timeout field to EnqueuedCommandAttributes type. Addresses [#30198](https://github.com/cypress-io/cypress/issues/30198). + ## 14.4.1 _Released 6/3/2025_ @@ -23,10 +27,6 @@ _Released 6/3/2025_ - The design of commands that display as grouped (such as `.within()` and `cy.session()`) has been updated to provide better clarity when collapsing groups. Addressed in [#31739](https://github.com/cypress-io/cypress/pull/31739). -**Misc:** - -- Added timeout field to EnqueuedCommandAttributes type. Addresses [#30198](https://github.com/cypress-io/cypress/issues/30198). - **Dependency Updates:** - Updated `@sinonjs/fake-timers` from `10.3.0` to `11.3.1`. Addressed in [#31746](https://github.com/cypress-io/cypress/pull/31746).