redis-smq-web-server 9.0.7-next.0 → 9.0.8
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 +13 -13
- package/package.json +5 -5
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.8](https://github.com/weyoss/redis-smq/compare/v9.0.8-next.0...v9.0.8) (2026-01-04)
|
|
7
|
+
|
|
8
|
+
### 🚀 Chore
|
|
9
|
+
|
|
10
|
+
- update READMEs after merging 'origin/next' into 'master' ([5905226](https://github.com/weyoss/redis-smq/commit/59052262bd6b2077043ed6c74b7d0739a308dc0e))
|
|
11
|
+
|
|
12
|
+
## [9.0.8-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.7-next.0...v9.0.8-next.0) (2026-01-03)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package redis-smq-web-server
|
|
15
|
+
|
|
6
16
|
## [9.0.7-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.6...v9.0.7-next.0) (2026-01-03)
|
|
7
17
|
|
|
8
18
|
### 🚀 Chore
|
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# RedisSMQ Web Server
|
|
2
2
|
|
|
3
3
|
> [!NOTE]
|
|
4
|
-
> You are viewing the documentation for the "
|
|
5
|
-
> For
|
|
4
|
+
> You are viewing the documentation for the "master" branch. These docs describe the latest stable release.
|
|
5
|
+
> For pre-release documentation, see:
|
|
6
6
|
>
|
|
7
|
-
> -
|
|
7
|
+
> - Next (pre-release) README: https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-web-server
|
|
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://github.com/weyoss/redis-smq/releases/latest)
|
|
12
|
+
[](https://app.codecov.io/github/weyoss/redis-smq/tree/master/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
|
|
15
15
|
the REST API through two flexible modes of operation:
|
|
@@ -27,7 +27,7 @@ the REST API through two flexible modes of operation:
|
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
# Using npm
|
|
30
|
-
npm install redis-smq
|
|
30
|
+
npm install redis-smq redis-smq-common redis-smq-rest-api redis-smq-web-ui redis-smq-web-server --save
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Don't forget to install a Redis client. Choose either node-redis or ioredis:
|
|
@@ -40,19 +40,19 @@ npm install ioredis --save
|
|
|
40
40
|
|
|
41
41
|
## Version Compatibility
|
|
42
42
|
|
|
43
|
-
Always install matching versions of RedisSMQ packages to ensure compatibility. See [version compatibility](https://github.com/weyoss/redis-smq/tree/
|
|
43
|
+
Always install matching versions of RedisSMQ packages to ensure compatibility. See [version compatibility](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq/docs/version-compatibility.md) for details.
|
|
44
44
|
|
|
45
45
|
## Documentation
|
|
46
46
|
|
|
47
|
-
For in-depth guides and API references, see [the documentation page](https://github.com/weyoss/redis-smq/tree/
|
|
47
|
+
For in-depth guides and API references, see [the documentation page](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-web-server/docs/README.md).
|
|
48
48
|
|
|
49
49
|
## Related packages
|
|
50
50
|
|
|
51
|
-
- [redis-smq](https://github.com/weyoss/redis-smq/tree/
|
|
52
|
-
- [redis-smq-common](https://github.com/weyoss/redis-smq/tree/
|
|
53
|
-
- [redis-smq-rest-api](https://github.com/weyoss/redis-smq/tree/
|
|
54
|
-
- [redis-smq-web-ui](https://github.com/weyoss/redis-smq/tree/
|
|
51
|
+
- [redis-smq](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq/README.md): Core message queue
|
|
52
|
+
- [redis-smq-common](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-common/README.md): Shared components/utilities
|
|
53
|
+
- [redis-smq-rest-api](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-rest-api/README.md): REST API with OpenAPI v3 and Swagger UI
|
|
54
|
+
- [redis-smq-web-ui](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-web-ui/README.md): SPA for monitoring and managing RedisSMQ
|
|
55
55
|
|
|
56
56
|
## License
|
|
57
57
|
|
|
58
|
-
RedisSMQ Web Server is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/
|
|
58
|
+
RedisSMQ Web Server is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/master/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-web-server",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.8",
|
|
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@outlook.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@redis/client": "^5",
|
|
47
47
|
"ioredis": "^5",
|
|
48
|
-
"redis-smq": "^9.0.
|
|
49
|
-
"redis-smq-
|
|
50
|
-
"redis-smq-rest-api": "^9.0.
|
|
51
|
-
"redis-smq
|
|
48
|
+
"redis-smq-common": "^9.0.8",
|
|
49
|
+
"redis-smq-web-ui": "^9.0.8",
|
|
50
|
+
"redis-smq-rest-api": "^9.0.8",
|
|
51
|
+
"redis-smq": "^9.0.8"
|
|
52
52
|
},
|
|
53
53
|
"peerDependenciesMeta": {
|
|
54
54
|
"@redis/client": {
|