redis-smq-rest-api 9.0.2 → 9.0.3-next.1
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 +10 -0
- package/README.md +13 -13
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.3-next.1](https://github.com/weyoss/redis-smq/compare/v9.0.3-next.0...v9.0.3-next.1) (2025-11-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package redis-smq-rest-api
|
|
9
|
+
|
|
10
|
+
## [9.0.3-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.2...v9.0.3-next.0) (2025-11-09)
|
|
11
|
+
|
|
12
|
+
### 📝 Documentation
|
|
13
|
+
|
|
14
|
+
- update README files ([aa98d75](https://github.com/weyoss/redis-smq/commit/aa98d752f69ed1593ae43f0e38b9df087b11d6de))
|
|
15
|
+
|
|
6
16
|
## [9.0.2](https://github.com/weyoss/redis-smq/compare/v9.0.2-next.1...v9.0.2) (2025-11-08)
|
|
7
17
|
|
|
8
18
|
### 📝 Documentation
|
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# RedisSMQ REST API
|
|
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-rest-api
|
|
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
|
-
[](https://github.com/weyoss/redis-smq/releases)
|
|
12
|
+
[](https://app.codecov.io/github/weyoss/redis-smq/tree/next/packages/redis-smq-rest-api)
|
|
13
13
|
|
|
14
14
|
RedisSMQ REST API provides an HTTP interface enabling any web-capable application to interact with the RedisSMQ message
|
|
15
15
|
queue using a RESTful API.
|
|
@@ -26,7 +26,7 @@ queue using a RESTful API.
|
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
28
|
# Using npm
|
|
29
|
-
npm install redis-smq redis-smq-common redis-smq-rest-api --save
|
|
29
|
+
npm install redis-smq@next redis-smq-common@next redis-smq-rest-api@next --save
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Don't forget to install a Redis client. Choose either node-redis or ioredis:
|
|
@@ -39,19 +39,19 @@ npm install ioredis --save
|
|
|
39
39
|
|
|
40
40
|
## Version Compatibility
|
|
41
41
|
|
|
42
|
-
Always install matching versions of RedisSMQ packages to ensure compatibility. See [version compatibility](https://github.com/weyoss/redis-smq/tree/
|
|
42
|
+
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.
|
|
43
43
|
|
|
44
44
|
## Documentation
|
|
45
45
|
|
|
46
|
-
For in-depth guides and API references, see [the documentation page](https://github.com/weyoss/redis-smq/tree/
|
|
46
|
+
For in-depth guides and API references, see [the documentation page](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-rest-api/docs/README.md):
|
|
47
47
|
|
|
48
48
|
## Related packages
|
|
49
49
|
|
|
50
|
-
- [redis-smq](https://github.com/weyoss/redis-smq/tree/
|
|
51
|
-
- [redis-smq-common](https://github.com/weyoss/redis-smq/tree/
|
|
52
|
-
- [redis-smq-web-server](https://github.com/weyoss/redis-smq/tree/
|
|
53
|
-
- [redis-smq-web-ui](https://github.com/weyoss/redis-smq/tree/
|
|
50
|
+
- [redis-smq](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq/README.md): Core message queue
|
|
51
|
+
- [redis-smq-common](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-common/README.md): Shared components/utilities
|
|
52
|
+
- [redis-smq-web-server](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-web-server/README.md): Static hosting + in-process or proxied API
|
|
53
|
+
- [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
|
|
54
54
|
|
|
55
55
|
## License
|
|
56
56
|
|
|
57
|
-
RedisSMQ REST API is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/
|
|
57
|
+
RedisSMQ REST API 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-rest-api",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.3-next.1",
|
|
4
4
|
"description": "REST API for RedisSMQ: OpenAPI 3 schema and Swagger UI for managing queues, messages, and consumers.",
|
|
5
5
|
"author": "Weyoss <weyoss@protonmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"@redis/client": "^5",
|
|
70
70
|
"ioredis": "^5",
|
|
71
|
-
"redis-smq": "^9.0.
|
|
72
|
-
"redis-smq-common": "^9.0.
|
|
71
|
+
"redis-smq": "^9.0.3-next.1",
|
|
72
|
+
"redis-smq-common": "^9.0.3-next.1"
|
|
73
73
|
},
|
|
74
74
|
"peerDependenciesMeta": {
|
|
75
75
|
"@redis/client": {
|