From 1e114f9162b0f4346c5dbac58e18010a3b30b781 Mon Sep 17 00:00:00 2001 From: Denis Pushkarev Date: Mon, 11 Jul 2022 22:52:14 +0700 Subject: [PATCH] update the changelog --- CHANGELOG.md | 1 + tests/compat-tools/targets-parser.mjs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6954ea0372d5..f074fc1271c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## Changelog ##### Unreleased - Polyfill `Promise` with `unhandledrejection` event support (browser style) in Deno < [1.24](https://github.com/denoland/deno/releases/tag/v1.24.0) +- Added compat data for Bun, [#1103](https://github.com/zloirock/core-js/issues/1103) - Added compat data for Hermes, [#1099](https://github.com/zloirock/core-js/issues/1099) - Added compat data for Oculus Browser, [#1098](https://github.com/zloirock/core-js/issues/1098) diff --git a/tests/compat-tools/targets-parser.mjs b/tests/compat-tools/targets-parser.mjs index a922bca7368e..ea8786a7bba5 100644 --- a/tests/compat-tools/targets-parser.mjs +++ b/tests/compat-tools/targets-parser.mjs @@ -25,7 +25,7 @@ deepStrictEqual(targetsParser({ browsers: 'ie 11, chrome 56, ios_saf 12.2' }), n deepStrictEqual(targetsParser({ esmodules: true }), new Map([ ['android', '61'], - ['bun', '0.1'], + ['bun', '0.1.1'], ['chrome', '61'], ['deno', '1.0'], ['edge', '16'], @@ -79,7 +79,7 @@ deepStrictEqual(targetsParser({ random: 42, }), new Map([ ['android', '4.2'], - ['bun', '0.1'], + ['bun', '0.1.1'], ['chrome', '56'], ['deno', '1.0'], ['edge', '13'],