diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 52d50b91628e..bc33a047635e 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -14,6 +14,7 @@ _Released 09/12/2023 (PENDING)_ **Bugfixes:** - Individual CDP errors that occur while capturing data for test replay will no longer prevent the entire run from being available. Addressed in [#27709](https://github.com/cypress-io/cypress/pull/27709). +- Fixed an issue where the release date on the `v13` landing page was a day behind. Fixed in [#27711](https://github.com/cypress-io/cypress/pull/27711). ## 13.0.0 diff --git a/packages/launchpad/src/migration/MajorVersionWelcome.cy.tsx b/packages/launchpad/src/migration/MajorVersionWelcome.cy.tsx index 9efbaf2989ea..4c2c24cca2c6 100644 --- a/packages/launchpad/src/migration/MajorVersionWelcome.cy.tsx +++ b/packages/launchpad/src/migration/MajorVersionWelcome.cy.tsx @@ -33,7 +33,7 @@ describe('', { viewportWidth: 1280, viewportHeight: 1400 }) it('renders correct time for releases and overflows correctly', () => { - cy.clock(Date.UTC(2023, 7, 30)) + cy.clock(Date.UTC(2023, 7, 29)) cy.mount() cy.contains('13.0.0 Released just now') cy.contains('12.0.0 Released 9 months ago') diff --git a/packages/launchpad/src/migration/MajorVersionWelcome.vue b/packages/launchpad/src/migration/MajorVersionWelcome.vue index c448925daef2..d714f5cdcda3 100644 --- a/packages/launchpad/src/migration/MajorVersionWelcome.vue +++ b/packages/launchpad/src/migration/MajorVersionWelcome.vue @@ -227,7 +227,7 @@ const versionReleaseDates = computed(() => { '10': useTimeAgo(Date.UTC(2022, 5, 1)).value, '11': useTimeAgo(Date.UTC(2022, 10, 8)).value, '12': useTimeAgo(Date.UTC(2022, 11, 6)).value, - '13': useTimeAgo(Date.UTC(2023, 7, 30)).value, + '13': useTimeAgo(Date.UTC(2023, 7, 29)).value, } })