Skip to content
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ _Released 11/19/2024 (PENDING)_
**Bugfixes:**

- Fixed an issue where some JS assets were not properly getting sourcemaps included with the vite dev server if they had a cache busting query parameter in the URL. Fixed some scenarios to ensure that the sourcemaps that were included by the vite dev server were inlined. Addressed in [#30606](https://github.com/cypress-io/cypress/pull/30606).
- Fixed Google Chrome for Testing version not parsing correctly. Fixes [#28123](https://github.com/cypress-io/cypress/issues/28123).

## 13.15.2

Expand Down
3 changes: 2 additions & 1 deletion packages/launcher/lib/known-browsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export const knownBrowsers: Browser[] = [
family: 'chromium',
channel: 'stable',
displayName: 'Chrome',
versionRegex: /Google Chrome (\S+)/m,
// Chrome for testing can be any stable, beta, dev or canary version
versionRegex: /Google Chrome (?:for Testing )?(\S+)/m,
binary: ['google-chrome', 'chrome', 'google-chrome-stable'],
minSupportedVersion: MIN_CHROME_VERSION,
},
Expand Down