Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
This commit is contained in:
denobot 2022-09-22 13:15:04 -04:00 committed by GitHub
parent 0f1edd24f9
commit 3934b9fa75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,19 @@
### 0.157.0 / 2022.09.22
- feat(node/child_process): `spawnSync` (#2637)
- fix(collections): deepMerge ignoring 'replace' options for nested properties
(#2681)
- fix(node): use `Buffer.from()` and `Buffer.alloc()` instead of `new Buffer()`
(#2655)
- fix(node/fs): Enable `test-fs-read.js` (#2672)
- fix(node/fs): improve compatibility of fs.ReadStream (#2653)
- fix(node/fs): position option of fs.read and fs.readSync works the same as
Node (#2669)
- fix(node/net): fix socket events order (#2676)
- fix(node/process): does not throw with invalid env var names (#2671)
- fix(node/process): ignore SIGTERM on windows (#2686)
- node: add FreeBSD support (#2467)
### 0.156.0 / 2022.09.15
- fix(fs): `ensureSymlink` works when symlink already exists (#2642)

View File

@ -5,4 +5,4 @@
* the cli's API is stable. In the future when std becomes stable, likely we
* will match versions with cli as we have in the past.
*/
export const VERSION = "0.156.0";
export const VERSION = "0.157.0";