@zintrust/queue-redis 2.4.4 → 2.8.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/README.md CHANGED
@@ -27,6 +27,8 @@ REDIS_RPC_URL=https://queues.example.com
27
27
 
28
28
  Start the backend with `zin redis-rpc` or `zin s redis-rpc`. See [`@zintrust/redis-rpc`](https://www.npmjs.com/package/@zintrust/redis-rpc).
29
29
 
30
+ If you use Redis RPC pull-style dequeue/ack flows, `@zintrust/redis-rpc@2.4.8` can already fail abandoned BullMQ `active` jobs automatically. Tune that recovery threshold with `REDIS_RPC_STALE_ACTIVE_MS` on the Redis RPC server.
31
+
30
32
  ## When to use
31
33
 
32
34
  - ✅ Use `@zintrust/queue-redis` if you only need to **enqueue jobs** and another service will process them
@@ -0,0 +1,85 @@
1
+ {
2
+ "name": "@zintrust/queue-redis",
3
+ "version": "2.8.1",
4
+ "buildDate": "2026-06-26T06:21:10.775Z",
5
+ "buildEnvironment": {
6
+ "node": "v20.20.2",
7
+ "platform": "linux",
8
+ "arch": "x64"
9
+ },
10
+ "git": {
11
+ "commit": "b713112d",
12
+ "branch": "master"
13
+ },
14
+ "package": {
15
+ "engines": {
16
+ "node": ">=20.0.0"
17
+ },
18
+ "dependencies": [
19
+ "ioredis",
20
+ "redis"
21
+ ],
22
+ "peerDependencies": [
23
+ "@zintrust/core",
24
+ "@zintrust/redis-rpc"
25
+ ]
26
+ },
27
+ "files": {
28
+ "BullMQRedisQueue.d.ts": {
29
+ "size": 932,
30
+ "sha256": "03f622bf01432a4e646ea981188de37c70878fb5a8fe9d12ab34b013fb76c699"
31
+ },
32
+ "BullMQRedisQueue.js": {
33
+ "size": 22726,
34
+ "sha256": "cf266ebe527247625ba5996f942c16a9194eabd443ca6db99fda3ce155a5f2c5"
35
+ },
36
+ "QueueHttpGateway.d.ts": {
37
+ "size": 437,
38
+ "sha256": "9c45a8643136415b248828322442aac16cd4b2e0d22355c3b8ecf6188973ffe7"
39
+ },
40
+ "QueueHttpGateway.js": {
41
+ "size": 7665,
42
+ "sha256": "352a1c2de6bbbaf7cd684bb428454bdd3293aff070956b3ee912403fe1394992"
43
+ },
44
+ "RedisPublishClient.d.ts": {
45
+ "size": 451,
46
+ "sha256": "341a68a3b8603b453146dc721f9d2eaf0d65bb6a1acb67908a9c6f9542b9fd2d"
47
+ },
48
+ "RedisPublishClient.js": {
49
+ "size": 5930,
50
+ "sha256": "7fc31ada403878a0dcb9046923acf4d396635cb5a5abfb54a34606c9660d2ff8"
51
+ },
52
+ "RedisRpcQueueDriver.d.ts": {
53
+ "size": 549,
54
+ "sha256": "19dc10ffc29e813a241a9c69184e988d94d1c16ffc82010c75cadc29a4833a93"
55
+ },
56
+ "RedisRpcQueueDriver.js": {
57
+ "size": 5613,
58
+ "sha256": "16af040ccb1539877a7d789f6bf3aede82cf2794b1f606f6e378dd49f7f03016"
59
+ },
60
+ "index.d.ts": {
61
+ "size": 609,
62
+ "sha256": "c74e26117ad588f7d28dda0c71fdd17588e6f58a0c68ede56af2fb2795352726"
63
+ },
64
+ "index.js": {
65
+ "size": 714,
66
+ "sha256": "161e897e4589bd1087638562265b8bcdd102c0a0f37e5c39a44075e450a34f42"
67
+ },
68
+ "register.d.ts": {
69
+ "size": 170,
70
+ "sha256": "e10ca97976730171bfaaaa25f484a30d06c6dca57c7cd85d700c202e0785a0b7"
71
+ },
72
+ "register.js": {
73
+ "size": 593,
74
+ "sha256": "9a4ca56fc5d0ae9ca9c5d6c89731b3331749d3e254e583992f311e3ec7add80b"
75
+ },
76
+ "retentionUtils.d.ts": {
77
+ "size": 563,
78
+ "sha256": "f0f9bfbedba14317680513cbeb5f8a902b944cc7dea7ed8bb09116bc0ff654db"
79
+ },
80
+ "retentionUtils.js": {
81
+ "size": 859,
82
+ "sha256": "8fb58f8330454673d84ccc69491c0f0f6e2983fcd137ccc5bb10a5e662988012"
83
+ }
84
+ }
85
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zintrust/queue-redis",
3
- "version": "2.4.4",
3
+ "version": "2.8.1",
4
4
  "description": "Redis queue driver for ZinTrust.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -49,4 +49,4 @@
49
49
  "ioredis": "^5.11.0",
50
50
  "redis": "^5.12.1"
51
51
  }
52
- }
52
+ }