diff --git a/CHANGELOG.md b/CHANGELOG.md index e491e15..5d41477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together. +## 0.6.0 — 2026-07-12 + +### Added +- **Granular push-notification settings**: turn individual categories on/off (follows, comments, replies, reactions, ratings, mentions, leftover reminders, shared shopping list updates) instead of all-or-nothing. + +### Fixed +- The push-notification toggle in Settings always showed as off, even when notifications were genuinely still enabled — it never checked the actual browser subscription state. +- The API Reference page (`/docs`) was blank — Content-Security-Policy blocked the script it needs to render. + ## 0.5.1 — 2026-07-12 ### Security diff --git a/apps/web/lib/changelog.ts b/apps/web/lib/changelog.ts index 3e1ddb8..bb910ac 100644 --- a/apps/web/lib/changelog.ts +++ b/apps/web/lib/changelog.ts @@ -1,5 +1,5 @@ // Mirrors CHANGELOG.md at the repo root — update both together. -export const APP_VERSION = "0.5.1"; +export const APP_VERSION = "0.6.0"; export type ChangelogEntry = { version: string; @@ -11,6 +11,17 @@ export type ChangelogEntry = { }; export const CHANGELOG: ChangelogEntry[] = [ + { + version: "0.6.0", + date: "2026-07-12", + added: [ + "Granular push-notification settings: turn individual categories on/off instead of all-or-nothing.", + ], + fixed: [ + "The push-notification toggle in Settings always showed as off, even when notifications were genuinely still enabled.", + "The API Reference page (/docs) was blank — CSP blocked the script it needs to render.", + ], + }, { version: "0.5.1", date: "2026-07-12", diff --git a/apps/web/package.json b/apps/web/package.json index 204d386..b61591a 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@epicure/web", - "version": "0.5.1", + "version": "0.6.0", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index d39faf1..10ee3e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "epicure", - "version": "0.5.1", + "version": "0.6.0", "private": true, "scripts": { "dev": "pnpm --filter web dev",