Skip to content

Commit f1a1c97

Browse files
authored
fix: fix release date to be august 29th and not august 30th (#27711)
1 parent 7072f3c commit f1a1c97

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

cli/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ _Released 09/12/2023 (PENDING)_
1414
**Bugfixes:**
1515

1616
- 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).
17+
- 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).
1718

1819
## 13.0.0
1920

packages/launchpad/src/migration/MajorVersionWelcome.cy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe('<MajorVersionWelcome />', { viewportWidth: 1280, viewportHeight: 1400
3333
})
3434

3535
it('renders correct time for releases and overflows correctly', () => {
36-
cy.clock(Date.UTC(2023, 7, 30))
36+
cy.clock(Date.UTC(2023, 7, 29))
3737
cy.mount(<MajorVersionWelcome />)
3838
cy.contains('13.0.0 Released just now')
3939
cy.contains('12.0.0 Released 9 months ago')

packages/launchpad/src/migration/MajorVersionWelcome.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ const versionReleaseDates = computed(() => {
227227
'10': useTimeAgo(Date.UTC(2022, 5, 1)).value,
228228
'11': useTimeAgo(Date.UTC(2022, 10, 8)).value,
229229
'12': useTimeAgo(Date.UTC(2022, 11, 6)).value,
230-
'13': useTimeAgo(Date.UTC(2023, 7, 30)).value,
230+
'13': useTimeAgo(Date.UTC(2023, 7, 29)).value,
231231
}
232232
})
233233

0 commit comments

Comments
 (0)