redis-smq 8.0.0-rc.30 → 8.0.0-rc.31
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 +10 -0
- package/package.json +4 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [8.0.0-rc.31](https://github.com/weyoss/redis-smq/compare/v8.0.0-rc.30...v8.0.0-rc.31) (2025-03-22)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- merge redis-server and net utils into redis-smq-common
|
|
11
|
+
|
|
12
|
+
### ♻️ Code Refactoring
|
|
13
|
+
|
|
14
|
+
- merge redis-server and net utils into redis-smq-common ([3591e20](https://github.com/weyoss/redis-smq/commit/3591e2060dec07ed05d13dba7b3a6154b5bc8057))
|
|
15
|
+
|
|
6
16
|
## [8.0.0-rc.30](https://github.com/weyoss/redis-smq/compare/v8.0.0-rc.29...v8.0.0-rc.30) (2025-03-21)
|
|
7
17
|
|
|
8
18
|
### 🚀 Chore
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq",
|
|
3
|
-
"version": "8.0.0-rc.
|
|
3
|
+
"version": "8.0.0-rc.31",
|
|
4
4
|
"description": "A simple high-performance Redis message queue for Node.js.",
|
|
5
5
|
"author": "Weyoss <weyoss@protonmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,16 +44,13 @@
|
|
|
44
44
|
"./package.json": "./package.json"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"redis-smq-common": "
|
|
47
|
+
"redis-smq-common": "^8.0.0-rc.31"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"cron-parser": "4.9.0",
|
|
51
51
|
"lodash": "4.17.21",
|
|
52
52
|
"uuid": "11.1.0"
|
|
53
53
|
},
|
|
54
|
-
"devDependencies": {
|
|
55
|
-
"redis-smq-tools": "^8.0.0-rc.30"
|
|
56
|
-
},
|
|
57
54
|
"engineStrict": true,
|
|
58
55
|
"engines": {
|
|
59
56
|
"node": ">=20"
|
|
@@ -69,6 +66,5 @@
|
|
|
69
66
|
"build": "scripts/build.sh",
|
|
70
67
|
"test": "../../scripts/test_workspace_esm.sh",
|
|
71
68
|
"document": "scripts/document.sh"
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
}
|
|
69
|
+
}
|
|
70
|
+
}
|