redis-smq-web-server 9.0.2-next.0 → 9.0.2-next.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/CHANGELOG.md +10 -0
- package/README.md +1 -1
- package/package.json +7 -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
|
+
## [9.0.2-next.1](https://github.com/weyoss/redis-smq/compare/v9.0.2-next.0...v9.0.2-next.1) (2025-11-08)
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
|
|
10
|
+
- update deps to resolve security vulnerabilities ([390d488](https://github.com/weyoss/redis-smq/commit/390d4880241c6bc3cf37e94d1b09f34197a7fa7b))
|
|
11
|
+
|
|
12
|
+
### 📝 Documentation
|
|
13
|
+
|
|
14
|
+
- update npm badge links to point to GitHub releases ([1eaee9e](https://github.com/weyoss/redis-smq/commit/1eaee9e1734b4e78ac56ca9853baac1d58dd2ec9))
|
|
15
|
+
|
|
6
16
|
## [9.0.2-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.1...v9.0.2-next.0) (2025-11-08)
|
|
7
17
|
|
|
8
18
|
### ✅ Tests
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
> - Latest release notes/tags: https://github.com/weyoss/redis-smq/releases/latest
|
|
9
9
|
> - Install stable packages with @latest; pre-release with @next.
|
|
10
10
|
|
|
11
|
-
[](https://
|
|
11
|
+
[](https://github.com/weyoss/redis-smq/releases)
|
|
12
12
|
[](https://app.codecov.io/github/weyoss/redis-smq/tree/next/packages/redis-smq-web-server)
|
|
13
13
|
|
|
14
14
|
A lightweight server that brings the RedisSMQ management ecosystem to life. It serves the official Web UI and provides
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-web-server",
|
|
3
|
-
"version": "9.0.2-next.
|
|
3
|
+
"version": "9.0.2-next.1",
|
|
4
4
|
"description": "Web server for RedisSMQ Web UI: serves the SPA and hosts or proxies the RedisSMQ REST API.",
|
|
5
5
|
"author": "Weyoss <weyoss@protonmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,21 +35,20 @@
|
|
|
35
35
|
"redis-smq-web-server": "./dist/esm/bin/cli.js"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"commander": "14.0.
|
|
38
|
+
"commander": "14.0.2",
|
|
39
39
|
"express": "4.21.2",
|
|
40
|
-
"express-rate-limit": "8.1.0",
|
|
41
40
|
"http-proxy-middleware": "3.0.5"
|
|
42
41
|
},
|
|
43
42
|
"devDependencies": {
|
|
44
|
-
"@types/express": "4.17.
|
|
43
|
+
"@types/express": "4.17.25"
|
|
45
44
|
},
|
|
46
45
|
"peerDependencies": {
|
|
47
46
|
"@redis/client": "^5",
|
|
48
47
|
"ioredis": "^5",
|
|
49
|
-
"redis-smq": "^9.0.2-next.
|
|
50
|
-
"redis-smq-common": "^9.0.2-next.
|
|
51
|
-
"redis-smq-rest-api": "^9.0.2-next.
|
|
52
|
-
"redis-smq-web-ui": "^9.0.2-next.
|
|
48
|
+
"redis-smq": "^9.0.2-next.1",
|
|
49
|
+
"redis-smq-common": "^9.0.2-next.1",
|
|
50
|
+
"redis-smq-rest-api": "^9.0.2-next.1",
|
|
51
|
+
"redis-smq-web-ui": "^9.0.2-next.1"
|
|
53
52
|
},
|
|
54
53
|
"peerDependenciesMeta": {
|
|
55
54
|
"@redis/client": {
|