redis-smq-web-server 9.0.8 → 9.0.9-next.0

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 (3) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +13 -13
  3. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.9-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.8...v9.0.9-next.0) (2026-01-08)
7
+
8
+ ### 🚀 Chore
9
+
10
+ - update READMEs after merging 'v9.0.8' into 'next' ([9ea29cc](https://github.com/weyoss/redis-smq/commit/9ea29cc2af7906285c5ccc675c65167d2e8005d6))
11
+
6
12
  ## [9.0.8](https://github.com/weyoss/redis-smq/compare/v9.0.8-next.0...v9.0.8) (2026-01-04)
7
13
 
8
14
  ### 🚀 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 "master" branch. These docs describe the latest stable release.
5
- > For pre-release documentation, see:
4
+ > You are viewing the documentation for the "next" branch. These docs describe unreleased changes published under the npm "next" dist-tag.
5
+ > For the latest stable documentation, see:
6
6
  >
7
- > - Next (pre-release) README: https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-web-server
7
+ > - Master (stable) README: https://github.com/weyoss/redis-smq/tree/master/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
- [![Stable](https://img.shields.io/npm/v/redis-smq-web-server/latest?style=flat-square&label=redis-smq-web-server%40latest)](https://github.com/weyoss/redis-smq/releases/latest)
12
- [![Code Coverage (master)](https://img.shields.io/codecov/c/github/weyoss/redis-smq/master?flag=redis-smq-web-server&style=flat-square)](https://app.codecov.io/github/weyoss/redis-smq/tree/master/packages/redis-smq-web-server)
11
+ [![Pre-release (next)](https://img.shields.io/npm/v/redis-smq-web-server/next?style=flat-square&label=redis-smq-web-server%40next)](https://github.com/weyoss/redis-smq/releases)
12
+ [![Code Coverage (next)](https://img.shields.io/codecov/c/github/weyoss/redis-smq/next?flag=redis-smq-web-server&style=flat-square)](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
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 redis-smq-common redis-smq-rest-api redis-smq-web-ui redis-smq-web-server --save
30
+ npm install redis-smq@next redis-smq-common@next redis-smq-rest-api@next redis-smq-web-ui@next redis-smq-web-server@next --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/master/packages/redis-smq/docs/version-compatibility.md) for details.
43
+ Always install matching versions of RedisSMQ packages to ensure compatibility. See [version compatibility](https://github.com/weyoss/redis-smq/tree/next/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/master/packages/redis-smq-web-server/docs/README.md).
47
+ For in-depth guides and API references, see [the documentation page](https://github.com/weyoss/redis-smq/tree/next/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/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
51
+ - [redis-smq](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq/README.md): Core message queue
52
+ - [redis-smq-common](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-common/README.md): Shared components/utilities
53
+ - [redis-smq-rest-api](https://github.com/weyoss/redis-smq/tree/next/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/next/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/master/LICENSE).
58
+ RedisSMQ Web Server is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/next/LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-smq-web-server",
3
- "version": "9.0.8",
3
+ "version": "9.0.9-next.0",
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-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"
48
+ "redis-smq-common": "^9.0.9-next.0",
49
+ "redis-smq-rest-api": "^9.0.9-next.0",
50
+ "redis-smq": "^9.0.9-next.0",
51
+ "redis-smq-web-ui": "^9.0.9-next.0"
52
52
  },
53
53
  "peerDependenciesMeta": {
54
54
  "@redis/client": {