3.2.8
Full Changelog: 3.2.7...3.2.8
🐛 Bug fixes
Fix directory matching with trailing slashes (#290)
Thanks @Trott for investigating the problem and the detailed description.
Previously the src/*/
pattern did not work as expected (like src/*
).
Double-slash in the middle of the pattern is not collapsed (#330)
Starting from this release, patterns like src//*
will work like similar patterns without duplicate slashes. This was done for continuity with other solutions (glob
, ls src//*
, python, golang, …).
Adjust inefficient regular expressions (#336, #342, #344)
Thanks @Trott for fixing bugs and @XhmikosR for adding the CodeQL action to CI pipeline.
📖 Documentation
- Some documentation improvements (#327, thanks @MarcelloTheArcane).
⚙️ Infrastructure
- The CodeQL action has been added to CI pipeline (#338, thanks @XhmikosR).