Support NestJs v11
Is your feature request related to a problem? Please describe.
NestJs v11 was released a couple of days ago. We'd love to upgrade but currently automapper only supports nestjs ≥7, ≤10.
Describe the solution you'd like
Add support for NestJs v11
Describe alternatives you've considered
No response
Additional context
No response
@nartc any chance to tackle this and review the linked PR to anytime soon? 🙏🏼
Maybe you could consider to add maintainers to the project for such basic patches?
@nartc appreciate your support on this.
@nartc Kindly review!
@nartc can you take a look into this?
In the meantime we explicitly override the dependency in the package.json like this:
{
"dependencies": {
// your dependencies ...
},
"overrides": {
"@automapper/classes": {
"reflect-metadata": "^0.2.2"
},
"@automapper/nestjs": {
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0"
}
}
}
Maybe that helps other folks, too.
I have added support for nest 11 on my fork: https://github.com/brdar/mapper-js Also nodenext module resolution is now supported.