diff --git a/CHANGELOG.md b/CHANGELOG.md index d72e5df..27419eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [0.21.1] - 2026-09-25 + +### Changed +- `GuestOrderClaimer` and its `UserAuthenticated` listener moved from 3dealer's own + `App\Services`/`App\Listeners` into `Modules\Core\Customer\Services\GuestOrderClaimer` / + `Listeners\ClaimGuestOrdersOnLogin`, registered in `CustomerServiceProvider` — attaching a + placed guest order to an account once its billing `contact_email` case-insensitively matches + the account's email (only ever safe right after the shopper has proved they own that email: a + login code, or 3dealer's own email-change confirmation) was already core-appropriate logic + with no 3dealer-specific behavior. `Account\EmailController::verify()` now calls the core + service directly. + ## [0.21.0] - 2026-09-25 ### Added diff --git a/composer.json b/composer.json index 234757a..b96d1a0 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "boboko/core", "description": "Core module — authentication and shared panel behaviour", "type": "library", - "version": "0.21.0", + "version": "0.21.1", "autoload": { "psr-4": { "Modules\\Core\\": "src/"