Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .changeset/ddd-aggregate-event-generic.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/authentication/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @rineex/auth-core

## 1.0.5

### Patch Changes

- Updated dependencies
[[`bfd5666`](https://github.com/rineex/core/commit/bfd5666f356aa71376968cfdb5b3d5c26f0c003c)]:
- @rineex/ddd@3.2.0

## 1.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rineex/auth-core",
"version": "1.0.4",
"version": "1.0.5",
"description": "Authentication Core package for Rineex core modules",
"author": "Rineex Team",
"main": "./dist/index.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/authentication/methods/otp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @rineex/authentication-method-otp

## 1.0.5

### Patch Changes

- Updated dependencies
[[`bfd5666`](https://github.com/rineex/core/commit/bfd5666f356aa71376968cfdb5b3d5c26f0c003c)]:
- @rineex/ddd@3.2.0
- @rineex/auth-core@1.0.5

## 1.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/methods/otp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rineex/authentication-method-otp",
"version": "1.0.4",
"version": "1.0.5",
"description": "OTP authentication method for Rineex authentication system",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
9 changes: 9 additions & 0 deletions packages/authentication/methods/passwordless/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @rineex/authentication-method-passwordless

## 0.1.5

### Patch Changes

- Updated dependencies
[[`bfd5666`](https://github.com/rineex/core/commit/bfd5666f356aa71376968cfdb5b3d5c26f0c003c)]:
- @rineex/ddd@3.2.0
- @rineex/auth-core@1.0.5

## 0.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/methods/passwordless/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rineex/authentication-method-passwordless",
"version": "0.1.4",
"version": "0.1.5",
"description": "Passwordless authentication method for Rineex authentication system",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
13 changes: 13 additions & 0 deletions packages/ddd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @rineex/ddd

## 3.2.0

### Minor Changes

- Add optional Event generic to AggregateRoot for typed domain events
([#47](https://github.com/rineex/core/pull/47))

AggregateRoot now accepts an optional third type parameter
`Event extends DomainEvent` (defaults to `DomainEvent`). This allows
aggregates to expose strongly-typed `domainEvents`, `addEvent()`, and
`pullDomainEvents()` when using a union or base type of domain events,
improving type safety without breaking existing usage.

## 3.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ddd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rineex/ddd",
"version": "3.1.2",
"version": "3.2.0",
"description": "Domain Driven Design package for Rineex core modules",
"author": "Rineex Team",
"main": "./dist/index.js",
Expand Down
Loading