Skip to content

Commit 06eb0ce

Browse files
committed
chore(deps): bump core deps
1 parent 32b3bd9 commit 06eb0ce

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44

55
## Unreleased
6+
7+
---
8+
### 3.5.0 - 2023-01-21
9+
10+
### Update
11+
12+
- rich-domain: update lib core to 1.17.0
13+
14+
615
---
716
### 3.4.7 - 2023-01-19
817

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "types-ddd",
3-
"version": "3.4.7",
3+
"version": "3.5.0",
44
"description": "This package provide utils file and interfaces to assistant build a complex application with domain driving design",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -61,7 +61,7 @@
6161
"bcrypt": "^5.0.1",
6262
"pino": "^8.8.0",
6363
"pino-pretty": "^9.1.1",
64-
"rich-domain": "^1.16.2"
64+
"rich-domain": "^1.17.0"
6565
},
6666
"devDependencies": {
6767
"@microsoft/tsdoc": "^0.14.1",

tests/utils/password.value-object.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ describe('password.value-object', () => {
7676

7777
it('should password to be equal', () => {
7878
const passA = PasswordValueObject.random(12);
79-
const passB = passA.clone().value();
79+
const passB = passA.clone();
8080
const isEqual = passA.isEqual(passB);
8181
expect(isEqual).toBe(true);
8282
});

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3409,10 +3409,10 @@ rfdc@^1.3.0:
34093409
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b"
34103410
integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
34113411

3412-
rich-domain@^1.16.2:
3413-
version "1.16.2"
3414-
resolved "https://registry.yarnpkg.com/rich-domain/-/rich-domain-1.16.2.tgz#37945d29128eb95b7bba894fe4b31ab70d233cbd"
3415-
integrity sha512-yqqViDG0oJcfzbcxU9OymraUspb4p7oT/8uheDX1U7Nw4lsG2N7JRaeHZ9nJp4d7VTu0hccBbP3byKCYfrB2YA==
3412+
rich-domain@^1.17.0:
3413+
version "1.17.0"
3414+
resolved "https://registry.yarnpkg.com/rich-domain/-/rich-domain-1.17.0.tgz#1944ea40b9b4848cce278dd78eeb354c606f9e37"
3415+
integrity sha512-hx6edLBkbS9If61mFXQibGjNX5v0oyvUFhnQpAyzaAo7GxwXfdXEqtiDXfb82QD+5TcVqjlV2MTxC4w6zQs+iA==
34163416

34173417
rimraf@^3.0.0, rimraf@^3.0.2:
34183418
version "3.0.2"

0 commit comments

Comments
 (0)