Skip to content
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
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,60 @@

## [2026.7.0] - 2026-07-18

### Bug Fixes

- **router**: Add loading builder to root route to prevent null-check crash (#408)
- **favorites**: Show loading state while festival switches (#409)
- **cache**: Serialise DrinkCacheService writes to prevent race (#419)
- **repository**: Return UserDrinkState from mutators to eliminate dual DateTime.now() (#447)
- **drink-detail**: Make the tasting SnackBar dismissible and less cramped (#475)
- **router**: Push detail routes instead of replacing to preserve scroll position (#478)
- **drinks**: Make drink card text areas tappable (#483)

### Documentation

- Remove stale planning docs and fix dangling links (#394)
- **my-festival**: Resolve timeline vs unified-list contradiction; split photos into separate milestone (#418)
- **api**: Publish MyFestival OpenAPI spec via Redoc at /api-docs/ (#428)
- **agents**: Promote cross-cutting guidance from skill commands (#444)
- **skills**: Fix MCP method references and dedupe shared guidance (#452)
- **skills**: Add change-control and debugging-playbook skills (#456)
- **agents**: Dedup AGENTS.md into a spine + skill router (#458)
- **adr**: Propose the check-in as the primary My Festival entity (#459)
- **adr**: Mark ADR 0006 Accepted (#460)
- **readme**: Refresh features, fix accuracy nits, strengthen story (#464)
- **design**: Capture the design-language lessons from the detail redesign (#473)

### Features

- **favourites**: Query favourites from the personal-state store, independent of the catalogue (#396)
- **domain**: Extract personal-state management into UserDrinkStateController (#398)
- **domain**: Extract FestivalController from BeerProvider (#402)
- **domain**: Extract UserPreferencesController from BeerProvider (#403)
- **proto**: Myfestival v1alpha API contract, OpenAPI generation, and client codegen (#425)
- **worker**: Add /v1alpha Review API on D1 (#426)
- **proto**: Consolidate DrinkEntry sync contract (v1alpha) (#429)
- **api**: Add read-only festival catalogue API (#433)
- **my-festival**: Add tasting-log and notes mutators through the stack (#455)
- **my-festival**: My Festival screen with want-to-try and tasted sections (#457)
- **my-festival**: Migrate to LogEntry check-in model (schema v2) (#463)
- **my-festival**: Detail-screen multi-tasting, timestamps and notes (#466)
- **drink-detail**: Reorder layout and add Similar Drinks carousel (#468)
- **drinks**: Redesign the drink detail screen around a "one job per surface" layout (#472)
- **detail**: Collapse app bar title to the drink on scroll (#482)
- **web**: Set route-aware browser tab titles (#484)
- **navigation**: Add one-tap return to drinks list from detail screens (#485)

### Refactoring

- **drinks**: Split DrinksScreen into focused widget files (#388)
- **storage**: Unify personal state into a versioned UserDataStore (#395)
- Simplify controllers and eliminate parallel switch and boilerplate (#399)
- **models**: Rename FavoriteDrinkEntry→MyFestivalEntry; generalise to myFestivalEntries; extract FavoritesScreen (#448)
- **widgets**: Extract FactsStrip from DrinkHeroPanel (#474)



## [2026.6.0] - 2026-06-05

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: cambridge_beer_festival
description: A Flutter app for Cambridge Beer Festival - browse beers, ciders, meads, and more.
publish_to: 'none'
version: 2026.6.0+2026060500
version: 2026.7.0+2026071800

environment:
sdk: '>=3.10.0 <4.0.0'
Expand Down
54 changes: 41 additions & 13 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,56 @@

## [2026.6.0] - 2026-06-05
## [2026.7.0] - 2026-07-18

### Bug Fixes

- **screens**: Show festival name instead of ID in drink detail app bar (#365)
- **models**: Make Drink user-state fields immutable with copyWith (#366)
- **analytics**: Filter connectivity failures from partial-fetch log (#375)
- **connectivity**: Replace runtimeType string-matching with conditional imports (#376)
- **provider**: Don't update lastDrinksRefresh when festival has no types (#382)
- **models**: Add == and hashCode to Drink, Product, and Producer (#380)
- **router**: Add loading builder to root route to prevent null-check crash (#408)
- **favorites**: Show loading state while festival switches (#409)
- **cache**: Serialise DrinkCacheService writes to prevent race (#419)
- **repository**: Return UserDrinkState from mutators to eliminate dual DateTime.now() (#447)
- **drink-detail**: Make the tasting SnackBar dismissible and less cramped (#475)
- **router**: Push detail routes instead of replacing to preserve scroll position (#478)
- **drinks**: Make drink card text areas tappable (#483)

### Documentation

- **agents**: Add parallel subagent/worktree workflow rules (#368)
- **agents**: Clarify worktree PRs target main, not the session branch (#374)
- Remove stale planning docs and fix dangling links (#394)
- **my-festival**: Resolve timeline vs unified-list contradiction; split photos into separate milestone (#418)
- **api**: Publish MyFestival OpenAPI spec via Redoc at /api-docs/ (#428)
- **agents**: Promote cross-cutting guidance from skill commands (#444)
- **skills**: Fix MCP method references and dedupe shared guidance (#452)
- **skills**: Add change-control and debugging-playbook skills (#456)
- **agents**: Dedup AGENTS.md into a spine + skill router (#458)
- **adr**: Propose the check-in as the primary My Festival entity (#459)
- **adr**: Mark ADR 0006 Accepted (#460)
- **readme**: Refresh features, fix accuracy nits, strengthen story (#464)
- **design**: Capture the design-language lessons from the detail redesign (#473)

### Features

- **claude**: Add ship-issues workflow commands and tighten agent docs (#378)
- **models**: Introduce BeverageCategories constants, replace magic strings (#381)
- **favourites**: Query favourites from the personal-state store, independent of the catalogue (#396)
- **domain**: Extract personal-state management into UserDrinkStateController (#398)
- **domain**: Extract FestivalController from BeerProvider (#402)
- **domain**: Extract UserPreferencesController from BeerProvider (#403)
- **proto**: Myfestival v1alpha API contract, OpenAPI generation, and client codegen (#425)
- **worker**: Add /v1alpha Review API on D1 (#426)
- **proto**: Consolidate DrinkEntry sync contract (v1alpha) (#429)
- **api**: Add read-only festival catalogue API (#433)
- **my-festival**: Add tasting-log and notes mutators through the stack (#455)
- **my-festival**: My Festival screen with want-to-try and tasted sections (#457)
- **my-festival**: Migrate to LogEntry check-in model (schema v2) (#463)
- **my-festival**: Detail-screen multi-tasting, timestamps and notes (#466)
- **drink-detail**: Reorder layout and add Similar Drinks carousel (#468)
- **drinks**: Redesign the drink detail screen around a "one job per surface" layout (#472)
- **detail**: Collapse app bar title to the drink on scroll (#482)
- **web**: Set route-aware browser tab titles (#484)
- **navigation**: Add one-tap return to drinks list from detail screens (#485)

### Refactoring

- **models**: Add Drink-level accessors to remove feature envy in screens (#367)
- **screens**: Extract DetailHeader widget, deduplicate sort label logic (#377)
- **drinks**: Split DrinksScreen into focused widget files (#388)
- **storage**: Unify personal state into a versioned UserDataStore (#395)
- Simplify controllers and eliminate parallel switch and boilerplate (#399)
- **models**: Rename FavoriteDrinkEntry→MyFestivalEntry; generalise to myFestivalEntries; extract FavoritesScreen (#448)
- **widgets**: Extract FactsStrip from DrinkHeroPanel (#474)


Loading