Open skatterwe opened 2 months ago
The latest @nestjs/core has the same type of hard-coded version dependency, and it points straight to the vulnerable version: "path-to-regexp": "3.2.0"
. Turtles all the way down.
Need to get a fix into @nestjs/core , then get that released, then get that release version into @openapitools/openapi-generator-cli" using the fix you described above, then get the fixed @openapitools/openapi-generator-cli" into whatever your own package is. To track the fix see https://github.com/nestjs/nest/issues/13955
https://github.com/OpenAPITools/openapi-generator-cli/pull/801 filed by @tomarad
please review when you guys have time
I also kindly ask for the review :-)
The latest @nestjs/core has the same type of hard-coded version dependency, and it points straight to the vulnerable version:
"path-to-regexp": "3.2.0"
. Turtles all the way down.Need to get a fix into @nestjs/core , then get that released, then get that release version into @openapitools/openapi-generator-cli" using the fix you described above, then get the fixed @openapitools/openapi-generator-cli" into whatever your own package is. To track the fix see nestjs/nest#13955
@lucasgonze I see. Yeah i was not checking it completely down the tree, this lib was one of the entry points so i was just wondering if that pinned versions where done on purpose or if its an option to open up to ease those vulnerability updates up a bit.
In our projects we for example have one dependency fixed because this beautiful dependency likes to introduce breaking changes in bugfix versions :D.
just merged the fix
please give it a try with the latest release (which will be published shortly)
I was just wondering if it might be an option to at least allow any bugfix version in the dependencies you have specified.
Currently the dependencies are completely fixed. And in a case like now, that a peer dependency has a vulnerability (@nestjs/core) that is, you would need a new release to include the available bugfix.
I was wondering if it might be an option to open up a bit and allow any bugfix versions.