- Core\Mod\Tenant -> Core\Tenant
- Core\Mod\Agentic -> Core\Agentic
Part of namespace restructure to align with L1/L2 module conventions.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- ReferralController now stores ip_hash (SHA-256) instead of raw IP in session
- Cookie excludes IP entirely (only stores provider/model/timestamp)
- PlantTreeForAgentReferral uses hashed IPs in tree metadata
- Updated test to verify hashed IP storage
Raw IPs should not be stored in cookies or persisted unnecessarily.
Session-only hashed IP is sufficient for fraud detection.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Remove old incremental migrations (now consolidated into create_* files)
- Clean up cached view files
- Various fixes across core-api, core-mcp, core-php packages
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add tier and tier_expires_at columns to users table in create migration
- Remove SystemUserSeeder (moved to host.uk.com as it uses app-specific models)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Replace raw HTML form elements with Flux UI equivalents:
- flux:heading and flux:subheading for title
- flux:input for email and password fields
- flux:checkbox for remember me
- flux:link for back navigation
Flux UI components integrate properly with Livewire and
handle loading states automatically.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add @fluxAppearance and @fluxScripts to Demo layout
- Replace custom button with flux:button component
- Flux button handles loading states internally
The wire:loading directives weren't working because Livewire's
CSS wasn't being parsed by the browser (style sheet not applied).
Using Flux's button component resolves this cleanly.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add HasMenuPermissions trait to classes implementing AdminMenuProvider:
- Website\Hub\Boot
- Core\Mod\Hub\Boot
The trait provides default implementations for the new menuPermissions()
and canViewMenu() methods added to the AdminMenuProvider interface.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Remove internal branding:
- Replace "Snide" codename with "Core" in documentation
- Remove "host-uk/core" package name check in Boot.php
- Remove company references from CDN service comments
- Remove hardcoded fallback domains
Improve generated code clarity:
- Add [USER] prefix to TODO comments in MakePlugCommand templates
- Add header comments explaining generated files need implementation
- Convert dashboard TODOs to placeholder UI sections
- Remove internal roadmap TODOs from route files
Add EUPL-1.2 license headers:
- Added license header to 231 PHP files
- Skipped 208 Blade templates (HTML, not PHP)
Update release documentation:
- Mark critical and high issues as fixed in RELEASE-BLOCKERS.md
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Load Font Awesome Pro CSS in admin layout using Cdn::versioned helper
for cache-busted asset loading.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>