-
-
Notifications
You must be signed in to change notification settings - Fork 20
Memory leak detected #5
Comments
Is this still an issue? I see that a fix was merged but the issue is still open. |
Can this issue be closed if it's been merged? I'd love to get the warning out of our security scanner |
Upgrade the `glob` dependency to its latest version which does not rely anymore on the transitive dependency `inflight`. This is interesting because `inflight` contains a [memory-leak issue](isaacs/inflight-DEPRECATED-DO-NOT-USE#5) which is raised by Security scanners like Checkmarx. ALso, glob@9 introduced Typescript support, so there is no need for the `@types/glob` package anymore. As a consequence, the minimum Node version required is 16 because support for older versions was dropped by glob@9.
Upgrade the `glob` dependency to its latest version which does not rely anymore on the transitive dependency `inflight`. This is interesting because `inflight` contains a [memory-leak issue](isaacs/inflight-DEPRECATED-DO-NOT-USE#5) which is raised by Security scanners like Checkmarx. ALso, glob@9 introduced Typescript support, so there is no need for the `@types/glob` package anymore. As a consequence, the minimum Node version required is 16 because support for older versions was dropped by glob@9.
Glob package has a breaking change from version 8.x (latest with inflight) to 9.x (first without it). They changed its API to use promises instead of callbacks. I believe the best approach is to patch 8.x version to stop using inflight which will make a lot easier to override it in the package.json. |
Any status on a potential fix for this vulnerable package? We dont understand why there hasn't been a fix deployed for this risk yet. Please update us! |
@bholmesACR last commit to this repo was 2 years ago. It seems to have been abandoned. |
I have no intention of working on this. I don't use it in or recommend it, and life is too short. I just deprecated it, and I'll archive this repo shortly. The language provides a lot of options nowadays for managing promises, which are a much better approach than callbacks in this sort of situation. If you want something that will coalesce async actions for the same key, then the |
Preliminary note. I didn't installed inflight directly, it's just a package that glob uses.
I'm developing a CLI apps that scans a set of files in the user's disk. Sometimes, it stops working throwing the following log:
So, I've inspected the Node's process' heap usage (node --inspect myLibrary.js) and got the following result, in which the inflight module is the most expensive package in terms of retained size.
The text was updated successfully, but these errors were encountered: