Co-authored-by: cjihrig <cjihrig@users.noreply.github.com>
This commit is contained in:
denobot 2022-09-15 13:00:07 -04:00 committed by GitHub
parent a08e42db01
commit 3fbbd6bb2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,15 @@
### 0.156.0 / 2022.09.15
- fix(fs): `ensureSymlink` works when symlink already exists (#2642)
- fix(http/file_server): serveFile returns 404 when the path is directory
(#2659)
- fix(node): set proper default streams export (#2657)
- fix(node/fs): make ReadStream and WriteStream callable with or without new
(#2634)
- fix(node/http): `_createUrlStrFromOptions` optimizations (#2635)
- fix(node/process): make execPath writable (#2647)
- fix(node/process): reduce required env permission range (#2654)
### 0.155.0 / 2022.09.09
- BREAKING(encoding/csv): make column argument optional (#2168)

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.155.0";
export const VERSION = "0.156.0";