@qelos/integrator-nest 4.2.0 → 4.2.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/README.md +9 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -163,7 +163,13 @@ QelosModule.forRoot({
|
|
|
163
163
|
});
|
|
164
164
|
```
|
|
165
165
|
|
|
166
|
-
##
|
|
166
|
+
## Version support
|
|
167
167
|
|
|
168
|
-
|
|
169
|
-
|
|
168
|
+
| Requirement | Supported range |
|
|
169
|
+
|-------------|-----------------|
|
|
170
|
+
| Node.js | >= 18 |
|
|
171
|
+
| NestJS (`@nestjs/common`, `@nestjs/core`) | 9.x, 10.x, 11.x |
|
|
172
|
+
|
|
173
|
+
Peer dependencies accept `^9.0.0 || ^10.0.0 || ^11.0.0`. Local development and CI target **Nest 11**; the integrator is verified against that major while remaining compatible with Nest 9 and 10 through the same public API.
|
|
174
|
+
|
|
175
|
+
Nest 12 prereleases are not included in the peer range until a stable release — add an explicit union when upgrading support.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qelos/integrator-nest",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.2",
|
|
4
4
|
"description": "NestJS module that identifies the Qelos user and active workspace before your route handlers run",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@qelos/sdk": "4.2.
|
|
64
|
+
"@qelos/sdk": "4.2.2"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@nestjs/common": "^
|
|
68
|
-
"@nestjs/core": "^
|
|
67
|
+
"@nestjs/common": "^11.0.0",
|
|
68
|
+
"@nestjs/core": "^11.0.0",
|
|
69
69
|
"reflect-metadata": "^0.2.2",
|
|
70
70
|
"rxjs": "^7.8.1",
|
|
71
71
|
"tsx": "^4.21.0",
|