Skip to content

Commit 8cecf23

Browse files
chore: update versions (#358)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent fd20cbf commit 8cecf23

File tree

11 files changed

+57
-43
lines changed

11 files changed

+57
-43
lines changed

.changeset/dry-singers-invite.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/four-bars-bet.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/legal-lands-crash.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/mean-waves-retire.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/poor-cougars-begin.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

workspaces/estree-ast-utils/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @nodesecure/estree-ast-utils
22

3+
## 4.0.0
4+
5+
### Major Changes
6+
7+
- [#366](https://github.com/NodeSecure/js-x-ray/pull/366) [`cf2b5eb`](https://github.com/NodeSecure/js-x-ray/commit/cf2b5eb3b247f60d369740630a019928e6c8d7c2) Thanks [@fraxken](https://github.com/fraxken)! - Refactor relation and dependency to Tracer for estree-ast-utils workspace
8+
9+
### Minor Changes
10+
11+
- [#365](https://github.com/NodeSecure/js-x-ray/pull/365) [`8b72326`](https://github.com/NodeSecure/js-x-ray/commit/8b723266a4153e9e05395f06e70e74cab2544eed) Thanks [@fraxken](https://github.com/fraxken)! - Enhance input and output types using Meriyah ESTree defs
12+
313
## 3.0.0
414

515
### Major Changes

workspaces/estree-ast-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodesecure/estree-ast-utils",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"description": "Utilities for AST (ESTree compliant)",
55
"type": "module",
66
"exports": "./dist/index.js",

workspaces/js-x-ray/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# @nodesecure/js-x-ray
2+
3+
## 9.1.0
4+
5+
### Minor Changes
6+
7+
- [#363](https://github.com/NodeSecure/js-x-ray/pull/363) [`e37384c`](https://github.com/NodeSecure/js-x-ray/commit/e37384c216a191a14dde19954c281a39512d5485) Thanks [@intincrab](https://github.com/intincrab)! - feat(probes): add serialize-environment warning detection
8+
9+
Add new probe to detect potential environment variable exfiltration through `JSON.stringify(process.env)`.
10+
11+
- [#362](https://github.com/NodeSecure/js-x-ray/pull/362) [`5f78d4a`](https://github.com/NodeSecure/js-x-ray/commit/5f78d4a7bb19390b6d31892994339c193bf048cf) Thanks [@clemgbld](https://github.com/clemgbld)! - feat(probes): add initialize
12+
13+
- [#366](https://github.com/NodeSecure/js-x-ray/pull/366) [`cf2b5eb`](https://github.com/NodeSecure/js-x-ray/commit/cf2b5eb3b247f60d369740630a019928e6c8d7c2) Thanks [@fraxken](https://github.com/fraxken)! - Refactor relation and dependency to Tracer for estree-ast-utils workspace
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [[`cf2b5eb`](https://github.com/NodeSecure/js-x-ray/commit/cf2b5eb3b247f60d369740630a019928e6c8d7c2), [`8b72326`](https://github.com/NodeSecure/js-x-ray/commit/8b723266a4153e9e05395f06e70e74cab2544eed), [`c3016e0`](https://github.com/NodeSecure/js-x-ray/commit/c3016e0b5266178ad88b65c6fcca4c0a2ddb71b1)]:
18+
- @nodesecure/estree-ast-utils@4.0.0
19+
- @nodesecure/tracer@2.0.0

workspaces/js-x-ray/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodesecure/js-x-ray",
3-
"version": "9.0.0",
3+
"version": "9.1.0",
44
"description": "JavaScript AST XRay analysis",
55
"type": "module",
66
"exports": {
@@ -48,9 +48,9 @@
4848
},
4949
"homepage": "https://github.com/NodeSecure/js-x-ray#readme",
5050
"dependencies": {
51-
"@nodesecure/estree-ast-utils": "^1.5.0",
51+
"@nodesecure/estree-ast-utils": "^4.0.0",
5252
"@nodesecure/sec-literal": "^1.2.0",
53-
"@nodesecure/tracer": "^1.0.0",
53+
"@nodesecure/tracer": "^2.0.0",
5454
"digraph-js": "^2.2.3",
5555
"estree-walker": "^3.0.1",
5656
"frequency-set": "^1.0.2",

workspaces/tracer/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# @nodesecure/tracer
22

3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- [#366](https://github.com/NodeSecure/js-x-ray/pull/366) [`cf2b5eb`](https://github.com/NodeSecure/js-x-ray/commit/cf2b5eb3b247f60d369740630a019928e6c8d7c2) Thanks [@fraxken](https://github.com/fraxken)! - Refactor relation and dependency to Tracer for estree-ast-utils workspace
8+
9+
### Patch Changes
10+
11+
- [#356](https://github.com/NodeSecure/js-x-ray/pull/356) [`c3016e0`](https://github.com/NodeSecure/js-x-ray/commit/c3016e0b5266178ad88b65c6fcca4c0a2ddb71b1) Thanks [@fraxken](https://github.com/fraxken)! - Trace Node.js core imports that use /promises
12+
13+
Here is an example:
14+
15+
```ts
16+
import { readFile } from "fs/promises";
17+
18+
const foobar = readFile;
19+
await foobar("test.txt");
20+
```
21+
22+
- Updated dependencies [[`cf2b5eb`](https://github.com/NodeSecure/js-x-ray/commit/cf2b5eb3b247f60d369740630a019928e6c8d7c2), [`8b72326`](https://github.com/NodeSecure/js-x-ray/commit/8b723266a4153e9e05395f06e70e74cab2544eed)]:
23+
- @nodesecure/estree-ast-utils@4.0.0
24+
325
## 1.0.1
426

527
### Patch Changes

0 commit comments

Comments
 (0)