redis-smq-rest-api 9.0.2-next.0 → 9.0.2-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 +1 -1
- package/package.json +8 -8
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.2-next.1](https://github.com/weyoss/redis-smq/compare/v9.0.2-next.0...v9.0.2-next.1) (2025-11-08)
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
|
|
10
|
+
- update deps to resolve security vulnerabilities ([390d488](https://github.com/weyoss/redis-smq/commit/390d4880241c6bc3cf37e94d1b09f34197a7fa7b))
|
|
11
|
+
|
|
12
|
+
### 📝 Documentation
|
|
13
|
+
|
|
14
|
+
- update npm badge links to point to GitHub releases ([1eaee9e](https://github.com/weyoss/redis-smq/commit/1eaee9e1734b4e78ac56ca9853baac1d58dd2ec9))
|
|
15
|
+
|
|
6
16
|
## [9.0.2-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.1...v9.0.2-next.0) (2025-11-08)
|
|
7
17
|
|
|
8
18
|
### ✅ Tests
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
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://
|
|
11
|
+
[](https://github.com/weyoss/redis-smq/releases)
|
|
12
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-rest-api",
|
|
3
|
-
"version": "9.0.2-next.
|
|
3
|
+
"version": "9.0.2-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",
|
|
@@ -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-next.
|
|
72
|
-
"redis-smq
|
|
71
|
+
"redis-smq-common": "^9.0.2-next.1",
|
|
72
|
+
"redis-smq": "^9.0.2-next.1"
|
|
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"
|