From 360c7a8bb39c426abf57ecb2740c69ce30a2a53b Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sat, 3 Jan 2026 22:19:34 +0100 Subject: [PATCH] chore: release v1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- CHANGELOG.md | 19 +++++++++++++++++++ pubspec.yaml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e74a286..fc5d13f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0] - 2026-01-03 + +### Added +- **Authentication System** - Dual-flow auth supporting web (NPM forward auth) and mobile (OIDC) + - `AuthState` model with roles, permissions, and user preferences + - `AuthProvider` with automatic web session detection via `/auth/me` + - Permission system with Domain/Action enums and hierarchical access levels + - `PermissionGate` and `AdminGate` widgets for UI permission checks + - `Role` model with `{domain}.{category}:{action}` format parsing + - Route guards redirect unauthenticated users to login page +- Login page with Authentik OAuth redirect +- Mobile auth platform configuration (iOS URL schemes, Android AppAuth) +- Comprehensive auth test suite (60 unit tests) + +### Changed +- API interceptor skips Bearer tokens on web (uses cookies via NPM forward auth) +- Router integrates auth state for protected route access +- **First stable release** - Core functionality complete for home lab dashboard + ## [0.3.3] - 2026-01-03 ### Added diff --git a/pubspec.yaml b/pubspec.yaml index 086e87c..cf1e9df 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.3.3+1 +version: 1.0.0+1 environment: sdk: ^3.10.4