pg-boss 11.0.6 → 11.0.7
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/package.json +3 -3
- package/src/manager.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-boss",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.7",
|
|
4
4
|
"description": "Queueing jobs in Postgres from Node.js like a boss",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"serialize-error": "^8.1.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@types/node": "^22",
|
|
17
|
-
"eslint": "^9.
|
|
16
|
+
"@types/node": "^22.18.8",
|
|
17
|
+
"eslint": "^9.37.0",
|
|
18
18
|
"luxon": "^3.7.2",
|
|
19
19
|
"mocha": "^11.7.4",
|
|
20
20
|
"neostandard": "^0.12.2",
|
package/src/manager.js
CHANGED
|
@@ -340,6 +340,7 @@ class Manager extends EventEmitter {
|
|
|
340
340
|
singletonNextSlot,
|
|
341
341
|
expireInSeconds,
|
|
342
342
|
deleteAfterSeconds,
|
|
343
|
+
retentionSeconds,
|
|
343
344
|
keepUntil,
|
|
344
345
|
retryLimit,
|
|
345
346
|
retryDelay,
|
|
@@ -358,6 +359,7 @@ class Manager extends EventEmitter {
|
|
|
358
359
|
singletonOffset,
|
|
359
360
|
expireInSeconds,
|
|
360
361
|
deleteAfterSeconds,
|
|
362
|
+
retentionSeconds,
|
|
361
363
|
keepUntil,
|
|
362
364
|
retryLimit,
|
|
363
365
|
retryDelay,
|