You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: cli/CHANGELOG.md
+9
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,13 @@
1
1
<!-- See the ../guides/writing-the-cypress-changelog.md for details on writing the changelog. -->
2
+
## 15.0.0
3
+
4
+
_Released TBD (PENDING)_
5
+
6
+
**Breaking Changes:**
7
+
8
+
- Removed support for [Chrome DevTools Protocol](https://chromedevtools.github.io/devtools-protocol) with the [firefox](https://www.mozilla.org/) browser. Addresses []().
returnerrTemplate`Still waiting to connect to ${fmt.off(_.capitalize(browserName))}, retrying in 1 second ${fmt.meta(`(attempt ${attempt}/${connectRetryThreshold})`)}`
1183
1183
},
1184
-
CDP_FIREFOX_DEPRECATED: ()=>{
1185
-
returnerrTemplate`Since Firefox 129, Chrome DevTools Protocol (CDP) has been deprecated in Firefox. In Firefox 135 and above, Cypress defaults to automating the Firefox browser with WebDriver BiDi. Cypress will no longer support CDP within Firefox in the future and is planned for removal in Cypress 15.`
warningMessage: `Cypress does not support running ${browser.displayName} version ${browser.majorVersion} due to lack of WebDriver BiDi support. To use ${browser.displayName} with Cypress, install version 135 or newer.`,
12
+
}
13
+
}
14
+
}
15
+
}catch(e){/* empty */}
16
+
17
+
return{
18
+
isSupported: true,
19
+
}
20
+
}
21
+
3
22
/** list of the browsers we can detect and use by default */
it(`${browser.channel}: fails validation when Firefox major version is below 135`,()=>{
82
+
// @ts-expect-error
83
+
constresult=browser.validator({
84
+
majorVersion: '134',
85
+
displayName: 'Firefox',
86
+
})
87
+
88
+
expect(result.isSupported).to.be.false
89
+
expect(result.warningMessage).to.equal('Cypress does not support running Firefox version 134 due to lack of WebDriver BiDi support. To use Firefox with Cypress, install version 135 or newer.')
0 commit comments