Skip to content

chore: update versions #358

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 1, 2025
Merged
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
7 changes: 0 additions & 7 deletions .changeset/dry-singers-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/four-bars-bet.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/legal-lands-crash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mean-waves-retire.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/poor-cougars-begin.md

This file was deleted.

10 changes: 10 additions & 0 deletions workspaces/estree-ast-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @nodesecure/estree-ast-utils

## 4.0.0

### Major Changes

- [#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

### Minor Changes

- [#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

## 3.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/estree-ast-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodesecure/estree-ast-utils",
"version": "3.0.0",
"version": "4.0.0",
"description": "Utilities for AST (ESTree compliant)",
"type": "module",
"exports": "./dist/index.js",
Expand Down
19 changes: 19 additions & 0 deletions workspaces/js-x-ray/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# @nodesecure/js-x-ray

## 9.1.0

### Minor Changes

- [#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

Add new probe to detect potential environment variable exfiltration through `JSON.stringify(process.env)`.

- [#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

- [#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

### Patch Changes

- 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)]:
- @nodesecure/[email protected]
- @nodesecure/[email protected]
6 changes: 3 additions & 3 deletions workspaces/js-x-ray/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodesecure/js-x-ray",
"version": "9.0.0",
"version": "9.1.0",
"description": "JavaScript AST XRay analysis",
"type": "module",
"exports": {
Expand Down Expand Up @@ -48,9 +48,9 @@
},
"homepage": "https://github.com/NodeSecure/js-x-ray#readme",
"dependencies": {
"@nodesecure/estree-ast-utils": "^1.5.0",
"@nodesecure/estree-ast-utils": "^4.0.0",
"@nodesecure/sec-literal": "^1.2.0",
"@nodesecure/tracer": "^1.0.0",
"@nodesecure/tracer": "^2.0.0",
"digraph-js": "^2.2.3",
"estree-walker": "^3.0.1",
"frequency-set": "^1.0.2",
Expand Down
22 changes: 22 additions & 0 deletions workspaces/tracer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @nodesecure/tracer

## 2.0.0

### Major Changes

- [#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

### Patch Changes

- [#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

Here is an example:

```ts
import { readFile } from "fs/promises";

const foobar = readFile;
await foobar("test.txt");
```

- Updated dependencies [[`cf2b5eb`](https://github.com/NodeSecure/js-x-ray/commit/cf2b5eb3b247f60d369740630a019928e6c8d7c2), [`8b72326`](https://github.com/NodeSecure/js-x-ray/commit/8b723266a4153e9e05395f06e70e74cab2544eed)]:
- @nodesecure/[email protected]

## 1.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions workspaces/tracer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodesecure/tracer",
"version": "1.0.1",
"version": "2.0.0",
"description": "JS-X-Ray variables and assignments tracer",
"exports": "./dist/index.js",
"private": false,
Expand All @@ -26,7 +26,7 @@
},
"homepage": "https://github.com/NodeSecure/js-x-ray/tree/master/workspaces/tracer#readme",
"dependencies": {
"@nodesecure/estree-ast-utils": "^3.0.0",
"@nodesecure/estree-ast-utils": "^4.0.0",
"meriyah": "^6.1.3"
}
}