diff --git a/.changeset/email-lowercase-normalization.md b/.changeset/email-lowercase-normalization.md deleted file mode 100644 index 9d722c5..0000000 --- a/.changeset/email-lowercase-normalization.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@rineex/ddd': patch ---- - -Normalize `Email` value object to lowercase on construction. - -- Uppercase and mixed-case inputs are stored as lowercase -- Emails differing only by case compare equal via `equals()` diff --git a/packages/authentication/core/CHANGELOG.md b/packages/authentication/core/CHANGELOG.md index 25a041c..b93f845 100644 --- a/packages/authentication/core/CHANGELOG.md +++ b/packages/authentication/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @rineex/auth-core +## 1.1.3 + +### Patch Changes + +- Updated dependencies + [[`48a3817`](https://github.com/rineex/core/commit/48a38173838cbb88a68c01a9df87a7c3fdf84798)]: + - @rineex/ddd@6.2.1 + ## 1.1.2 ### Patch Changes diff --git a/packages/authentication/core/package.json b/packages/authentication/core/package.json index 004e260..6b90666 100644 --- a/packages/authentication/core/package.json +++ b/packages/authentication/core/package.json @@ -1,6 +1,6 @@ { "name": "@rineex/auth-core", - "version": "1.1.2", + "version": "1.1.3", "description": "Authentication Core package for Rineex core modules", "author": "Rineex Team", "main": "./dist/index.js", diff --git a/packages/authentication/methods/otp/CHANGELOG.md b/packages/authentication/methods/otp/CHANGELOG.md index e94f2a4..0eb1fdf 100644 --- a/packages/authentication/methods/otp/CHANGELOG.md +++ b/packages/authentication/methods/otp/CHANGELOG.md @@ -1,5 +1,14 @@ # @rineex/authentication-method-otp +## 1.1.3 + +### Patch Changes + +- Updated dependencies + [[`48a3817`](https://github.com/rineex/core/commit/48a38173838cbb88a68c01a9df87a7c3fdf84798)]: + - @rineex/ddd@6.2.1 + - @rineex/auth-core@1.1.3 + ## 1.1.2 ### Patch Changes diff --git a/packages/authentication/methods/otp/package.json b/packages/authentication/methods/otp/package.json index e8fdc1c..25dcd89 100644 --- a/packages/authentication/methods/otp/package.json +++ b/packages/authentication/methods/otp/package.json @@ -1,6 +1,6 @@ { "name": "@rineex/authentication-method-otp", - "version": "1.1.2", + "version": "1.1.3", "description": "OTP authentication method for Rineex authentication system", "main": "./dist/index.js", "module": "./dist/index.mjs", diff --git a/packages/authentication/methods/passwordless/CHANGELOG.md b/packages/authentication/methods/passwordless/CHANGELOG.md index aac4367..22ea016 100644 --- a/packages/authentication/methods/passwordless/CHANGELOG.md +++ b/packages/authentication/methods/passwordless/CHANGELOG.md @@ -1,5 +1,14 @@ # @rineex/authentication-method-passwordless +## 0.2.3 + +### Patch Changes + +- Updated dependencies + [[`48a3817`](https://github.com/rineex/core/commit/48a38173838cbb88a68c01a9df87a7c3fdf84798)]: + - @rineex/ddd@6.2.1 + - @rineex/auth-core@1.1.3 + ## 0.2.2 ### Patch Changes diff --git a/packages/authentication/methods/passwordless/package.json b/packages/authentication/methods/passwordless/package.json index a12d944..7ca99c8 100644 --- a/packages/authentication/methods/passwordless/package.json +++ b/packages/authentication/methods/passwordless/package.json @@ -1,6 +1,6 @@ { "name": "@rineex/authentication-method-passwordless", - "version": "0.2.2", + "version": "0.2.3", "description": "Passwordless authentication method for Rineex authentication system", "main": "./dist/index.js", "module": "./dist/index.mjs", diff --git a/packages/ddd/CHANGELOG.md b/packages/ddd/CHANGELOG.md index c7ac7d4..075f00b 100644 --- a/packages/ddd/CHANGELOG.md +++ b/packages/ddd/CHANGELOG.md @@ -1,5 +1,14 @@ # @rineex/ddd +## 6.2.1 + +### Patch Changes + +- Normalize `Email` value object to lowercase on construction. + ([#75](https://github.com/rineex/core/pull/75)) + - Uppercase and mixed-case inputs are stored as lowercase + - Emails differing only by case compare equal via `equals()` + ## 6.2.0 ### Minor Changes diff --git a/packages/ddd/package.json b/packages/ddd/package.json index 9aeccb0..1c0cce9 100644 --- a/packages/ddd/package.json +++ b/packages/ddd/package.json @@ -1,6 +1,6 @@ { "name": "@rineex/ddd", - "version": "6.2.0", + "version": "6.2.1", "description": "Domain Driven Design package for Rineex core modules", "author": "Rineex Team", "main": "./dist/index.js",