From 9c8c2ebd8b8cff9770fef9a8b897e670a588de30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 22:26:15 +0000 Subject: [PATCH] chore: update versions --- .changeset/great-sloths-tickle.md | 5 ----- .changeset/mighty-numbers-matter.md | 5 ----- .changeset/orange-points-reply.md | 7 ------- .changeset/wicked-aliens-vanish.md | 5 ----- workspaces/scanner/CHANGELOG.md | 18 ++++++++++++++++++ workspaces/scanner/package.json | 6 +++--- workspaces/tarball/CHANGELOG.md | 6 ++++++ workspaces/tarball/package.json | 2 +- workspaces/tree-walker/CHANGELOG.md | 6 ++++++ workspaces/tree-walker/package.json | 2 +- 10 files changed, 35 insertions(+), 27 deletions(-) delete mode 100644 .changeset/great-sloths-tickle.md delete mode 100644 .changeset/mighty-numbers-matter.md delete mode 100644 .changeset/orange-points-reply.md delete mode 100644 .changeset/wicked-aliens-vanish.md diff --git a/.changeset/great-sloths-tickle.md b/.changeset/great-sloths-tickle.md deleted file mode 100644 index 3f5cd0f2..00000000 --- a/.changeset/great-sloths-tickle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@nodesecure/scanner": minor ---- - -Remove getDirNameFromUrl utilities in favor of import.meta.dirname diff --git a/.changeset/mighty-numbers-matter.md b/.changeset/mighty-numbers-matter.md deleted file mode 100644 index 6dcec416..00000000 --- a/.changeset/mighty-numbers-matter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@nodesecure/scanner": minor ---- - -Refactor workspace README and re-implement proper scanner docs diff --git a/.changeset/orange-points-reply.md b/.changeset/orange-points-reply.md deleted file mode 100644 index c6b11836..00000000 --- a/.changeset/orange-points-reply.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@nodesecure/tree-walker": major -"@nodesecure/scanner": patch -"@nodesecure/tarball": patch ---- - -Enhance error resilience and add missing pacote (npm) userAgent for all HTTP requests diff --git a/.changeset/wicked-aliens-vanish.md b/.changeset/wicked-aliens-vanish.md deleted file mode 100644 index 7bb48b08..00000000 --- a/.changeset/wicked-aliens-vanish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@nodesecure/scanner": minor ---- - -Implement cache lookup for from and workingDir APIs diff --git a/workspaces/scanner/CHANGELOG.md b/workspaces/scanner/CHANGELOG.md index 1e039376..208884bb 100644 --- a/workspaces/scanner/CHANGELOG.md +++ b/workspaces/scanner/CHANGELOG.md @@ -1,5 +1,23 @@ # @nodesecure/scanner +## 10.9.0 + +### Minor Changes + +- [#695](https://github.com/NodeSecure/scanner/pull/695) [`623b682`](https://github.com/NodeSecure/scanner/commit/623b682b24bfe73fdcb2261792e3c6344434cf55) Thanks [@fraxken](https://github.com/fraxken)! - Remove getDirNameFromUrl utilities in favor of import.meta.dirname + +- [#697](https://github.com/NodeSecure/scanner/pull/697) [`325c1a0`](https://github.com/NodeSecure/scanner/commit/325c1a0bb84d58a47b4aab71565f62a2e210d0c0) Thanks [@fraxken](https://github.com/fraxken)! - Refactor workspace README and re-implement proper scanner docs + +- [#693](https://github.com/NodeSecure/scanner/pull/693) [`694ff61`](https://github.com/NodeSecure/scanner/commit/694ff61172e73bb6c4dbede95d4487d24f7dfe5a) Thanks [@fraxken](https://github.com/fraxken)! - Implement cache lookup for from and workingDir APIs + +### Patch Changes + +- [#691](https://github.com/NodeSecure/scanner/pull/691) [`e16c644`](https://github.com/NodeSecure/scanner/commit/e16c6446015df8743432685047c465890370a10f) Thanks [@fraxken](https://github.com/fraxken)! - Enhance error resilience and add missing pacote (npm) userAgent for all HTTP requests + +- Updated dependencies [[`e16c644`](https://github.com/NodeSecure/scanner/commit/e16c6446015df8743432685047c465890370a10f)]: + - @nodesecure/tree-walker@3.0.0 + - @nodesecure/tarball@4.0.1 + ## 10.8.0 ### Minor Changes diff --git a/workspaces/scanner/package.json b/workspaces/scanner/package.json index 744fa0d6..2f038708 100644 --- a/workspaces/scanner/package.json +++ b/workspaces/scanner/package.json @@ -1,6 +1,6 @@ { "name": "@nodesecure/scanner", - "version": "10.8.0", + "version": "10.9.0", "description": "A package API to run a static analysis of your module's dependencies.", "type": "module", "exports": { @@ -73,8 +73,8 @@ "@nodesecure/npm-registry-sdk": "4.5.2", "@nodesecure/npm-types": "^1.3.0", "@nodesecure/rc": "^5.6.0", - "@nodesecure/tarball": "^4.0.0", - "@nodesecure/tree-walker": "^2.8.0", + "@nodesecure/tarball": "^4.0.1", + "@nodesecure/tree-walker": "^3.0.0", "@nodesecure/utils": "^2.3.0", "@nodesecure/vulnera": "3.1.0", "@openally/mutex": "^2.0.0", diff --git a/workspaces/tarball/CHANGELOG.md b/workspaces/tarball/CHANGELOG.md index ae52a338..803b0311 100644 --- a/workspaces/tarball/CHANGELOG.md +++ b/workspaces/tarball/CHANGELOG.md @@ -1,5 +1,11 @@ # @nodesecure/tarball +## 4.0.1 + +### Patch Changes + +- [#691](https://github.com/NodeSecure/scanner/pull/691) [`e16c644`](https://github.com/NodeSecure/scanner/commit/e16c6446015df8743432685047c465890370a10f) Thanks [@fraxken](https://github.com/fraxken)! - Enhance error resilience and add missing pacote (npm) userAgent for all HTTP requests + ## 4.0.0 ### Major Changes diff --git a/workspaces/tarball/package.json b/workspaces/tarball/package.json index 22a277ff..d82c8518 100644 --- a/workspaces/tarball/package.json +++ b/workspaces/tarball/package.json @@ -1,6 +1,6 @@ { "name": "@nodesecure/tarball", - "version": "4.0.0", + "version": "4.0.1", "description": "NodeSecure tarball scanner", "type": "module", "exports": { diff --git a/workspaces/tree-walker/CHANGELOG.md b/workspaces/tree-walker/CHANGELOG.md index ab25bbaf..eb92b1d9 100644 --- a/workspaces/tree-walker/CHANGELOG.md +++ b/workspaces/tree-walker/CHANGELOG.md @@ -1,5 +1,11 @@ # @nodesecure/tree-walker +## 3.0.0 + +### Major Changes + +- [#691](https://github.com/NodeSecure/scanner/pull/691) [`e16c644`](https://github.com/NodeSecure/scanner/commit/e16c6446015df8743432685047c465890370a10f) Thanks [@fraxken](https://github.com/fraxken)! - Enhance error resilience and add missing pacote (npm) userAgent for all HTTP requests + ## 2.8.0 ### Minor Changes diff --git a/workspaces/tree-walker/package.json b/workspaces/tree-walker/package.json index ba19da4c..dfc70a6b 100644 --- a/workspaces/tree-walker/package.json +++ b/workspaces/tree-walker/package.json @@ -1,6 +1,6 @@ { "name": "@nodesecure/tree-walker", - "version": "2.8.0", + "version": "3.0.0", "description": "NodeSecure tree walker", "type": "module", "exports": "./dist/index.js",