pg-cache 1.5.2 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/lru.js +1 -1
- package/lru.js +1 -1
- package/package.json +4 -4
package/esm/lru.js
CHANGED
package/lru.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.teardownPgPools = exports.close = exports.pgCache = exports.PgPoolCacheManager = void 0;
|
|
4
|
-
const logger_1 = require("@
|
|
4
|
+
const logger_1 = require("@pgpmjs/logger");
|
|
5
5
|
const lru_cache_1 = require("lru-cache");
|
|
6
6
|
const log = new logger_1.Logger('pg-cache');
|
|
7
7
|
const ONE_HOUR_IN_MS = 1000 * 60 * 60;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-cache",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PostgreSQL connection pool LRU cache manager",
|
|
6
6
|
"main": "index.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
32
|
+
"@pgpmjs/logger": "^1.3.0",
|
|
33
|
+
"@pgpmjs/types": "^2.12.0",
|
|
34
34
|
"lru-cache": "^11.2.4",
|
|
35
35
|
"pg": "^8.16.3",
|
|
36
36
|
"pg-env": "^1.2.1"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"connection",
|
|
49
49
|
"launchql"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "293ffe3db7a328d1a096b8f239d9c71c26b43ec0"
|
|
52
52
|
}
|