Skip to content

Commit 4b6b3cf

Browse files
committed
Merge branch 'master' into 9.2.0-release
2 parents b392543 + d907be0 commit 4b6b3cf

File tree

18 files changed

+154
-35
lines changed

18 files changed

+154
-35
lines changed
19.8 KB
Loading
23.8 KB
Loading
313 KB
Loading

content/_changelogs/5.4.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ _Released 10/14/2020_
2727
[#8624](https://github.com/cypress-io/cypress/issues/8624)
2828
- When there is a new version of Cypress available, the update modal has a new
2929
design with 'copy to clipboard' buttons to copy the upgrade commands.
30-
Addressed in [#8751](https://github.com/cypress-io/cypress/issues/8751).
30+
Addressed in [#8751](https://github.com/cypress-io/cypress/pull/8751).
3131
- The [Command Log](/guides/core-concepts/test-runner#Command-Log) can be hidden
3232
by passing the `CYPRESS_NO_COMMAND_LOG=1` environment variable during
3333
`cypress open` or `cypress run` to be used as a tool to debug performance

content/_changelogs/5.5.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ _Released 10/26/2020_
1313
**Bugfixes:**
1414

1515
- Updated the Cypress proxy layer to proxy HTTPS traffic from non-AUT origins.
16-
Addressed in [#8827](https://github.com/cypress-io/cypress/issues/8827).
16+
Addressed in [#8827](https://github.com/cypress-io/cypress/pull/8827).
1717
- This fixed an issue with [`cy.route2()`](http) where HTTPS requests to a
1818
non-AUT origin would not be intercepted as expected.
1919
- [`cy.route2()`](http) now properly handles passing a method as its first

content/_changelogs/6.0.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ deprecations.
6262
support for `cy.server()` and `cy.route()` will be removed. We encourage you
6363
to use [cy.intercept()](/api/commands/intercept) instead. See our guide on
6464
[Migrating `cy.route()` to `cy.intercept()`](/guides/references/migration-guide#Migrating-cy-route-to-cy-intercept).
65-
Addressed in [#9185](https://github.com/cypress-io/cypress/issues/9185).
65+
Addressed in [#9185](https://github.com/cypress-io/cypress/pull/9185).
6666
- `experimentalFetchPolyfill` has been deprecated. We encourage you to use
6767
[cy.intercept()](/api/commands/intercept) to intercept requests using the
6868
Fetch API instead.

content/_changelogs/6.1.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ _Released 12/07/2020_
3535
[#8999](https://github.com/cypress-io/cypress/issues/8999).
3636
- We fixed an issue where HTTP redirects could not be awaited using
3737
[cy.intercept()](/api/commands/intercept) unless dynamically intercepted.
38-
Addressed in [#9097](https://github.com/cypress-io/cypress/issues/9097).
38+
Addressed in [#9097](https://github.com/cypress-io/cypress/pull/9097).
3939
- Tests will no longer hang in certain situations when there's an error in a
4040
`before()` hook. Fixes
4141
[#9162](https://github.com/cypress-io/cypress/issues/9162).

content/_changelogs/6.2.0.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ _Released 12/21/2020_
77
- You can now listen to `before:run`, `after:run`, `before:spec` and
88
`after:spec` events in the plugins file when setting the
99
[experimentalRunEvents](/guides/references/experiments) configuration option
10-
to `true`. See the [before:run](/api/plugins/before-run-api),
11-
[after:run](/api/plugins/after-run-api),
12-
[before:spec](/api/plugins/before-spec-api) and
13-
[after:spec](/api/plugins/after-spec-api) docs for more information. Addressed
14-
in [#9646](https://github.com/cypress-io/cypress/issues/9646),
15-
[#14178](https://github.com/cypress-io/cypress/issues/14178)
16-
[#14238](https://github.com/cypress-io/cypress/issues/14238) and
17-
[#14263](https://github.com/cypress-io/cypress/issues/14263).
10+
to `true`. See the [`before:run`](/api/plugins/before-run-api),
11+
[`after:run`](/api/plugins/after-run-api),
12+
[`before:spec`](/api/plugins/before-spec-api) and
13+
[`after:spec`](/api/plugins/after-spec-api) docs for more information.
14+
Addressed in [#9646](https://github.com/cypress-io/cypress/pull/9646),
15+
[#14178](https://github.com/cypress-io/cypress/pull/14178)
16+
[#14238](https://github.com/cypress-io/cypress/pull/14238) and
17+
[#14263](https://github.com/cypress-io/cypress/pull/14263).
1818
- The `Timed out retrying` error message now displays the amount of time Cypress
1919
retried. Addresses [#5781](https://github.com/cypress-io/cypress/issues/5781).
2020
- The RouteMatcher argument for [cy.intercept()](/api/commands/intercept) has a

content/_changelogs/6.7.0.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ _Released 3/15/2021_
88
listen to `before:run`, `after:run`, `before:spec` and `after:spec` events in
99
the plugins file without needing the
1010
[experimentalRunEvents](/guides/references/experiments) configuration option.
11-
See the [before:run](/api/plugins/before-run-api),
12-
[after:run](/api/plugins/after-run-api),
13-
[before:spec](/api/plugins/before-spec-api) and
14-
[after:spec](/api/plugins/after-spec-api) docs for more information. Addressed
15-
in [#15276](https://github.com/cypress-io/cypress/issues/15276).
11+
See the [`before:run`](/api/plugins/before-run-api),
12+
[`after:run`](/api/plugins/after-run-api),
13+
[`before:spec`](/api/plugins/before-spec-api) and
14+
[`after:spec`](/api/plugins/after-spec-api) docs for more information.
15+
Addressed in [#15276](https://github.com/cypress-io/cypress/pull/15276).
1616
- When canceling a run from the Dashboard, previously only parallelized runs
1717
would cancel correctly. Now all recorded runs will respect cancelation and
1818
exit early. Addresses
@@ -25,7 +25,7 @@ _Released 3/15/2021_
2525
upfront. Addressed in
2626
[#14925](https://github.com/cypress-io/cypress/issues/14925).
2727
- The full stack trace from errors thrown in the preprocessor are now displayed.
28-
Addressed in [#15198](https://github.com/cypress-io/cypress/issues/15198).
28+
Addressed in [#15198](https://github.com/cypress-io/cypress/pull/15198).
2929
- Configuration values which are changed at runtime prior to tests running are
3030
now properly shown as resolved from the spec code within the Module API to
3131
indicate where the change originated from. Addresses

content/_changelogs/7.0.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ in more detail and how to change your code to migrate to Cypress 7.0.**
7575
[`redirectionLimit`](guides/references/configuration#Global) config. Addresses
7676
[#14445](https://github.com/cypress-io/cypress/issues/14445).
7777
- The default preprocessor now targets a more modern version of ECMAScript.
78-
Addressed in [#15274](https://github.com/cypress-io/cypress/issues/15274).
78+
Addressed in [#15274](https://github.com/cypress-io/cypress/pull/15274).
7979
- We now enable
8080
[`contextIsolation`](https://www.electronjs.org/docs/tutorial/context-isolation)
8181
by default in the Electron browser. You can override this option if needed

0 commit comments

Comments
 (0)