Skip to content

Commit e015839

Browse files
chore: update versions
1 parent 3c2d35a commit e015839

File tree

7 files changed

+34
-28
lines changed

7 files changed

+34
-28
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/poor-cougars-begin.md

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

workspaces/js-x-ray/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
### Patch Changes
14+
15+
- Updated dependencies [[`c3016e0`](https://github.com/NodeSecure/js-x-ray/commit/c3016e0b5266178ad88b65c6fcca4c0a2ddb71b1)]:
16+
- @nodesecure/tracer@1.0.2

workspaces/js-x-ray/package.json

Lines changed: 2 additions & 2 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": {
@@ -50,7 +50,7 @@
5050
"dependencies": {
5151
"@nodesecure/estree-ast-utils": "^1.5.0",
5252
"@nodesecure/sec-literal": "^1.2.0",
53-
"@nodesecure/tracer": "^1.0.0",
53+
"@nodesecure/tracer": "^1.0.2",
5454
"digraph-js": "^2.2.3",
5555
"estree-walker": "^3.0.1",
5656
"frequency-set": "^1.0.2",

workspaces/tracer/CHANGELOG.md

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

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- [#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
8+
9+
Here is an example:
10+
11+
```ts
12+
import { readFile } from "fs/promises";
13+
14+
const foobar = readFile;
15+
await foobar("test.txt");
16+
```
17+
318
## 1.0.1
419

520
### Patch Changes

workspaces/tracer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodesecure/tracer",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "JS-X-Ray variables and assignments tracer",
55
"exports": "./dist/index.js",
66
"private": false,

0 commit comments

Comments
 (0)