redis-smq-rest-api 9.0.0-next.1 โ†’ 9.0.0-next.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 CHANGED
@@ -3,6 +3,18 @@
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.0-next.2](https://github.com/weyoss/redis-smq/compare/v9.0.0-next.1...v9.0.0-next.2) (2025-09-07)
7
+
8
+ ### ๐Ÿ› Bug Fixes
9
+
10
+ - **redis-smq-rest-api:** add shebang to CLI script for proper execution ([1ed36cc](https://github.com/weyoss/redis-smq/commit/1ed36cc76c0c8dce97a6f99c0b082bec34d3853d))
11
+ - **redis-smq-rest-api:** set default Redis database to 0 ([7e12b43](https://github.com/weyoss/redis-smq/commit/7e12b433c7d4f88bc3a443505818da6a479202a3))
12
+
13
+ ### ๐Ÿ“ Documentation
14
+
15
+ - **redis-smq-rest-api:** remove outdated prerequisites section ([f14aaaf](https://github.com/weyoss/redis-smq/commit/f14aaaf0da96e43468ead3e845ebd2be7e61ae59))
16
+ - update installation instructions to include required deps ([107c2a5](https://github.com/weyoss/redis-smq/commit/107c2a5b2eda5b540f5f033808be94923e8688fa))
17
+
6
18
  ## [9.0.0-next.1](https://github.com/weyoss/redis-smq/compare/v9.0.0-next.0...v9.0.0-next.1) (2025-09-06)
7
19
 
8
20
  ### ๐Ÿ“ Documentation
package/README.md CHANGED
@@ -14,22 +14,11 @@ queue using a RESTful API.
14
14
  - ๐Ÿงช 90%+ code coverage with extensive testing
15
15
  - ๐Ÿ“ฆ Support for both ESM & CJS modules
16
16
 
17
-
18
- ## Prerequisites
19
-
20
- - [RedisSMQ V8](https://github.com/weyoss/redis-smq) latest release.
21
-
22
17
  ## Installation
23
18
 
24
19
  ```bash
25
20
  # Using npm
26
- npm install redis-smq-rest-api --save
27
-
28
- # Using yarn
29
- yarn add redis-smq-rest-api
30
-
31
- # Using pnpm
32
- pnpm add redis-smq-rest-api
21
+ npm install redis-smq redis-smq-common redis-smq-rest-api --save
33
22
  ```
34
23
 
35
24
  ## Version Compatibility
@@ -27,7 +27,7 @@ exports.defaultConfig = {
27
27
  options: {
28
28
  host: '127.0.0.1',
29
29
  port: 6379,
30
- db: 1,
30
+ db: 0,
31
31
  },
32
32
  },
33
33
  apiServer: {
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { Command } from 'commander';
2
3
  import { RedisSMQRestApi } from '../src/index.js';
3
4
  import { defaultConfig } from '../src/config/parseConfig.js';
@@ -12,7 +12,7 @@ export const defaultConfig = {
12
12
  options: {
13
13
  host: '127.0.0.1',
14
14
  port: 6379,
15
- db: 1,
15
+ db: 0,
16
16
  },
17
17
  },
18
18
  apiServer: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-smq-rest-api",
3
- "version": "9.0.0-next.1",
3
+ "version": "9.0.0-next.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",
@@ -66,8 +66,8 @@
66
66
  "uuid": "11.1.0"
67
67
  },
68
68
  "peerDependencies": {
69
- "redis-smq": "^9.0.0-next.1",
70
- "redis-smq-common": "^9.0.0-next.1"
69
+ "redis-smq": "^9.0.0-next.2",
70
+ "redis-smq-common": "^9.0.0-next.2"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@types/json-schema": "7.0.15",