redis-smq-benchmarks 9.0.9 → 9.0.10-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 +7 -0
- package/README.md +5 -5
- package/README.template.md +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
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.10-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.9...v9.0.10-next.0) (2026-01-09)
|
|
7
|
+
|
|
8
|
+
### 🚀 Chore
|
|
9
|
+
|
|
10
|
+
- **redis-smq-benchmarks:** correct tag suffix in README template ([1bc1c01](https://github.com/weyoss/redis-smq/commit/1bc1c01af89079b5d2171e1659fc99dab657c507))
|
|
11
|
+
- update READMEs after merging 'v9.0.9' into 'next' ([12dc2bc](https://github.com/weyoss/redis-smq/commit/12dc2bc7c5d88d5a62613db05e0b43aa3047ca1b))
|
|
12
|
+
|
|
6
13
|
## [9.0.9](https://github.com/weyoss/redis-smq/compare/v9.0.9-next.5...v9.0.9) (2026-01-09)
|
|
7
14
|
|
|
8
15
|
### 🚀 Chore
|
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# RedisSMQ Benchmarks
|
|
2
2
|
|
|
3
3
|
> [!NOTE]
|
|
4
|
-
> You are viewing the documentation for the "
|
|
5
|
-
> For
|
|
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
|
-
> -
|
|
7
|
+
> - Master (stable) README: https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-benchmarks
|
|
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
|
|
|
@@ -30,7 +30,7 @@ This benchmark suite provides tools to measure RedisSMQ performance across diffe
|
|
|
30
30
|
### Installation
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npm install redis-smq@ redis-smq-common@ redis-smq-benchmarks@ --save
|
|
33
|
+
npm install redis-smq@next redis-smq-common@next redis-smq-benchmarks@next --save
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### Basic Usage
|
|
@@ -189,4 +189,4 @@ End-to-End:
|
|
|
189
189
|
|
|
190
190
|
## License
|
|
191
191
|
|
|
192
|
-
RedisSMQ Benchmarks is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/
|
|
192
|
+
RedisSMQ Benchmarks is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/next/LICENSE).
|
package/README.template.md
CHANGED
|
@@ -24,7 +24,7 @@ This benchmark suite provides tools to measure RedisSMQ performance across diffe
|
|
|
24
24
|
### Installation
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
npm install redis-
|
|
27
|
+
npm install redis-smq__TAG_SUFFIX__ redis-smq-common__TAG_SUFFIX__ redis-smq-benchmarks__TAG_SUFFIX__ --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
### Basic Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-benchmarks",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.10-next.0",
|
|
4
4
|
"description": "Benchmarking tool for RedisSMQ to assess performance and throughput in your application environment.",
|
|
5
5
|
"author": "Weyoss <weyoss@outlook.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"redis-smq": "^9.0.
|
|
54
|
-
"redis-smq-common": "^9.0.
|
|
53
|
+
"redis-smq": "^9.0.10-next.0",
|
|
54
|
+
"redis-smq-common": "^9.0.10-next.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"ioredis": "^5"
|