From efc82447c339f8f8b40a1f4b621372436dac773c Mon Sep 17 00:00:00 2001 From: Pedro Paulo <32345702+pedropaulosuzuki@users.noreply.github.com> Date: Thu, 2 Jul 2020 16:24:38 -0300 Subject: [PATCH 1/3] Update CHANGELOG.md for 0.9 Some of the updates were in the wrong place (benchmark on features instead of Internal #428, cleanup of Math methods #514 is a internal refactor more than a bug fix). --- CHANGELOG.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e3835ec91a..e0bcd04a4d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ Feature Enhancements: Implement global `Infinity` property (@AnirudhKonduru) - [FEATURE #410](https://github.com/boa-dev/boa/pull/410): Add support for the reviver function to JSON.parse (@abhijeetbhagat) +- [FEATURE #525](https://github.com/boa-dev/boa/pull/425): + Implement additional `Math` methods (@mr-rodgers) - [FEATURE #425](https://github.com/boa-dev/boa/pull/425): Specification compliant `ToString` (`to_string`) (@HalidOdat) - [FEATURE #442](https://github.com/boa-dev/boa/pull/442): @@ -24,8 +26,6 @@ Feature Enhancements: parseInt, parseFloat implementation (@Lan2u) - [FEATURE #468](https://github.com/boa-dev/boa/pull/468): Add BigInt.asIntN() and BigInt.asUintN() functions (@Tropid) -- [FEATURE #428](https://github.com/boa-dev/boa/issues/428): - [Feature Request] - Create benchmark for Array manipulation (@abhijeetbhagat) - [FEATURE #439](https://github.com/boa-dev/boa/issues/439): Implement break handling in switch statements (@Lan2u) - [FEATURE #301](https://github.com/boa-dev/boa/issues/301): @@ -63,8 +63,6 @@ Bug Fixes: Fixed global objects initialization order (@HalidOdat) - [BUG #509](https://github.com/boa-dev/boa/issues/509): JSON.stringify(undefined) panics (@n14little) -- [BUG #514](https://github.com/boa-dev/boa/issues/514): - Clean up `Math` Methods (@n14little) - [BUG #511](https://github.com/boa-dev/boa/issues/511): [Call] Usage of "this" in methods is not supported (@jasonwilliams) @@ -80,12 +78,16 @@ Internal Improvements Execution and Node modulization (@Razican) - [INTERNAL #465](https://github.com/boa-dev/boa/issues/465): Refactoring Value (decouple `Gc` from `Value`) (@HalidOdat) +- [INTERNAL #514](https://github.com/boa-dev/boa/issues/514): + Clean up `Math` Methods (@n14little) - [INTERNAL #416](https://github.com/boa-dev/boa/pull/416) & [INTERNAL #423](https://github.com/boa-dev/boa/commit/c8218dd91ef3181e048e7a2659a4fbf8d53c7174): Update links to boa-dev (@pedropaulosuzuki) - [INTERNAL #378](https://github.com/boa-dev/boa/issues/378): Code Coverage! (@Lan2u) - [INTERNAL #431](https://github.com/boa-dev/boa/pull/431): Updates to PR Benchmarks (@Razican) +- [INTERNAL #428](https://github.com/boa-dev/boa/issues/428): +Create benchmark for Array manipulation (@abhijeetbhagat) - [INTERNAL #427 #429 #430](https://github.com/boa-dev/boa/commit/64dbf13afd15f12f958daa87a3d236dc9af1a9aa): Added new benchmarks (@Razican) From b6c78135d98edbe61b6bcf8973415f32194b5a7d Mon Sep 17 00:00:00 2001 From: Pedro Paulo <32345702+pedropaulosuzuki@users.noreply.github.com> Date: Thu, 2 Jul 2020 17:24:23 -0300 Subject: [PATCH 2/3] Fix #525 pointed to #425 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0bcd04a4d3..ae5ec27976b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ Feature Enhancements: Implement global `Infinity` property (@AnirudhKonduru) - [FEATURE #410](https://github.com/boa-dev/boa/pull/410): Add support for the reviver function to JSON.parse (@abhijeetbhagat) -- [FEATURE #525](https://github.com/boa-dev/boa/pull/425): +- [FEATURE #525](https://github.com/boa-dev/boa/pull/525): Implement additional `Math` methods (@mr-rodgers) - [FEATURE #425](https://github.com/boa-dev/boa/pull/425): Specification compliant `ToString` (`to_string`) (@HalidOdat) From 250272a525263a1a9091c1da00578e5bd79068d6 Mon Sep 17 00:00:00 2001 From: Pedro Paulo <32345702+pedropaulosuzuki@users.noreply.github.com> Date: Thu, 2 Jul 2020 17:43:58 -0300 Subject: [PATCH 3/3] Removed #525 from 0.9 Co-authored-by: HalidOdat --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae5ec27976b..56b9ccb74fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,8 +12,6 @@ Feature Enhancements: Implement global `Infinity` property (@AnirudhKonduru) - [FEATURE #410](https://github.com/boa-dev/boa/pull/410): Add support for the reviver function to JSON.parse (@abhijeetbhagat) -- [FEATURE #525](https://github.com/boa-dev/boa/pull/525): - Implement additional `Math` methods (@mr-rodgers) - [FEATURE #425](https://github.com/boa-dev/boa/pull/425): Specification compliant `ToString` (`to_string`) (@HalidOdat) - [FEATURE #442](https://github.com/boa-dev/boa/pull/442):