Skip to content

Commit ac17034

Browse files
authored
Make macOS 11 minimum supported OS version (#6123)
1 parent 715512c commit ac17034

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

docs/app/get-started/install-cypress.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ need prebuilt.
103103

104104
Cypress supports running under these operating systems:
105105

106-
- **macOS** 10.15 and above _(Intel or Apple Silicon 64-bit (x64 or arm64))_
106+
- **macOS** 11 and above _(Intel or Apple Silicon 64-bit (x64 or arm64))_
107107
- **Linux** Ubuntu 20.04 and above, Fedora 40 and above, and Debian 11 and above _(x64 or arm64)_
108108
(see [Linux Prerequisites](#Linux-Prerequisites) down below)
109109
- **Windows** 10 and above _(x64)_

docs/app/references/migration-guide.mdx

+12-5
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ This support is in line with Node.js's support for Linux in 18+.
3333
If you're using a Linux distribution based on glibc `<2.28`, for example, Ubuntu 14-18, RHEL 7, CentOS 7, Amazon Linux 2, you'll need to
3434
update your system to a newer version to install Cypress 14+.
3535

36+
### Minimum macOS 11 (Big Sur)
37+
38+
[Cypress 14.0](/app/references/changelog#14-0-0) upgrades Electron to `33.2.1`.
39+
On macOS this requires a minimum version of macOS 11 (Big Sur).
40+
41+
If you're using a lower version of macOS make sure that you update.
42+
3643
### Updated Browser Support
3744

3845
Starting in Cypress 14, Cypress will officially support [the latest 3 major versions of Chrome, Firefox, and Edge](/app/references/launching-browsers#Browser-versions-supported).
@@ -50,21 +57,21 @@ are in the same superdomain. This means you must now use `cy.origin()` in more s
5057

5158
{/* prettier-ignore-start */}
5259
<Icon name="exclamation-triangle" color="red" /> **Failing Test**
53-
```js
60+
```js
5461
cy.visit('https://www.cypress.io')
5562
cy.visit('https://docs.cypress.io')
56-
// Cypress will not be able to interact with the page, causing the test to fail
63+
// Cypress will not be able to interact with the page, causing the test to fail
5764
cy.get('[role="banner"]').should('be.visible')
5865
```
5966

60-
<Icon name="check-circle" color="green" /> **Fixed Test**
67+
<Icon name="check-circle" color="green" /> **Fixed Test**
6168

62-
```js
69+
```js
6370
cy.visit('https://www.cypress.io')
6471
cy.visit('https://docs.cypress.io')
6572
cy.origin('https://docs.cypress.io', () => {
6673
cy.get('[role="banner"]').should('be.visible')
67-
})
74+
})
6875
```
6976
{/* prettier-ignore-end */}
7077

0 commit comments

Comments
 (0)