Skip to content

Commit 87a845a

Browse files
misc: Update on.cypress.come urls to correct on.cypress.io urls (#30953)
* fix: Update on.cypress.come urls to correct on.cypress.io urls * Add changelog entry
1 parent f072ca1 commit 87a845a

6 files changed

+8
-7
lines changed

cli/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ _Released 1/28/2025 (PENDING)_
1313

1414
**Misc:**
1515

16+
- Some broken links displayed in 14+ now link to the correct documentation URL. Addresses [#30951](https://github.com/cypress-io/cypress/issues/30951). Addressed in [#30953](https://github.com/cypress-io/cypress/pull/30953).
1617
- Benign Mesa/GLX related warnings are now hidden in the terminal output when running Cypress in certain Linux environments or containers. Addresses [#29521](https://github.com/cypress-io/cypress/issues/29521) and [#29554](https://github.com/cypress-io/cypress/issues/29554).
1718

1819
## 14.0.0

packages/errors/__snapshot-html__/EXPERIMENTAL_SKIP_DOMAIN_INJECTION_REMOVED.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/errors/__snapshot-html__/INJECT_DOCUMENT_DOMAIN_DEPRECATION.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/errors/__snapshot-html__/INJECT_DOCUMENT_DOMAIN_E2E_ONLY.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/errors/src/errors.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1354,23 +1354,23 @@ export const AllCypressErrors = {
13541354
return errTemplate`\
13551355
The ${fmt.highlight(`experimentalSkipDomainInjection`)} experiment is over. ${fmt.highlight('document.domain')} injection is now off by default.
13561356
1357-
Read the migration guide for Cypress v14.0.0: https://on.cypress.com/migration-guide
1357+
Read the migration guide for Cypress v14.0.0: https://on.cypress.io/migration-guide
13581358
`
13591359
},
13601360
// TODO: link to docs on injectDocumentDomain
13611361
INJECT_DOCUMENT_DOMAIN_DEPRECATION: () => {
13621362
return errTemplate`\
13631363
The ${fmt.highlight('injectDocumentDomain')} option is deprecated. Interactions with intra-test navigations to differing hostnames must now be wrapped in ${fmt.highlight('cy.origin')} commands, even if the hostname is a subdomain. This configuration option will be removed in Cypress 15.
13641364
1365-
Read the documentation for the injectDocumentDomain configuration option: https://on.cypress.com/inject-document-domain-configuration
1365+
Read the documentation for the injectDocumentDomain configuration option: https://on.cypress.io/inject-document-domain-configuration
13661366
`
13671367
},
13681368
INJECT_DOCUMENT_DOMAIN_E2E_ONLY: () => {
13691369
// TODO: link to docs on injectDocumentDomain
13701370
return errTemplate`\
13711371
The ${fmt.highlight('injectDocumentDomain')} option is only available for E2E testing.
13721372
1373-
Read the documentation for the injectDocumentDomain configuration option: https://on.cypress.com/inject-document-domain-configuration
1373+
Read the documentation for the injectDocumentDomain configuration option: https://on.cypress.io/inject-document-domain-configuration
13741374
`
13751375
},
13761376
FIREFOX_GC_INTERVAL_REMOVED: () => {

system-tests/__snapshots__/experimental_skip_domain_injection_spec.ts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ https://on.cypress.io/configuration
1313
1414
The experimentalSkipDomainInjection experiment is over. document.domain injection is now off by default.
1515
16-
Read the migration guide for Cypress v14.0.0: https://on.cypress.com/migration-guide
16+
Read the migration guide for Cypress v14.0.0: https://on.cypress.io/migration-guide
1717
1818
1919
`

0 commit comments

Comments
 (0)