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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"stoppable": "^1.1.0",
"stream-chain": "^2.1.0",
"stream-csv-as-json": "^1.0.1",
"stream-json": "^1.2.1",
"stream-json": "^3.5.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Blocking: stream-json@3.x is ESM-only, requires Node ≥22, and removed the CommonJS subpath stream-json/streamers/StreamValues (replaced by stream-json/streamers/stream-values.js). The CLI still require()s the old path from lib/cmds/fhir_cmds/ingest.js and lib/cmds/ontologies_cmds/import.js, causing MODULE_NOT_FOUND at load time (yarn test fails for fhir-test and ontologies.test). Either stay on 1.x or migrate those commands (and likely stream-chain to v4+) to the new ESM API before merging this bump.

This review was generated by review-bot.

"uuid": "^3.3.2",
"yargs": "^12.0.5"
},
Expand Down
14 changes: 13 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7368,6 +7368,11 @@ stream-chain@^2.1.0, stream-chain@^2.2.1:
resolved "https://registry.yarnpkg.com/stream-chain/-/stream-chain-2.2.1.tgz#e6efdee89eef81481d888181ca175f3abe03f396"
integrity sha512-LW24AKjJHBrihU8xGLPs/o7OSCNPzBpJ/5JtjMyt8/1WLzcSIRKRRvugeBQjTCFJMn0nFzvN0rd6oCSWguKmxw==

stream-chain@^4.2.5:
version "4.2.5"
resolved "https://registry.yarnpkg.com/stream-chain/-/stream-chain-4.2.5.tgz#9061d29573ab79c49258b2cbe2f72bed7629c79f"
integrity sha512-Wtyq3bNE3ggLR0v2vftqvuhltym3WbZAkZpfIrkr5F/6vpeUmWmwTgXa16zD87gpahwJ/Qulq3zVfUlgIc0J2A==

stream-combiner2@~1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe"
Expand All @@ -7383,13 +7388,20 @@ stream-csv-as-json@^1.0.1:
dependencies:
stream-json "^1.3.1"

stream-json@^1.2.1, stream-json@^1.3.1:
stream-json@^1.3.1:
version "1.5.0"
resolved "https://registry.yarnpkg.com/stream-json/-/stream-json-1.5.0.tgz#917d63c06514f7383f95cf0fe6a2e7e4a9fa81b3"
integrity sha512-a2hm5eyDeoXA3oDqNbO/ylDzNEx4C1HyQ47/Ar0s3q3UZJr0L8ZsKBNSbkUyNfPsyG+Efs47nUYkIJqLme0yJg==
dependencies:
stream-chain "^2.2.1"

stream-json@^3.5.0:
version "3.5.0"
resolved "https://registry.yarnpkg.com/stream-json/-/stream-json-3.5.0.tgz#5cedd64fca7e8dcd226a5e22e5f11722a5376e91"
integrity sha512-dobB7zipGW8o11PvdRljQSWuyMxifADLvoHeA4elwNWOTbZo6+BlNa+P6aCq7Y9jRiWTy2Ucu2xSv0Y2/T+/kQ==
dependencies:
stream-chain "^4.2.5"

stream-meter@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/stream-meter/-/stream-meter-1.0.4.tgz#52af95aa5ea760a2491716704dbff90f73afdd1d"
Expand Down
Loading