From 2c14c055385b16d9b5f15a66e868813775faf095 Mon Sep 17 00:00:00 2001 From: Superchupu <53496941+SuperchupuDev@users.noreply.github.com> Date: Mon, 30 Sep 2024 14:29:09 +0200 Subject: [PATCH] release 0.2.7 --- CHANGELOG.md | 22 ++++++++++++++++++++++ package.json | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cda37ee..4c47c07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +### [0.2.7](https://github.com/SuperchupuDev/tinyglobby/compare/0.2.6...0.2.7) + +#### Added + +- Support for providing patterns as a string +- `followSymbolicLinks` option +- `escapePath` utility function by @benmccann +- `isDynamicPattern` utility function +- `convertPathToPattern` utility function + +#### Fixed + +- `.` as a pattern now works as expected +- Globbing no longer returns an empty string when matching the root directory +- Handling of escaped symbols in patterns + +#### Changed + +- Relicensed the project to the MIT license +- Disabled source maps on release builds for smaller bundle size +- Improved the common root inference algorithm + ### [0.2.6](https://github.com/SuperchupuDev/tinyglobby/compare/0.2.5...0.2.6) #### Added diff --git a/package.json b/package.json index 6294009..f93e06b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tinyglobby", - "version": "0.2.6", + "version": "0.2.7", "description": "A fast and minimal alternative to globby and fast-glob", "scripts": { "build": "tsup",