Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update Cypress 14 release date to January 16th #30880

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- See the ../guides/writing-the-cypress-changelog.md for details on writing the changelog. -->
## 14.0.0

_Released 1/7/2024 (PENDING)_
_Released 1/16/2025 (PENDING)_

**Breaking Changes:**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('<MajorVersionWelcome />', { viewportWidth: 1280, viewportHeight: 1400
})

it('renders correct time for releases and overflows correctly', () => {
cy.clock(Date.UTC(2025, 0, 10))
cy.clock(Date.UTC(2025, 0, 16))
cy.mount(<MajorVersionWelcome />)
cy.contains('14.0.0 Released just now')
cy.contains('13.0.0 Released last year')
Expand Down
2 changes: 1 addition & 1 deletion packages/launchpad/src/migration/MajorVersionWelcome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ const versionReleaseDates = computed(() => {
'11': useTimeAgo(Date.UTC(2022, 10, 8)).value,
'12': useTimeAgo(Date.UTC(2022, 11, 6)).value,
'13': useTimeAgo(Date.UTC(2023, 7, 29)).value,
'14': useTimeAgo(Date.UTC(2025, 0, 10)).value,
'14': useTimeAgo(Date.UTC(2025, 0, 16)).value,
}
})

Expand Down
Loading