From 4d16c30f3807741d9e250f6f7ca3e550fa04c673 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Thu, 24 Nov 2022 14:42:35 -0500 Subject: [PATCH] 0.166.0 (#2938) Co-authored-by: bartlomieju --- Releases.md | 22 ++++++++++++++++++++++ version.ts | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index 70614d03b..3e5ad1394 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,25 @@ +### 0.166.0 / 2022.11.24 + +- BREAKING(fmt/bytes): rename prettyBytes to format (#2896) +- BREAKING(fmt/duration): rename prettyDuration to format (#2871) +- feat(http/cookie): allow number type for expires param (#2932) +- feat(node): export `process.argv` (#2924) +- feat(node/crypto): add hmac implementation (#2664) +- feat: Add process._kill and shim process.kill(pid, 0) correctly (#2922) +- fix(fmt/bytes): default local decimal and group symbols (#2904) +- fix(http/cookie): wording for cookie value validation error (#2931) +- fix(node/console): update export members of console (#2927) +- fix(node/fs): enable type narrowing with instanceof for ReadStream and + WriteStream (#2915) +- fix(node/http): allow setting statusMessage (#2911) +- fix(node/http): disable chunked request if Content-Length header is specified + (#2755) +- fix(node/http): request with headers (#2898) +- fix(node/string_decoder): proper buffer type casting and fix default logic + (#2897) +- fix(node/timers): implement timeout.refresh (#2919) +- fix: wait for denoflate wasm to load (#2923) + ### 0.165.0 / 2022.11.16 - fix(node): improve crypto.getHashes compatibility (#2890) diff --git a/version.ts b/version.ts index 6b12f5b1e..61b38527e 100644 --- a/version.ts +++ b/version.ts @@ -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.165.0"; +export const VERSION = "0.166.0";