redis-smq 8.0.0-rc.3 → 8.0.0-rc.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
 
2
2
 
3
+ ## [8.0.0-rc.4](https://github.com/weyoss/redis-smq/compare/v8.0.0-rc.3...v8.0.0-rc.4) (2023-12-02)
4
+
5
+
6
+ ### Documentation
7
+
8
+ * clean up outdated examples ([dd1c68b](https://github.com/weyoss/redis-smq/commit/dd1c68bdd7cf7de2dfa309dbe7efff76fed5c983))
9
+
10
+
11
+ ### Misc
12
+
13
+ * move redis-smq-common from dev-deps to deps ([675880d](https://github.com/weyoss/redis-smq/commit/675880d3803cca9c89aa860486bae43dbe7e2f70))
14
+
3
15
  ## [8.0.0-rc.3](https://github.com/weyoss/redis-smq/compare/v8.0.0-rc.2...v8.0.0-rc.3) (2023-12-02)
4
16
 
5
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-smq",
3
- "version": "8.0.0-rc.3",
3
+ "version": "8.0.0-rc.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",
@@ -35,9 +35,9 @@
35
35
  "module": "dist/index.js",
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "bluebird": "3.7.2",
39
38
  "cron-parser": "4.7.1",
40
39
  "lodash": "4.17.21",
40
+ "redis-smq-common": "3.0.0-rc.7",
41
41
  "uuid": "9.0.0"
42
42
  },
43
43
  "devDependencies": {
@@ -45,11 +45,12 @@
45
45
  "@types/debug": "4.1.7",
46
46
  "@types/jest": "27.0.2",
47
47
  "@types/lodash": "4.14.191",
48
- "@types/node": "16.10.2",
48
+ "@types/node": "18.19.1",
49
49
  "@types/supertest": "2.0.11",
50
50
  "@types/uuid": "9.0.0",
51
51
  "@typescript-eslint/eslint-plugin": "6.10.0",
52
52
  "@typescript-eslint/parser": "6.10.0",
53
+ "bluebird": "3.7.2",
53
54
  "eslint": "8.53.0",
54
55
  "eslint-config-prettier": "9.0.0",
55
56
  "eslint-plugin-prettier": "5.0.1",
@@ -57,7 +58,6 @@
57
58
  "jest": "27.2.4",
58
59
  "lint-staged": "11.1.2",
59
60
  "prettier": "3.0.3",
60
- "redis-smq-common": "3.0.0-rc.7",
61
61
  "supertest": "6.1.6",
62
62
  "type-coverage": "2.27.0",
63
63
  "typescript": "4.9.4"