diff --git a/.changeset/result-ok-void-overload.md b/.changeset/result-ok-void-overload.md deleted file mode 100644 index 164e27c..0000000 --- a/.changeset/result-ok-void-overload.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@rineex/ddd': minor ---- - -Add `Result.ok()` void overload for command use cases that succeed without a -value. - -- `Result.ok()` returns `Ok`; `Result.ok(value)` returns `Ok` as before -- `Ok` and `Result` default type parameters to `void` and - `UseCaseError` -- `flatMap` widened to allow distinct error types in chained operations diff --git a/packages/authentication/core/CHANGELOG.md b/packages/authentication/core/CHANGELOG.md index 3fb7c32..0271057 100644 --- a/packages/authentication/core/CHANGELOG.md +++ b/packages/authentication/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @rineex/auth-core +## 1.1.1 + +### Patch Changes + +- Updated dependencies + [[`4647008`](https://github.com/rineex/core/commit/46470084132b8408ea22759e817d74cdd152b8dc)]: + - @rineex/ddd@6.1.0 + ## 1.1.0 ### Minor Changes diff --git a/packages/authentication/core/package.json b/packages/authentication/core/package.json index 4fd8070..d7e289b 100644 --- a/packages/authentication/core/package.json +++ b/packages/authentication/core/package.json @@ -1,6 +1,6 @@ { "name": "@rineex/auth-core", - "version": "1.1.0", + "version": "1.1.1", "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 406a53f..89935c0 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.1 + +### Patch Changes + +- Updated dependencies + [[`4647008`](https://github.com/rineex/core/commit/46470084132b8408ea22759e817d74cdd152b8dc)]: + - @rineex/ddd@6.1.0 + - @rineex/auth-core@1.1.1 + ## 1.1.0 ### Minor Changes diff --git a/packages/authentication/methods/otp/package.json b/packages/authentication/methods/otp/package.json index 238112d..d77ffef 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.0", + "version": "1.1.1", "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 a76ff71..20c88f7 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.1 + +### Patch Changes + +- Updated dependencies + [[`4647008`](https://github.com/rineex/core/commit/46470084132b8408ea22759e817d74cdd152b8dc)]: + - @rineex/ddd@6.1.0 + - @rineex/auth-core@1.1.1 + ## 0.2.0 ### Minor Changes diff --git a/packages/authentication/methods/passwordless/package.json b/packages/authentication/methods/passwordless/package.json index 01e178c..1636f15 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.0", + "version": "0.2.1", "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 2e463fa..e7c84bd 100644 --- a/packages/ddd/CHANGELOG.md +++ b/packages/ddd/CHANGELOG.md @@ -1,5 +1,17 @@ # @rineex/ddd +## 6.1.0 + +### Minor Changes + +- Add `Result.ok()` void overload for command use cases that succeed without a + ([#68](https://github.com/rineex/core/pull/68)) value. + - `Result.ok()` returns `Ok`; `Result.ok(value)` returns `Ok` as + before + - `Ok` and `Result` default type parameters to `void` and + `UseCaseError` + - `flatMap` widened to allow distinct error types in chained operations + ## 6.0.0 ### Major Changes diff --git a/packages/ddd/package.json b/packages/ddd/package.json index 829fec8..6d6884a 100644 --- a/packages/ddd/package.json +++ b/packages/ddd/package.json @@ -1,6 +1,6 @@ { "name": "@rineex/ddd", - "version": "6.0.0", + "version": "6.1.0", "description": "Domain Driven Design package for Rineex core modules", "author": "Rineex Team", "main": "./dist/index.js",