redis-smq 10.0.0-next.2 → 10.0.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,17 @@
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
+ ## [10.0.0](https://github.com/weyoss/redis-smq/compare/v10.0.0-next.2...v10.0.0) (2026-04-04)
7
+
8
+ > 📖 **Detailed Release Notes**: [RedisSMQ v10.0.0](https://github.com/weyoss/redis-smq/blob/master/release-notes/release-v10.0.0.md)
9
+
10
+ ### 📝 Documentation
11
+
12
+ - add consolidated changelog for v10.0.0-next.2 ([aa07b9f](https://github.com/weyoss/redis-smq/commit/aa07b9f2fd1b976cf7acaaa894fa03a974463cf8))
13
+ - **redis-smq:** simplify EventBus documentation ([31d5081](https://github.com/weyoss/redis-smq/commit/31d5081c308e0a7f4693c11139eae36e218360b2))
14
+ - **redis-smq:** simplify RedisSMQ setup documentation ([7e0cbb6](https://github.com/weyoss/redis-smq/commit/7e0cbb6ac6c6384891e92091bcdc25f1e7e1487c))
15
+ - **redis-smq:** update API reference ([c0c0ceb](https://github.com/weyoss/redis-smq/commit/c0c0ceb2a2d989781464d1bf87f2738ba46be859))
16
+
6
17
  ## [10.0.0-next.2](https://github.com/weyoss/redis-smq/compare/v10.0.0-next.1...v10.0.0-next.2) (2026-04-04)
7
18
 
8
19
  ### ⚠ BREAKING CHANGES
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # RedisSMQ
2
2
 
3
- [![Pre-release (next)](https://img.shields.io/npm/v/redis-smq/next?style=flat-square&label=redis-smq%40next)](https://github.com/weyoss/redis-smq/releases)
4
- [![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)
3
+ [![Stable](https://img.shields.io/npm/v/redis-smq/latest?style=flat-square&label=redis-smq%40latest)](https://github.com/weyoss/redis-smq/releases/latest)
4
+ [![Code Coverage (master)](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)
5
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).
6
+ > 💡 **Note:** You are on the stable `master` branch. For the latest features (including breaking changes), check the [`next` branch](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq).
7
7
 
8
8
  RedisSMQ is a Redis-backed MQ focused on robustness and simplicity. It provides queue models, delivery models,
9
9
  producers/consumers APIs, and integrates with a REST API and Web UI for monitoring and administration.
@@ -12,8 +12,8 @@ producers/consumers APIs, and integrates with a REST API and Web UI for monitori
12
12
  - Works with ioredis or the official @redis/client
13
13
  - Optional REST API and Web UI for management and observability
14
14
 
15
- The source code and documentation for RedisSMQ are in the main [redis-smq](https://github.com/weyoss/redis-smq/tree/next/README.md) repository.
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.
16
16
 
17
17
  ## License
18
18
 
19
- RedisSMQ is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/next/LICENSE).
19
+ RedisSMQ 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",
3
- "version": "10.0.0-next.2",
3
+ "version": "10.0.0",
4
4
  "description": "A high-performance, reliable, and scalable message queue for Node.js.",
5
5
  "author": "Weyoss <weyoss@outlook.com>",
6
6
  "license": "MIT",
@@ -57,7 +57,7 @@
57
57
  "peerDependencies": {
58
58
  "@redis/client": "^5",
59
59
  "ioredis": "^5",
60
- "redis-smq-common": "^10.0.0-next.2"
60
+ "redis-smq-common": "^10.0.0"
61
61
  },
62
62
  "peerDependenciesMeta": {
63
63
  "@redis/client": {