redis-smq-rest-api 9.0.2-next.0 → 9.0.2
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 +16 -0
- package/README.md +13 -13
- package/package.json +8 -8
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](https://github.com/weyoss/redis-smq/compare/v9.0.2-next.1...v9.0.2) (2025-11-08)
|
|
7
|
+
|
|
8
|
+
### 📝 Documentation
|
|
9
|
+
|
|
10
|
+
- update README files ([20d454a](https://github.com/weyoss/redis-smq/commit/20d454a7179f55132f5bdeb1d53603f945352bba))
|
|
11
|
+
|
|
12
|
+
## [9.0.2-next.1](https://github.com/weyoss/redis-smq/compare/v9.0.2-next.0...v9.0.2-next.1) (2025-11-08)
|
|
13
|
+
|
|
14
|
+
### 🐛 Bug Fixes
|
|
15
|
+
|
|
16
|
+
- update deps to resolve security vulnerabilities ([390d488](https://github.com/weyoss/redis-smq/commit/390d4880241c6bc3cf37e94d1b09f34197a7fa7b))
|
|
17
|
+
|
|
18
|
+
### 📝 Documentation
|
|
19
|
+
|
|
20
|
+
- update npm badge links to point to GitHub releases ([1eaee9e](https://github.com/weyoss/redis-smq/commit/1eaee9e1734b4e78ac56ca9853baac1d58dd2ec9))
|
|
21
|
+
|
|
6
22
|
## [9.0.2-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.1...v9.0.2-next.0) (2025-11-08)
|
|
7
23
|
|
|
8
24
|
### ✅ Tests
|
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 "master" branch. These docs describe the latest stable release.
|
|
5
|
+
> For pre-release documentation, see:
|
|
6
6
|
>
|
|
7
|
-
> -
|
|
7
|
+
> - Next (pre-release) README: https://github.com/weyoss/redis-smq/tree/next/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/latest)
|
|
12
|
+
[](https://app.codecov.io/github/weyoss/redis-smq/tree/master/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
|
|
29
|
+
npm install redis-smq redis-smq-common redis-smq-rest-api --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/master/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/master/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/master/packages/redis-smq/README.md): Core message queue
|
|
51
|
+
- [redis-smq-common](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-common/README.md): Shared components/utilities
|
|
52
|
+
- [redis-smq-web-server](https://github.com/weyoss/redis-smq/tree/master/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/master/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/master/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-rest-api",
|
|
3
|
-
"version": "9.0.2
|
|
3
|
+
"version": "9.0.2",
|
|
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",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
"ajv": "8.17.1",
|
|
55
55
|
"awilix": "12.0.5",
|
|
56
56
|
"bluebird": "3.7.2",
|
|
57
|
-
"commander": "14.0.
|
|
57
|
+
"commander": "14.0.2",
|
|
58
58
|
"json-schema": "0.4.0",
|
|
59
59
|
"koa": "3.1.1",
|
|
60
60
|
"koa-mount": "4.2.0",
|
|
61
61
|
"koa-static": "5.0.0",
|
|
62
62
|
"lodash": "4.17.21",
|
|
63
|
-
"swagger-ui-dist": "5.
|
|
63
|
+
"swagger-ui-dist": "5.30.2",
|
|
64
64
|
"tmp": "0.2.5",
|
|
65
65
|
"typescript-json-schema": "0.65.1",
|
|
66
66
|
"uuid": "13.0.0"
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"@redis/client": "^5",
|
|
70
70
|
"ioredis": "^5",
|
|
71
|
-
"redis-smq": "^9.0.2
|
|
72
|
-
"redis-smq-common": "^9.0.2
|
|
71
|
+
"redis-smq": "^9.0.2",
|
|
72
|
+
"redis-smq-common": "^9.0.2"
|
|
73
73
|
},
|
|
74
74
|
"peerDependenciesMeta": {
|
|
75
75
|
"@redis/client": {
|
|
@@ -81,11 +81,11 @@
|
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@types/json-schema": "7.0.15",
|
|
84
|
-
"@types/koa": "3.0.
|
|
84
|
+
"@types/koa": "3.0.1",
|
|
85
85
|
"@types/koa-mount": "4.0.5",
|
|
86
86
|
"@types/koa-static": "4.0.4",
|
|
87
|
-
"@types/koa__cors": "5.0.
|
|
88
|
-
"@types/koa__router": "12.0.
|
|
87
|
+
"@types/koa__cors": "5.0.1",
|
|
88
|
+
"@types/koa__router": "12.0.5",
|
|
89
89
|
"@types/swagger-ui-dist": "3.30.6",
|
|
90
90
|
"@types/tmp": "0.2.6",
|
|
91
91
|
"openapi-types": "12.1.3"
|