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/breaking-domain-error-change.md

This file was deleted.

24 changes: 0 additions & 24 deletions .changeset/deep-freeze-enhancements.md

This file was deleted.

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

## 1.0.8

### Patch Changes

- Updated dependencies
[[`8288b06`](https://github.com/rineex/core/commit/8288b066870c3773a5591d83a74cfac7ea5392f5),
[`0c695b9`](https://github.com/rineex/core/commit/0c695b900bacb976aa3dabd053b4315f3d8bbfe3)]:
- @rineex/ddd@4.0.0

## 1.0.7

### 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.7",
"version": "1.0.8",
"description": "Authentication Core package for Rineex core modules",
"author": "Rineex Team",
"main": "./dist/index.js",
Expand Down
10 changes: 10 additions & 0 deletions packages/authentication/methods/otp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @rineex/authentication-method-otp

## 1.0.8

### Patch Changes

- Updated dependencies
[[`8288b06`](https://github.com/rineex/core/commit/8288b066870c3773a5591d83a74cfac7ea5392f5),
[`0c695b9`](https://github.com/rineex/core/commit/0c695b900bacb976aa3dabd053b4315f3d8bbfe3)]:
- @rineex/ddd@4.0.0
- @rineex/auth-core@1.0.8

## 1.0.7

### 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.7",
"version": "1.0.8",
"description": "OTP authentication method for Rineex authentication system",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
10 changes: 10 additions & 0 deletions packages/authentication/methods/passwordless/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @rineex/authentication-method-passwordless

## 0.1.8

### Patch Changes

- Updated dependencies
[[`8288b06`](https://github.com/rineex/core/commit/8288b066870c3773a5591d83a74cfac7ea5392f5),
[`0c695b9`](https://github.com/rineex/core/commit/0c695b900bacb976aa3dabd053b4315f3d8bbfe3)]:
- @rineex/ddd@4.0.0
- @rineex/auth-core@1.0.8

## 0.1.7

### 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.7",
"version": "0.1.8",
"description": "Passwordless authentication method for Rineex authentication system",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
33 changes: 33 additions & 0 deletions packages/ddd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# @rineex/ddd

## 4.0.0

### Major Changes

- Breaking changes in `DomainError` class:
([`8288b06`](https://github.com/rineex/core/commit/8288b066870c3773a5591d83a74cfac7ea5392f5))
- Now extends native `Error` for correct functionality, affecting
serialization and type checks.
- Removed custom message property; uses inherited message from `Error`.
- Constructor updated to call `super(message)` and set `this.name`.
- Added prototype chain restoration for proper `instanceof` behavior.
- Adjusted property order in `toObject()` method and marked `toString()` with
`override`.
- Simplified JSDoc comments.

### Minor Changes

- ### Enhancements to `deepFreeze` Utility ([`0c695b9`](https://github.com/rineex/core/commit/0c695b900bacb976aa3dabd053b4315f3d8bbfe3))
1. **New `isFreezable()` helper** – Extracted the check for whether a value
can be frozen (object, non-null, not already frozen). Handles primitives,
null, undefined, functions, and already-frozen objects.
2. **Map/Set support** – `deepFreeze` now recursively freezes Map keys and
values, and Set elements.
3. **Symbol property support** – Utilizes `Object.getOwnPropertyNames` and
`Object.getOwnPropertySymbols` to freeze symbol-keyed properties alongside
string keys.
4. **Refactored structure** – Now organized as Map → Set → Array → Object
branches, using `Object.getOwnPropertyDescriptor` and handling
`descriptor.value` when present.
5. **Documentation updates** – JSDoc mentions circular references, Map/Set
handling, symbol properties, and a performance warning about avoiding use
in hot paths.

## 3.2.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.2.2",
"version": "4.0.0",
"description": "Domain Driven Design package for Rineex core modules",
"author": "Rineex Team",
"main": "./dist/index.js",
Expand Down