Skip to content

Commit 49fa75a

Browse files
Merge branch 'remove-migration' of https://github.com/cypress-io/cypress into remove-migration
2 parents 8b0bba7 + 7d98fd0 commit 49fa75a

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

cli/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ _Released 07/01/2025 (PENDING)_
66
**Breaking Changes:**
77

88
- Removed support for Angular 17. The minimum supported version is now `18.0.0`. Addresses [#31303](https://github.com/cypress-io/cypress/issues/31303).
9+
- `@cypress/angular` now requires a minimum of `zone.js` `0.14.0`. Addresses [#31582](https://github.com/cypress-io/cypress/issues/31582).
910
- Removed support for Node.js 18 and Node.js 23. Addresses [#31302](https://github.com/cypress-io/cypress/issues/31302).
1011
- Removed support for [Chrome DevTools Protocol](https://chromedevtools.github.io/devtools-protocol) with the [firefox](https://www.mozilla.org/) browser. Addresses [#31189](https://github.com/cypress-io/cypress/issues/31189).
1112
- Removed support of the deprecated 3 argument signature of `cy.stub`. Use `cy.stub(object, name).callsFake(fn)` instead. Addresses [#31346](https://github.com/cypress-io/cypress/issues/31346).

npm/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@angular/core": ">=18.0.0",
2727
"@angular/platform-browser-dynamic": ">=18.0.0",
2828
"rxjs": ">=7.5.0",
29-
"zone.js": ">=0.13.0"
29+
"zone.js": ">=0.14.0"
3030
},
3131
"files": [
3232
"dist"

npm/angular/src/mount.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,6 @@ export type MountResponse<T> = {
123123
component: T
124124
};
125125

126-
// 'zone.js/testing' is not properly aliasing `it.skip` but it does provide `xit`/`xspecify`
127-
// Written up under https://github.com/angular/angular/issues/46297 but is not seeing movement
128-
// so we'll patch here pending a fix in that library
129-
// @ts-ignore Ignore so that way we can bypass semantic error TS7017: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.
130-
globalThis.it.skip = globalThis.xit
131-
132126
@Injectable()
133127
class CypressAngularErrorHandler implements ErrorHandler {
134128
handleError (error: Error): void {

packages/driver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"vite": "^5.4.18",
9696
"vitest": "^2.1.8",
9797
"webpack": "^5.88.2",
98-
"zone.js": "0.9.0"
98+
"zone.js": "0.15.0"
9999
},
100100
"files": [
101101
"patches"

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32645,10 +32645,10 @@ zod@^3.22.5:
3264532645
resolved "https://registry.yarnpkg.com/zod/-/zod-3.22.5.tgz#b9b09db03f6700b0d0b75bf0dbf0c5fc46155220"
3264632646
integrity sha512-HqnGsCdVZ2xc0qWPLdO25WnseXThh0kEYKIdV5F/hTHO75hNZFp8thxSeHhiPrHZKrFTo1SOgkAj9po5bexZlw==
3264732647

32648-
zone.js@0.9.0:
32649-
version "0.9.0"
32650-
resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.9.0.tgz#f42319d657f7616724ed40c5907d4614b4c683fa"
32651-
integrity sha512-EfygvVnLxPSCMSgJ4h7SoY+XNr7ybdwvvwEQ70lvMFl9coNnciXSyWi8Kg6znK1ubyUSffkCKvleSQpLuUKw0Q==
32648+
zone.js@0.15.0:
32649+
version "0.15.0"
32650+
resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.15.0.tgz#4810624e58d6dcf7b8379c1631765589917a0d8f"
32651+
integrity sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==
3265232652

3265332653
zone.js@~0.14.6:
3265432654
version "0.14.6"

0 commit comments

Comments
 (0)