diff --git a/CHANGELOG.md b/CHANGELOG.md index 3739057714a6..a4c79ac37a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Changelog ##### Unreleased -- Nothing +- Added compat data for Bun, [#1103](https://github.com/zloirock/core-js/issues/1103) ##### [3.23.5 - 2022.07.18](https://github.com/zloirock/core-js/releases/tag/v3.23.5) - Fixed a typo in the `structuredClone` feature detection, [#1106](https://github.com/zloirock/core-js/issues/1106) diff --git a/tests/compat-tools/targets-parser.mjs b/tests/compat-tools/targets-parser.mjs index 12d28a6feadf..181997c327e8 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'], @@ -78,7 +78,7 @@ deepStrictEqual(targetsParser({ random: 42, }), new Map([ ['android', '4.2'], - ['bun', '0.1'], + ['bun', '0.1.1'], ['chrome', '56'], ['deno', '1.0'], ['edge', '13'],