From 33e2a3949f7f0ed8805b387d12e7e42efc17c74a Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 18 Oct 2021 11:22:31 -0400 Subject: [PATCH] 0.112.0 --- Releases.md | 23 +++++++++++++++++++++++ version.ts | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index 54f537a50..f04335cb0 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,26 @@ +### 0.112.0 / 2021.10.18 + +- feat(collections): add joinToString (#1223) +- feat(node): CJS-ESM integration (#1412) +- feat(node): add helpers for determining CJS/ESM loader (#1407) +- feat(node): barebones express compatibility (#1398) +- feat(node): define process.mainModule (#1400) +- feat(node/events): implement setMaxListeners (#1414) +- feat(node/http): request & response streams (#1403) +- feat(node/os): add devNull constant (#1397) +- feat(node/url): add `url.format(URL[, options])` (#1420) +- fix(datetime): fix dayOfYear for the southern hemisphere (#1384) +- fix(fs/expand_glob): don't parse root as glob (#1417) +- fix(node): 'Illegal invocation' in 'perf_hooks' module (#1410) +- fix(node): add 'module' to native modules polyfill (#1408) +- fix(node): declare 'global' types inline (#1409) +- fix(node): export util.format() (#1401) +- fix(node): require doesn't throw error (#1399) +- fix(node): use hardcoded versions (#1406) +- fix(std/io): fix readline when catch BufferFullError (#1377) +- fix(testing): improve assertObjectMatch (#1419) +- chore(node): upgrade Node.js version from 15.5.1 to 16.11.1 (#1405) + ### 0.111.0 / 2021.10.12 - BREAKING(fs): deprecate exists and existsSync (#1364) diff --git a/version.ts b/version.ts index 2ef5520e7..813e2565f 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.111.0"; +export const VERSION = "0.112.0";