-
-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump glob to v10 #658
bump glob to v10 #658
Conversation
sort paths since they come back in reverse order now
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #658 +/- ##
==========================================
- Coverage 99.45% 99.45% -0.01%
==========================================
Files 12 12
Lines 1467 1465 -2
Branches 277 277
==========================================
- Hits 1459 1457 -2
Misses 8 8 ☔ View full report in Codecov by Sentry. |
@mmkal Glob v10 does not support Node 12 as per the following; Are you sure the tests on Node 12 passed? |
It looks like there's a bug that's making the Node 12 and Node 14 I will look into that, and maybe just switch to fast-glob which supports nodejs 8+. |
Why would you care about this? Ship a major version if the current one is supposed to work with this. Supporting node 16 is questionable (but understandable), supporting anything older is (IMO) just weird and a waste of (your/maintainer's) time. Node 12 is not receiving security updates for 2 years now, node 14 for a year, and node 16 for more than 6 months. |
If we are shipping this in a major version then it's not an issue and we can use glob v10 just fine. But as far as I know this was supposed to be released as a minor or patch version, which would break older projects and not be in the spirit of semantic versioning. |
I prefer not to release major versions unless there's a good reason. Especially for a library like this which is sometimes a couple layers deep in dependency trees. Using fast-glob is an easy fix, and not worth a major version IMO. The tests for lower node versions were just broken. Having said that, eventually it will be too much of a headache to support old node versions. At that point I'm fine with a major bump. |
Released in v3.8.0. |
closes #638
sort paths since they come back in reverse order now