From 12932f4280d66a5a49d07d43838ded51dec63a02 Mon Sep 17 00:00:00 2001 From: JordanMartinez Date: Wed, 26 Jul 2023 14:54:53 -0700 Subject: [PATCH] Update dependency: node-streams to v9.0.0 (#61) * Update node-streams * Update release to v11.0.0 since wasn't released before --- CHANGELOG.md | 30 ++++++++++++------------------ bower.json | 4 ++-- 2 files changed, 14 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aaf070..9ce3b06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,23 +12,7 @@ Bugfixes: Other improvements: -## [v12.0.0](https://github.com/purescript-node/purescript-node-child-process/releases/tag/v12.0.0) - 2023-07-26 - -Breaking changes: -- Removed `safeStdio` (#60 by @JordanMartinez) - - Turns out this isn't safe for `*Sync` functions. AFAIK, this isn't documented - in Node docs. - -Bugfixes: -- Fixed `exitH`'s String value for listener (#60 by @JordanMartinez) -- Added missing FFI for `execSync'` (#60 by @JordanMartinez) -- Fixed `fromKillSignal`'s FFI's arg order (#60 by @JordanMartinez) - -Other improvements: -- Update tests to actually throw if invalid state occurs (#60 by @JordanMartinez) - -## [v11.0.0](https://github.com/purescript-node/purescript-node-child-process/releases/tag/v11.0.0) - 2023-07-25 +## [v11.0.0](https://github.com/purescript-node/purescript-node-child-process/releases/tag/v11.0.0) - 2023-07-26 Breaking changes: - Update the signal arg from `String` to `KillSignal` (#51, #52 by @JordanMartinez) @@ -37,17 +21,27 @@ Breaking changes: - `exitH`/`closeH`'s signal arg - `spawnSync`'s `SpawnResult`'s `signal` field - `kill'`'s signal arg +- Removed `safeStdio` (#60 by @JordanMartinez) + + Turns out this isn't safe for `*Sync` functions. AFAIK, this isn't documented + in Node docs. New features: -- Added `fromKillSignal`, `fromKillSignal'` (#51, #59 by @JordanMartinez) +- Added `fromKillSignal`, `fromKillSignal'` (#51, #59, #60 by @JordanMartinez) - Added `pidExists` (#53 by @JordanMartinez) - Export `toUnsafeChildProcess` (#55 by @JordanMartinez) - Added `stdio` (#55 by @JordanMartinez) - Added `Eq` and `Show` instance to `Shell` & `KillSignal` (#58, #59 by @JordanMartinez) +Bugfixes: +- Fixed `exitH`'s String value for listener (#60 by @JordanMartinez) +- Added missing FFI for `execSync'` (#60 by @JordanMartinez) +- Update `node-streams` to `v9.0.0` to fix FFI issues (#61 by @JordanMartinez) + Other improvements: - Fix regression: add `ref`/`unref` APIs that were dropped in `v10.0.0` (#50 by @JordanMartinez) - Wrap `Unsafe` API via `ChildProcess` in safer way (#54 by @JordanMartinez) +- Update tests to actually throw if invalid state occurs (#60 by @JordanMartinez) ## [v10.0.0](https://github.com/purescript-node/purescript-node-child-process/releases/tag/v10.0.0) - 2023-07-20 diff --git a/bower.json b/bower.json index 2239f0f..1dab847 100644 --- a/bower.json +++ b/bower.json @@ -21,8 +21,8 @@ "purescript-foreign": "^7.0.0", "purescript-foreign-object": "^4.0.0", "purescript-functions": "^6.0.0", - "purescript-node-fs": "^9.0.0", - "purescript-node-streams": "^8.0.0", + "purescript-node-fs": "^9.1.0", + "purescript-node-streams": "^9.0.0", "purescript-node-os": "v5.1.0", "purescript-nullable": "^6.0.0", "purescript-posix-types": "^6.0.0",