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
BREAKING CHANGE: Update to Ubuntu 24.04.2 LTS
Update
default Node.js from 22.15.0 to 22.17.0
causing CircleCI docker image migration from
cimg/node:22.15.0-browsers to cimg/node:22.17.0-browsers
with base image migrating from
Ubuntu 22.04.3 LTS to Ubuntu 24.04.2 LTS
which is the core of the breaking change
Also update
circleci/browser-tools from 2.1.1 to 2.1.2 (text changes only)
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,11 @@ A typical project can have:
34
34
```yaml
35
35
version: 2.1
36
36
orbs:
37
-
# "cypress-io/cypress@4" installs the latest published
37
+
# "cypress-io/cypress@5" installs the latest published
38
38
# version "s.x.y" of the orb. We recommend you then use
39
-
# the strict explicit version "cypress-io/cypress@4.x.y"
39
+
# the strict explicit version "cypress-io/cypress@5.x.y"
40
40
# to lock the version and prevent unexpected CI changes
41
-
cypress: cypress-io/cypress@4
41
+
cypress: cypress-io/cypress@5
42
42
workflows:
43
43
build:
44
44
jobs:
@@ -66,7 +66,7 @@ may have:
66
66
```yaml
67
67
version: 2.1
68
68
orbs:
69
-
cypress: cypress-io/cypress@4
69
+
cypress: cypress-io/cypress@5
70
70
workflows:
71
71
build:
72
72
jobs:
@@ -135,7 +135,7 @@ A single Docker container used to run Cypress tests. This default executor exten
135
135
```yaml
136
136
version: 2.1
137
137
orbs:
138
-
cypress: cypress-io/cypress@4
138
+
cypress: cypress-io/cypress@5
139
139
executor: cypress/default
140
140
jobs:
141
141
- cypress/run:
@@ -146,10 +146,10 @@ You can also use your own executor by passing in your own Docker image. See the
146
146
```yaml
147
147
version: 2.1
148
148
orbs:
149
-
cypress: cypress-io/cypress@4
149
+
cypress: cypress-io/cypress@5
150
150
executor:
151
151
docker:
152
-
image: cypress/browsers:22.15.0 # your Docker image here
152
+
image: cypress/browsers:22.17.0 # your Docker image here
153
153
jobs:
154
154
- cypress/run:
155
155
```
@@ -161,7 +161,7 @@ jobs:
161
161
```yaml
162
162
version: 2.1
163
163
orbs:
164
-
cypress: cypress-io/cypress@4
164
+
cypress: cypress-io/cypress@5
165
165
jobs:
166
166
install:
167
167
executor: cypress/default
@@ -199,7 +199,7 @@ Cypress orb is _versioned_ so you can be sure that the configuration will _not_
199
199
200
200
You can find all changes and published orb versions for Cypress orb at [cypress-io/circleci-orb/releases](https://github.com/cypress-io/circleci-orb/releases).
201
201
202
-
We are using `cypress-io/cypress@4` version in our examples, so you get the latest published orb version `4.x.x`. But we recommend locking it down to an exact version to prevent unexpected changes from suddenly breaking your builds.
202
+
We are using `cypress-io/cypress@5` version in our examples, so you get the latest published orb version `5.x.x`. But we recommend locking it down to an exact version to prevent unexpected changes from suddenly breaking your builds.
Copy file name to clipboardExpand all lines: src/examples/browser.yml
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,12 @@
1
1
description: >
2
-
Run Cypress tests using specified browser. `install_browsers: true` installs the default browsers Chrome and Firefox with the geckodriver, and the optional browsers Chrome for Testing and Edge from the CircleCI Browser Tools orb at https://circleci.com/developer/orbs/orb/circleci/browser-tools#commands-install_browser_tools.
2
+
Run Cypress tests using specified browser.
3
+
`install_browsers: true` installs the default browsers Chrome and Firefox with the geckodriver,
4
+
and the optional browsers Chrome for Testing and Edge from the CircleCI Browser Tools orb at
0 commit comments