diff --git a/apps/frontend/src/pages/news/changelog/[product]/[date].vue b/apps/frontend/src/pages/news/changelog/[product]/[date].vue index 1ad2bca81..931419d68 100644 --- a/apps/frontend/src/pages/news/changelog/[product]/[date].vue +++ b/apps/frontend/src/pages/news/changelog/[product]/[date].vue @@ -23,7 +23,7 @@ const changelogEntry = computed(() => const isFirst = computed(() => changelogEntry.value?.date === getChangelog()[0].date) if (!changelogEntry.value) { - createError({ statusCode: 404, statusMessage: 'Version not found' }) + throw createError({ statusCode: 404, statusMessage: 'Version not found' }) } diff --git a/packages/utils/changelog.ts b/packages/utils/changelog.ts index 626e9bd09..b26d86ac0 100644 --- a/packages/utils/changelog.ts +++ b/packages/utils/changelog.ts @@ -11,14 +11,14 @@ export type VersionEntry = { const VERSIONS: VersionEntry[] = [ { - date: `2026-03-17T19:00:00-08:00`, - product: 'website', + date: `2026-03-17T19:30:00-08:00`, + product: 'web', body: `## Improvements - Sorted server project categories, regions, and language filter options. - Added GitHub Pages image links to the list of domains that can bypass the wsrv.nl image proxy for more real-time dynamic images.`, }, { - date: `2026-03-17T19:00:00-08:00`, + date: `2026-03-17T19:30:00-08:00`, product: 'hosting', body: `## Improvements - Fixed being unable to sort by project type and updates at the same time on the Content tab. @@ -27,7 +27,7 @@ const VERSIONS: VersionEntry[] = [ }, { date: `2026-03-17T12:40:00-08:00`, - product: 'website', + product: 'web', body: `## Improvements - Fixed personal access token settings page erroring.`, },