You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

nukak-postgres

Package Overview
Dependencies
Maintainers
0
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nukak-postgres - npm Package Compare versions

Comparing version

to
1.4.6

8

CHANGELOG.md

@@ -7,2 +7,6 @@ # Changelog

## [1.4.6] - 2024-11-06
- Update dependencies and improve readme.
## [1.4.5] - 2024-09-26

@@ -73,4 +77,4 @@

- 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`).

@@ -77,0 +81,0 @@ ## [0.4.0] - 2023-11-06

@@ -6,3 +6,3 @@ {

"license": "MIT",
"version": "1.4.5",
"version": "1.4.6",
"type": "module",

@@ -26,6 +26,6 @@ "main": "./index.js",

"devDependencies": {
"@types/node": "^22.7.2",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.10",
"copyfiles": "^2.4.1",
"pg": "^8.13.0",
"pg": "^8.13.1",
"rimraf": "^6.0.1",

@@ -32,0 +32,0 @@ "typescript": "~5.4.5"

@@ -121,3 +121,3 @@ <!-- ![code](/assets/code.webp 'code') -->

/**
* 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).
*/

@@ -124,0 +124,0 @@ @Field({ eager: false })