redis-smq-web-server 9.0.10-next.3 → 9.0.11-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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
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.11-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.10-next.4...v9.0.11-next.0) (2026-01-22)
7
+
8
+ ### 📝 Documentation
9
+
10
+ - improve README files for clarity ([6ba6543](https://github.com/weyoss/redis-smq/commit/6ba65433d6743d336141e7351ee6267de42a0219))
11
+
12
+ ## [9.0.10-next.4](https://github.com/weyoss/redis-smq/compare/v9.0.10-next.3...v9.0.10-next.4) (2026-01-16)
13
+
14
+ ### 📝 Documentation
15
+
16
+ - adjust badges position to enhance page styling ([ef3e2fe](https://github.com/weyoss/redis-smq/commit/ef3e2fe19a1f61fb0cbd861090686c7ccfe3bbbe))
17
+ - refine notifications for master and next branch clarity ([63fef1b](https://github.com/weyoss/redis-smq/commit/63fef1bd430680e0de7eba7fe2b8c8f82e821bb9))
18
+
6
19
  ## [9.0.10-next.3](https://github.com/weyoss/redis-smq/compare/v9.0.10-next.2...v9.0.10-next.3) (2026-01-16)
7
20
 
8
21
  **Note:** Version bump only for package redis-smq-web-server
package/README.md CHANGED
@@ -1,16 +1,10 @@
1
1
  # RedisSMQ Web Server
2
2
 
3
- > [!NOTE]
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
- >
7
- > - Master (stable) README: https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-web-server
8
- > - Latest release notes/tags: https://github.com/weyoss/redis-smq/releases/latest
9
- > - Install stable packages with @latest; pre-release with @next.
10
-
11
3
  [![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
4
  [![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
5
 
6
+ > 💡 **Note:** You are viewing the `next` branch with upcoming features. For stable releases, check the [`master` branch](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-web-server).
7
+
14
8
  A lightweight server that brings the RedisSMQ management ecosystem to life. It serves the official Web UI and provides
15
9
  the REST API through two flexible modes of operation:
16
10
 
@@ -30,7 +24,7 @@ the REST API through two flexible modes of operation:
30
24
  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
25
  ```
32
26
 
33
- Don't forget to install a Redis client. Choose either node-redis or ioredis:
27
+ Don't forget to install a Redis client:
34
28
 
35
29
  ```shell
36
30
  npm install @redis/client --save
@@ -1,10 +1,10 @@
1
1
  # RedisSMQ Web Server
2
2
 
3
- __IS_NEXT_NOTE__
4
-
5
3
  __NPM_BADGE__
6
4
  __CODECOV_BADGE__
7
5
 
6
+ __IS_NEXT_NOTE__
7
+
8
8
  A lightweight server that brings the RedisSMQ management ecosystem to life. It serves the official Web UI and provides
9
9
  the REST API through two flexible modes of operation:
10
10
 
@@ -24,7 +24,7 @@ the REST API through two flexible modes of operation:
24
24
  npm install redis-smq__TAG_SUFFIX__ redis-smq-common__TAG_SUFFIX__ redis-smq-rest-api__TAG_SUFFIX__ redis-smq-web-ui__TAG_SUFFIX__ redis-smq-web-server__TAG_SUFFIX__ --save
25
25
  ```
26
26
 
27
- Don't forget to install a Redis client. Choose either node-redis or ioredis:
27
+ Don't forget to install a Redis client:
28
28
 
29
29
  ```shell
30
30
  npm install @redis/client --save
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-smq-web-server",
3
- "version": "9.0.10-next.3",
3
+ "version": "9.0.11-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": "^9.0.10-next.3",
49
- "redis-smq-common": "^9.0.10-next.3",
50
- "redis-smq-rest-api": "^9.0.10-next.3",
51
- "redis-smq-web-ui": "^9.0.10-next.3"
48
+ "redis-smq-common": "^9.0.11-next.0",
49
+ "redis-smq": "^9.0.11-next.0",
50
+ "redis-smq-web-ui": "^9.0.11-next.0",
51
+ "redis-smq-rest-api": "^9.0.11-next.0"
52
52
  },
53
53
  "peerDependenciesMeta": {
54
54
  "@redis/client": {