Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/new-cows-cheer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/petite-cloths-hunt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ripe-yaks-cheer.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/sunny-knives-create.md

This file was deleted.

6 changes: 6 additions & 0 deletions workspaces/mama/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @nodesecure/mama

## 2.1.1

### Patch Changes

- [#610](https://github.com/NodeSecure/scanner/pull/610) [`5b71ff9`](https://github.com/NodeSecure/scanner/commit/5b71ff9ef8663b03af0ff2950a3532ade428b66d) Thanks [@clemgbld](https://github.com/clemgbld)! - fix(mama): include optional deps in pkg json integrity hash

## 2.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/mama/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodesecure/mama",
"version": "2.1.0",
"version": "2.1.1",
"description": "Manifest Manager",
"type": "module",
"exports": "./dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions workspaces/rc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @nodesecure/rc

## 5.1.0

### Minor Changes

- [#603](https://github.com/NodeSecure/scanner/pull/603) [`5b237e2`](https://github.com/NodeSecure/scanner/commit/5b237e22ccee184855188ff1a94c9d5bc29920e4) Thanks [@clemgbld](https://github.com/clemgbld)! - feat(tarball): add warning when hostname resolve to a private ip

## 5.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/rc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodesecure/rc",
"version": "5.0.2",
"version": "5.1.0",
"description": "NodeSecure runtime configuration",
"type": "module",
"main": "./dist/index.js",
Expand Down
18 changes: 18 additions & 0 deletions workspaces/scanner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @nodesecure/scanner

## 10.0.0

### Major Changes

- [#606](https://github.com/NodeSecure/scanner/pull/606) [`2afafb7`](https://github.com/NodeSecure/scanner/commit/2afafb71835347208ce57ec0ed52041f2e7486bc) Thanks [@fraxken](https://github.com/fraxken)! - refactor: rename cwd() to workingDir()

### Minor Changes

- [#603](https://github.com/NodeSecure/scanner/pull/603) [`5b237e2`](https://github.com/NodeSecure/scanner/commit/5b237e22ccee184855188ff1a94c9d5bc29920e4) Thanks [@clemgbld](https://github.com/clemgbld)! - feat(tarball): add warning when hostname resolve to a private ip

### Patch Changes

- Updated dependencies [[`5b71ff9`](https://github.com/NodeSecure/scanner/commit/5b71ff9ef8663b03af0ff2950a3532ade428b66d), [`e013b49`](https://github.com/NodeSecure/scanner/commit/e013b4907c8f7f4046ecbf079ae529011b17c597), [`5b237e2`](https://github.com/NodeSecure/scanner/commit/5b237e22ccee184855188ff1a94c9d5bc29920e4)]:
- @nodesecure/mama@2.1.1
- @nodesecure/tarball@3.1.0
- @nodesecure/tree-walker@2.2.0
- @nodesecure/rc@5.1.0

## 9.0.0

### Major Changes
Expand Down
10 changes: 5 additions & 5 deletions workspaces/scanner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodesecure/scanner",
"version": "9.0.0",
"version": "10.0.0",
"description": "A package API to run a static analysis of your module's dependencies.",
"type": "module",
"exports": {
Expand Down Expand Up @@ -69,12 +69,12 @@
"@nodesecure/flags": "^3.0.3",
"@nodesecure/i18n": "^4.0.2",
"@nodesecure/js-x-ray": "11.2.0",
"@nodesecure/mama": "^2.1.0",
"@nodesecure/mama": "^2.1.1",
"@nodesecure/npm-registry-sdk": "^4.4.0",
"@nodesecure/npm-types": "^1.3.0",
"@nodesecure/rc": "^5.0.2",
"@nodesecure/tarball": "^3.0.0",
"@nodesecure/tree-walker": "^2.1.0",
"@nodesecure/rc": "^5.1.0",
"@nodesecure/tarball": "^3.1.0",
"@nodesecure/tree-walker": "^2.2.0",
"@nodesecure/utils": "^2.3.0",
"@nodesecure/vulnera": "^2.0.1",
"@openally/mutex": "^2.0.0",
Expand Down
13 changes: 13 additions & 0 deletions workspaces/tarball/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @nodesecure/tarball

## 3.1.0

### Minor Changes

- [#607](https://github.com/NodeSecure/scanner/pull/607) [`e013b49`](https://github.com/NodeSecure/scanner/commit/e013b4907c8f7f4046ecbf079ae529011b17c597) Thanks [@clemgbld](https://github.com/clemgbld)! - fix(tarball): fix npm tarball tests on windows by normalizing paths

- [#603](https://github.com/NodeSecure/scanner/pull/603) [`5b237e2`](https://github.com/NodeSecure/scanner/commit/5b237e22ccee184855188ff1a94c9d5bc29920e4) Thanks [@clemgbld](https://github.com/clemgbld)! - feat(tarball): add warning when hostname resolve to a private ip

### Patch Changes

- Updated dependencies [[`5b71ff9`](https://github.com/NodeSecure/scanner/commit/5b71ff9ef8663b03af0ff2950a3532ade428b66d)]:
- @nodesecure/mama@2.1.1

## 3.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions workspaces/tarball/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodesecure/tarball",
"version": "3.0.0",
"version": "3.1.0",
"description": "NodeSecure tarball scanner",
"type": "module",
"exports": {
Expand Down Expand Up @@ -48,7 +48,7 @@
"@nodesecure/conformance": "^1.2.1",
"@nodesecure/fs-walk": "^2.0.0",
"@nodesecure/js-x-ray": "11.2.0",
"@nodesecure/mama": "^2.1.0",
"@nodesecure/mama": "^2.1.1",
"@nodesecure/npm-types": "^1.2.0",
"@nodesecure/utils": "^2.3.0",
"ipaddr.js": "2.3.0",
Expand Down
6 changes: 6 additions & 0 deletions workspaces/tree-walker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @nodesecure/tree-walker

## 2.2.0

### Minor Changes

- [#603](https://github.com/NodeSecure/scanner/pull/603) [`5b237e2`](https://github.com/NodeSecure/scanner/commit/5b237e22ccee184855188ff1a94c9d5bc29920e4) Thanks [@clemgbld](https://github.com/clemgbld)! - feat(tarball): add warning when hostname resolve to a private ip

## 2.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/tree-walker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodesecure/tree-walker",
"version": "2.1.0",
"version": "2.2.0",
"description": "NodeSecure tree walker",
"type": "module",
"exports": "./dist/index.js",
Expand Down