nestjs-exception-handler 4.4.0 → 4.5.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/README.md +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package ensures **every error response follows the same standardized format
|
|
|
27
27
|
- **Extensible**: Plugin system for custom formatters
|
|
28
28
|
- **Type Safe**: Full TypeScript support with zero `any` types
|
|
29
29
|
- **Production Ready**: Configurable logging and stack trace control
|
|
30
|
-
- **NestJS
|
|
30
|
+
- **NestJS v10 & v11 Compatible**: Works with both major versions
|
|
31
31
|
|
|
32
32
|
## Installation
|
|
33
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestjs-exception-handler",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"description": "A production-grade global exception handling system for NestJS applications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
"url": "https://github.com/nurulislamrimon/nestjs-exception-handler.git"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@nestjs/common": "^10.0.0",
|
|
44
|
-
"@nestjs/core": "^10.0.0",
|
|
43
|
+
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
44
|
+
"@nestjs/core": "^10.0.0 || ^11.0.0",
|
|
45
45
|
"@prisma/client": "^5.0.0 || ^7.0.0",
|
|
46
|
-
"reflect-metadata": "^0.1.13",
|
|
46
|
+
"reflect-metadata": "^0.1.13 || ^0.2.0",
|
|
47
47
|
"rxjs": "^7.8.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@nestjs/common": "^
|
|
51
|
-
"@nestjs/core": "^
|
|
52
|
-
"@nestjs/testing": "^
|
|
53
|
-
"@prisma/client": "^5.0.0",
|
|
50
|
+
"@nestjs/common": "^11.0.0",
|
|
51
|
+
"@nestjs/core": "^11.0.0",
|
|
52
|
+
"@nestjs/testing": "^11.0.0",
|
|
53
|
+
"@prisma/client": "^5.0.0 || ^7.0.0",
|
|
54
54
|
"@types/express": "^4.17.17",
|
|
55
55
|
"@types/jest": "^29.5.0",
|
|
56
56
|
"@types/node": "^20.0.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"eslint-plugin-prettier": "^5.5.5",
|
|
62
62
|
"jest": "^29.5.0",
|
|
63
63
|
"prettier": "^3.0.0",
|
|
64
|
-
"reflect-metadata": "^0.
|
|
64
|
+
"reflect-metadata": "^0.2.0",
|
|
65
65
|
"rxjs": "^7.8.0",
|
|
66
66
|
"ts-jest": "^29.1.0",
|
|
67
67
|
"ts-node": "^10.9.2",
|