From e45d7b338ada6bd1be6152edb631c62250dcb89e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Feb 2026 06:55:45 +0000 Subject: [PATCH] ci: Version Packages --- .changeset/refactor-domain-event-types.md | 12 ------------ packages/authentication/core/CHANGELOG.md | 8 ++++++++ packages/authentication/core/package.json | 2 +- packages/authentication/methods/otp/CHANGELOG.md | 9 +++++++++ packages/authentication/methods/otp/package.json | 2 +- .../methods/passwordless/CHANGELOG.md | 9 +++++++++ .../methods/passwordless/package.json | 2 +- packages/ddd/CHANGELOG.md | 13 +++++++++++++ packages/ddd/package.json | 2 +- 9 files changed, 43 insertions(+), 16 deletions(-) delete mode 100644 .changeset/refactor-domain-event-types.md diff --git a/.changeset/refactor-domain-event-types.md b/.changeset/refactor-domain-event-types.md deleted file mode 100644 index 6003868..0000000 --- a/.changeset/refactor-domain-event-types.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@rineex/ddd': patch ---- - -Refactor DomainEvent serialization types. - -- Moved `type-fest` from peerDependencies to devDependencies, as it is only - needed for type definitions during build. -- Replaced the custom `Serializable` type definition with `JsonValue` from - type-fest to standardize JSON serialization payloads. -- Removed unnecessary custom type definitions (`Primitive` and recursive - `Serializable`), simplifying the code structure. diff --git a/packages/authentication/core/CHANGELOG.md b/packages/authentication/core/CHANGELOG.md index 8702681..e372d11 100644 --- a/packages/authentication/core/CHANGELOG.md +++ b/packages/authentication/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @rineex/auth-core +## 1.0.7 + +### Patch Changes + +- Updated dependencies + [[`69dc686`](https://github.com/rineex/core/commit/69dc68606545d612da8dc3eb890b996a520be117)]: + - @rineex/ddd@3.2.2 + ## 1.0.6 ### Patch Changes diff --git a/packages/authentication/core/package.json b/packages/authentication/core/package.json index 9122b97..e10de13 100644 --- a/packages/authentication/core/package.json +++ b/packages/authentication/core/package.json @@ -1,6 +1,6 @@ { "name": "@rineex/auth-core", - "version": "1.0.6", + "version": "1.0.7", "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 0ceaf0f..fe356cc 100644 --- a/packages/authentication/methods/otp/CHANGELOG.md +++ b/packages/authentication/methods/otp/CHANGELOG.md @@ -1,5 +1,14 @@ # @rineex/authentication-method-otp +## 1.0.7 + +### Patch Changes + +- Updated dependencies + [[`69dc686`](https://github.com/rineex/core/commit/69dc68606545d612da8dc3eb890b996a520be117)]: + - @rineex/ddd@3.2.2 + - @rineex/auth-core@1.0.7 + ## 1.0.6 ### Patch Changes diff --git a/packages/authentication/methods/otp/package.json b/packages/authentication/methods/otp/package.json index 275d77f..f5b6afe 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.0.6", + "version": "1.0.7", "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 2c5d094..772368f 100644 --- a/packages/authentication/methods/passwordless/CHANGELOG.md +++ b/packages/authentication/methods/passwordless/CHANGELOG.md @@ -1,5 +1,14 @@ # @rineex/authentication-method-passwordless +## 0.1.7 + +### Patch Changes + +- Updated dependencies + [[`69dc686`](https://github.com/rineex/core/commit/69dc68606545d612da8dc3eb890b996a520be117)]: + - @rineex/ddd@3.2.2 + - @rineex/auth-core@1.0.7 + ## 0.1.6 ### Patch Changes diff --git a/packages/authentication/methods/passwordless/package.json b/packages/authentication/methods/passwordless/package.json index 32c930d..6159e6b 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.1.6", + "version": "0.1.7", "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 05b6c5a..50ca6d5 100644 --- a/packages/ddd/CHANGELOG.md +++ b/packages/ddd/CHANGELOG.md @@ -1,5 +1,18 @@ # @rineex/ddd +## 3.2.2 + +### Patch Changes + +- Refactor DomainEvent serialization types. + ([`69dc686`](https://github.com/rineex/core/commit/69dc68606545d612da8dc3eb890b996a520be117)) + - Moved `type-fest` from peerDependencies to devDependencies, as it is only + needed for type definitions during build. + - Replaced the custom `Serializable` type definition with `JsonValue` from + type-fest to standardize JSON serialization payloads. + - Removed unnecessary custom type definitions (`Primitive` and recursive + `Serializable`), simplifying the code structure. + ## 3.2.1 ### Patch Changes diff --git a/packages/ddd/package.json b/packages/ddd/package.json index 4b4ad9a..e0fc72a 100644 --- a/packages/ddd/package.json +++ b/packages/ddd/package.json @@ -1,6 +1,6 @@ { "name": "@rineex/ddd", - "version": "3.2.1", + "version": "3.2.2", "description": "Domain Driven Design package for Rineex core modules", "author": "Rineex Team", "main": "./dist/index.js",