Skip to content

Commit a178752

Browse files
15.7.0 Release Docs (#6324)
* chore: add docs for Next.js 16 (#6323) * chore: add changelog and finish next.js documentation --------- Co-authored-by: Bill Glesias <[email protected]>
1 parent 717cc1b commit a178752

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

docs/app/component-testing/get-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ following development servers and frameworks:
4444
| ------------------------------------------------------------------------------------------------------------------ | ------------- | --------- |
4545
| [React with Vite](/app/component-testing/react/overview#React-with-Vite) | React 18-19 | Vite 5-7 |
4646
| [React with Webpack](/app/component-testing/react/overview#React-with-Webpack) | React 18-19 | Webpack 5 |
47-
| [Next.js 14-15](/app/component-testing/react/overview#Nextjs) | React 18-19 | Webpack 5 |
47+
| [Next.js 14-16](/app/component-testing/react/overview#Nextjs) | React 18-19 | Webpack 5 |
4848
| [Vue with Vite](/app/component-testing/vue/overview#Vue-with-Vite) | Vue 3 | Vite 5-7 |
4949
| [Vue with Webpack](/app/component-testing/vue/overview#Vue-with-Webpack) | Vue 3 | Webpack 5 |
5050
| [Angular](/app/component-testing/angular/overview#Framework-Configuration) | Angular 18-20 | Webpack 5 |

docs/app/component-testing/react/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ it via the `webpackConfig` option.
151151

152152
### Next.js
153153

154-
Cypress Component Testing works with Next.js 14 and Next.js 15.
154+
Cypress Component Testing works with Next.js 14, 15 and 16.
155155

156156
#### Next.js Configuration
157157

@@ -189,8 +189,8 @@ Next.js pages and Component Testing for individual components in a Next.js app.
189189

190190
#### Sample Next.js Apps
191191

192-
- [Next.js 14 with TypeScript](https://github.com/cypress-io/cypress-component-testing-apps/tree/main/react-next14-ts)
193192
- [Next.js 15 with TypeScript](https://github.com/cypress-io/cypress-component-testing-apps/tree/main/react-next15-ts)
193+
- [Next.js 16 with TypeScript](https://github.com/cypress-io/cypress-component-testing-apps/tree/main/react-next16-ts)
194194

195195
## Community Resources
196196

docs/app/references/changelog.mdx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,30 @@ sidebar_label: Changelog
88

99
# Changelog
1010

11+
## 15.7.0
12+
13+
_Released 11/19/2025_
14+
15+
**Performance:**
16+
17+
- Limits the number of matched elements that are tested for visibility when added to a command log entry. Fixes a crash scenario related to rapid successive DOM additions in conjunction with a large number of elements returned from a query. Addressed in [#32937](https://github.com/cypress-io/cypress/pull/32937).
18+
19+
**Features:**
20+
21+
- `Next.js` version 16 is now supported within component testing. Currently, `webpack` is used to bundle Next.js components. Turbopack, the [new default](https://nextjs.org/docs/app/guides/upgrading/version-16#turbopack-by-default) inside Next.js 16, is not yet supported within Cypress. Addresses [#32857](https://github.com/cypress-io/cypress/issues/32857).
22+
23+
**Bugfixes:**
24+
25+
- Fixed an issue where [`cy.wrap()`](/api/commands/wrap) would cause infinite recursion and freeze the Cypress App when called with objects containing circular references. Fixes [#24715](https://github.com/cypress-io/cypress/issues/24715). Addressed in [#32917](https://github.com/cypress-io/cypress/pull/32917).
26+
- Fixed an issue where top changes on test retries could cause attempt numbers to show up more than one time in the reporter and cause attempts to be lost in Test Replay. Addressed in [#32888](https://github.com/cypress-io/cypress/pull/32888).
27+
- Fixed an issue where stack traces that are used to determine a test's invocation details are sometimes incorrect. Addressed in [#32699](https://github.com/cypress-io/cypress/pull/32699).
28+
- Fixed an issue where larger than expected config values were causing issues in certain cases when recording to the Cypress Cloud. Addressed in [#32957](https://github.com/cypress-io/cypress/pull/32957).
29+
30+
**Misc:**
31+
32+
- The keyboard shortcuts modal now displays the keyboard shortcut for saving Studio changes - `⌘` + `s` for Mac or `Ctrl` + `s` for Windows/Linux. Addressed [#32862](https://github.com/cypress-io/cypress/issues/32862). Addressed in [#32864](https://github.com/cypress-io/cypress/pull/32864).
33+
- The Cursor logo now correctly displays in the External editor dropdown. Addresses [#32062](https://github.com/cypress-io/cypress/issues/32062). Addressed in [#32911](https://github.com/cypress-io/cypress/pull/32911).
34+
1135
## 15.6.0
1236

1337
_Released 11/4/2025_

0 commit comments

Comments
 (0)