@open-mercato/queue 0.4.11-develop.2595.a4ff67f52b → 0.5.1-canary.2624.ce35497e95
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-mercato/queue",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1-canary.2624.ce35497e95",
|
|
4
4
|
"description": "Multi-strategy job queue with local and BullMQ support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -42,15 +42,20 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/jest": "^30.0.0",
|
|
45
|
-
"@types/node": "^
|
|
46
|
-
"jest": "^30.
|
|
47
|
-
"ts-jest": "^29.4.
|
|
45
|
+
"@types/node": "^25.6.0",
|
|
46
|
+
"jest": "^30.3.0",
|
|
47
|
+
"ts-jest": "^29.4.9"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@open-mercato/shared": "0.
|
|
53
|
+
"@open-mercato/shared": "0.5.1-canary.2624.ce35497e95"
|
|
54
54
|
},
|
|
55
|
-
"
|
|
55
|
+
"repository": {
|
|
56
|
+
"type": "git",
|
|
57
|
+
"url": "https://github.com/open-mercato/open-mercato",
|
|
58
|
+
"directory": "packages/queue"
|
|
59
|
+
},
|
|
60
|
+
"stableVersion": "0.5.0"
|
|
56
61
|
}
|
|
@@ -367,7 +367,7 @@ describe('Queue - local strategy', () => {
|
|
|
367
367
|
expect(storedValues).toEqual(Array.from({ length: enqueueCount }, (_, idx) => idx))
|
|
368
368
|
|
|
369
369
|
await queue.close()
|
|
370
|
-
})
|
|
370
|
+
}, 15_000)
|
|
371
371
|
|
|
372
372
|
// Regression: jobs enqueued while a batch is running must survive the
|
|
373
373
|
// subsequent write that removes completed jobs. The pre-fix snapshot-only
|