Skip to content

Commit

Permalink
update dependencies and improve readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerpadilla committed Nov 6, 2024
1 parent e30bc14 commit 06a7b7e
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 775 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. Please add

date format is [yyyy-mm-dd]

## [1.4.6] - 2024-11-06

- Update dependencies and improve readme.

## [1.4.5] - 2024-09-26

- Imperative transactions have to be closed manually.
Expand Down Expand Up @@ -69,8 +73,8 @@ date format is [yyyy-mm-dd]

## [1.0.0] - 2024-08-10

- Allow to set a field as non-eager (i.e. lazy) in the entities with `eager: false` (by default all fields are `eager: true`).
- Allow to set a field as non-updatable (i.e. insertable and read-only) in the entities with `updatable: false` (by default all fields are `updatable: true`).
- Allow to set a field as non-eager (i.e. lazy) with `eager: false` (by default fields are `eager: true`).
- Allow to set a field as non-updatable (i.e. insertable and read-only) with `updatable: false` (by default fields are `updatable: true`).

## [0.4.0] - 2023-11-06

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class User {
email?: string;
/**
* fields are `eager: true` by default but can also be marked as `eager: false` (aka lazy fields).
* by default, fields are `eager: true`, but they can also be marked as `eager: false` (aka lazy fields).
*/
@Field({ eager: false })
password?: string;
Expand Down
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"concurrently": "^9.0.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"concurrently": "^9.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
Expand All @@ -50,6 +50,5 @@
"singleQuote": true,
"printWidth": 120
},
"author": "Roger Padilla Camacho",
"packageManager": "[email protected]"
"author": "Roger Padilla"
}
2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "1788702a8fe557011590a230d95b187dccca1d19"
"gitHead": "e30bc1427507ca6a43b6dcf4e480e8dd3efad369"
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "1788702a8fe557011590a230d95b187dccca1d19"
"gitHead": "e30bc1427507ca6a43b6dcf4e480e8dd3efad369"
}
2 changes: 1 addition & 1 deletion packages/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "1788702a8fe557011590a230d95b187dccca1d19"
"gitHead": "e30bc1427507ca6a43b6dcf4e480e8dd3efad369"
}
2 changes: 1 addition & 1 deletion packages/maria/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "1788702a8fe557011590a230d95b187dccca1d19"
"gitHead": "e30bc1427507ca6a43b6dcf4e480e8dd3efad369"
}
2 changes: 1 addition & 1 deletion packages/mongo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "1788702a8fe557011590a230d95b187dccca1d19"
"gitHead": "e30bc1427507ca6a43b6dcf4e480e8dd3efad369"
}
2 changes: 1 addition & 1 deletion packages/mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "1788702a8fe557011590a230d95b187dccca1d19"
"gitHead": "e30bc1427507ca6a43b6dcf4e480e8dd3efad369"
}
2 changes: 1 addition & 1 deletion packages/postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "1788702a8fe557011590a230d95b187dccca1d19"
"gitHead": "e30bc1427507ca6a43b6dcf4e480e8dd3efad369"
}
Loading

0 comments on commit 06a7b7e

Please sign in to comment.