redis-smq 9.0.0 → 9.0.2-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,22 @@
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.0](https://github.com/weyoss/redis-smq/compare/v9.0.1...v9.0.2-next.0) (2025-11-08)
7
+
8
+ ### ✅ Tests
9
+
10
+ - rename test_workspace_esm.sh to test-workspace-esm.sh ([4c56821](https://github.com/weyoss/redis-smq/commit/4c5682125c99949118141418c11bd296d2869172))
11
+
12
+ ### 📦‍ Build System
13
+
14
+ - automate README.md files update ([9d54181](https://github.com/weyoss/redis-smq/commit/9d54181260e6615d176fe47b4786f8edb21c2911))
15
+
16
+ ## [9.0.1](https://github.com/weyoss/redis-smq/compare/v9.0.0...v9.0.1) (2025-11-07)
17
+
18
+ ### 📝 Documentation
19
+
20
+ - update README files for release v9 ([b838b11](https://github.com/weyoss/redis-smq/commit/b838b119323e9c73a420bef1d07a0d432f3607f0))
21
+
6
22
  ## [9.0.0](https://github.com/weyoss/redis-smq/compare/v9.0.0-next.18...v9.0.0) (2025-11-07)
7
23
 
8
24
  **Note:** Version bump only for package redis-smq
package/README.md CHANGED
@@ -1,7 +1,15 @@
1
1
  # RedisSMQ
2
2
 
3
- [![Release (latest)](https://img.shields.io/npm/v/redis-smq/latest?style=flat-square&label=redis-smq%40latest)](https://www.npmjs.com/package/redis-smq?activeTab=versions)
4
- [![Code Coverage (latest)](https://img.shields.io/codecov/c/github/weyoss/redis-smq/master?flag=redis-smq&style=flat-square)](https://app.codecov.io/github/weyoss/redis-smq/tree/master/packages/redis-smq)
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
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
+ [![Pre-release (next)](https://img.shields.io/npm/v/redis-smq/next?style=flat-square&label=redis-smq%40next)](https://www.npmjs.com/package/redis-smq?activeTab=versions)
12
+ [![Code Coverage (next)](https://img.shields.io/codecov/c/github/weyoss/redis-smq/next?flag=redis-smq&style=flat-square)](https://app.codecov.io/github/weyoss/redis-smq/tree/next/packages/redis-smq)
5
13
 
6
14
  A high-performance, reliable, and scalable message queue for Node.js.
7
15
 
@@ -12,8 +20,8 @@ producers/consumers APIs, and integrates with a REST API and Web UI for monitori
12
20
  - Works with ioredis or the official @redis/client
13
21
  - Optional REST API and Web UI for management and observability
14
22
 
15
- The source code and documentation for RedisSMQ are in the main [redis-smq](https://github.com/weyoss/redis-smq/tree/master/README.md) repository.
23
+ The source code and documentation for RedisSMQ are in the main [redis-smq](https://github.com/weyoss/redis-smq/tree/next/README.md) repository.
16
24
 
17
25
  ## License
18
26
 
19
- RedisSMQ is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/master/LICENSE).
27
+ RedisSMQ is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/next/LICENSE).
@@ -0,0 +1,21 @@
1
+ # RedisSMQ
2
+
3
+ __IS_NEXT_NOTE__
4
+
5
+ __NPM_BADGE__
6
+ __CODECOV_BADGE__
7
+
8
+ A high-performance, reliable, and scalable message queue for Node.js.
9
+
10
+ RedisSMQ is a Redis-backed MQ focused on robustness and simplicity. It provides queue models, delivery models,
11
+ producers/consumers APIs, and integrates with a REST API and Web UI for monitoring and administration.
12
+
13
+ - Production-ready, easy to operate
14
+ - Works with ioredis or the official @redis/client
15
+ - Optional REST API and Web UI for management and observability
16
+
17
+ The source code and documentation for RedisSMQ are in the main [redis-smq](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/README.md) repository.
18
+
19
+ ## License
20
+
21
+ RedisSMQ is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-smq",
3
- "version": "9.0.0",
3
+ "version": "9.0.2-next.0",
4
4
  "description": "A high-performance, reliable, and scalable message queue for Node.js.",
5
5
  "author": "Weyoss <weyoss@protonmail.com>",
6
6
  "license": "MIT",
@@ -52,7 +52,7 @@
52
52
  "peerDependencies": {
53
53
  "@redis/client": "^5",
54
54
  "ioredis": "^5",
55
- "redis-smq-common": "^9.0.0"
55
+ "redis-smq-common": "^9.0.2-next.0"
56
56
  },
57
57
  "peerDependenciesMeta": {
58
58
  "@redis/client": {
@@ -73,7 +73,7 @@
73
73
  },
74
74
  "scripts": {
75
75
  "build": "scripts/build.sh",
76
- "test": "../../scripts/test_workspace_esm.sh",
76
+ "test": "../../scripts/test-workspace-esm.sh",
77
77
  "document": "scripts/document.sh"
78
78
  }
79
79
  }