redis-smq 7.0.0 → 7.0.4
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/CHANGELOG.md +22 -0
- package/README.md +3 -5
- package/dist/src/common/redis-keys/redis-keys.d.ts +1 -1
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 7.0.4 (2022-07-14)
|
|
4
|
+
|
|
5
|
+
* Fix dev dependencies (e42d072)
|
|
6
|
+
* Update installation info (12c6170)
|
|
7
|
+
* Make redis-smq-common as a peer dependency (ade08af)
|
|
8
|
+
|
|
9
|
+
## 7.0.3 (2022-07-13)
|
|
10
|
+
|
|
11
|
+
* Fix consuming-messages/test00012 (4c9dfb8)
|
|
12
|
+
|
|
13
|
+
## 7.0.2 (2022-07-13)
|
|
14
|
+
|
|
15
|
+
* Bump up redis-smq-common to v1.0.1 (e3fbb10)
|
|
16
|
+
* Bump up typescript to v4.7.4 (0f69254)
|
|
17
|
+
* Fix npm vulnerability warnings (9925be0)
|
|
18
|
+
* Clean up examples (72ea0fb)
|
|
19
|
+
|
|
20
|
+
## 7.0.1 (2022-06-18)
|
|
21
|
+
|
|
22
|
+
* Update migrating.md (9065d5f)
|
|
23
|
+
* Update README.md (4cfb653)
|
|
24
|
+
|
|
3
25
|
## 7.0.0 (2022-06-18)
|
|
4
26
|
|
|
5
27
|
* Fix typing issue (cd8bf6a)
|
package/README.md
CHANGED
|
@@ -15,8 +15,6 @@
|
|
|
15
15
|
|
|
16
16
|
RedisSMQ is a Node.js library for queuing messages (aka jobs) and processing them asynchronously with consumers. Backed by Redis, it allows scaling up your application with ease of use.
|
|
17
17
|
|
|
18
|
-
> ☝ The master branch reflects the latest changes and updates. It is currently going under heavy development. To view the release documentation see [v6.4.2 docs](https://github.com/weyoss/redis-smq/tree/v6.4.2).
|
|
19
|
-
|
|
20
18
|
## Features
|
|
21
19
|
|
|
22
20
|
* **[High-performance message processing](/docs/performance.md)**.
|
|
@@ -70,15 +68,15 @@ RedisSMQ is a Node.js library for queuing messages (aka jobs) and processing the
|
|
|
70
68
|
|
|
71
69
|
## What's new?
|
|
72
70
|
|
|
73
|
-
**2022.
|
|
71
|
+
**2022.06.18**
|
|
74
72
|
|
|
75
|
-
:rocket: Release v7 is
|
|
73
|
+
:rocket: Release v7 is finally ready! The RedisSMQ v7 is a refinement release with many improvements toward making
|
|
76
74
|
things more simple to use and removing any confusions that can occur while working with the message queue.
|
|
77
75
|
|
|
78
76
|
## Installation
|
|
79
77
|
|
|
80
78
|
```text
|
|
81
|
-
npm install redis-smq --save
|
|
79
|
+
npm install redis-smq-common redis-smq --save
|
|
82
80
|
```
|
|
83
81
|
|
|
84
82
|
Considerations:
|
|
@@ -82,5 +82,5 @@ export declare const redisKeys: {
|
|
|
82
82
|
};
|
|
83
83
|
getMainKeys(): Record<"keyQueues" | "keyProcessingQueues" | "keyHeartbeats" | "keyHeartbeatConsumerWeight" | "keyScheduledMessages" | "keyScheduledMessageWeight" | "keyLockConsumerWorkersRunner" | "keyDelayedMessages" | "keyRequeueMessages" | "keyNamespaces" | "keyQueueSettingsRateLimit" | "keyQueueSettingsPriorityQueuing", string>;
|
|
84
84
|
validateNamespace(ns: string): string;
|
|
85
|
-
validateRedisKey(key?: string
|
|
85
|
+
validateRedisKey(key?: string): string;
|
|
86
86
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.4",
|
|
4
4
|
"description": "A simple high-performance Redis message queue for Node.js.",
|
|
5
5
|
"author": "Weyoss <weyoss@protonmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,9 +36,11 @@
|
|
|
36
36
|
"bluebird": "3.7.2",
|
|
37
37
|
"cron-parser": "3.5.0",
|
|
38
38
|
"lodash": "4.17.21",
|
|
39
|
-
"redis-smq-common": "1.0.0",
|
|
40
39
|
"uuid": "8.3.2"
|
|
41
40
|
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"redis-smq-common": "^1.0.1"
|
|
43
|
+
},
|
|
42
44
|
"devDependencies": {
|
|
43
45
|
"@types/bluebird": "3.5.36",
|
|
44
46
|
"@types/debug": "4.1.7",
|
|
@@ -57,11 +59,12 @@
|
|
|
57
59
|
"jest": "27.2.4",
|
|
58
60
|
"lint-staged": "11.1.2",
|
|
59
61
|
"prettier": "2.4.1",
|
|
62
|
+
"redis-smq-common": "^1.0.1",
|
|
60
63
|
"supertest": "6.1.6",
|
|
61
64
|
"ts-jest": "27.0.5",
|
|
62
65
|
"ts-node": "10.2.1",
|
|
63
66
|
"type-coverage": "2.19.0",
|
|
64
|
-
"typescript": "4.4
|
|
67
|
+
"typescript": "4.7.4"
|
|
65
68
|
},
|
|
66
69
|
"scripts": {
|
|
67
70
|
"build:clean": "rimraf dist",
|