diff --git a/.changeset/smart-pens-march.md b/.changeset/smart-pens-march.md deleted file mode 100644 index e814d89..0000000 --- a/.changeset/smart-pens-march.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@naverpay/nurl": minor ---- - -feat: add `NURL.match()` and `NURL.mask()` static methods - -- `NURL.match(url, pattern)`: Match URL path against a pattern with dynamic segments and extract parameters -- `NURL.mask(url, options)`: Mask sensitive path parameters in a URL for logging purposes diff --git a/CHANGELOG.md b/CHANGELOG.md index fa9dfa3..9d02cca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # @naverpay/nurl +## 1.1.0 + +### Minor Changes + +- 92343a8: feat: add `NURL.match()` and `NURL.mask()` static methods + + - `NURL.match(url, pattern)`: Match URL path against a pattern with dynamic segments and extract parameters + - `NURL.mask(url, options)`: Mask sensitive path parameters in a URL for logging purposes + ## 1.0.3 ### Patch Changes diff --git a/package.json b/package.json index 9121931..930a903 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@naverpay/nurl", - "version": "1.0.3", + "version": "1.1.0", "description": "URL build library", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs",