From 56b4b0f5f6f183b523f416d1f7ed9d2c172f8dca Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Sat, 2 Jan 2021 17:28:09 -0500 Subject: [PATCH] Revised section for our upcoming release --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 417b0fa4..337a17a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,10 @@ TODO: consider creating a revised overview of our GC that unifies the original w Bug Fixes -- Do not attempt to call `eval` from the runtime if `(scheme eval)` has not been imported. Instead we now raise a Scheme error in this case instead of allowing the runtime to raise a C segmentation violation. Thanks to Arthur Maciel for the bug report. -- When allocating large vectors the object used to fill such a vector may not be transported to the heap. This was a nasty bug that could lead to random memory corruption. Fixed the minor garbage collector to properly track and transport these objects to prevent the possibility of memory corruption. - Sean Lynch fixed a bug where record type predicates do not check the length of the target before checking if the vector is actually a record. - Fixed `vector?` to no longer return true for instances of record types. +- Do not call `eval` from the runtime if `(scheme eval)` has not been imported. Instead we now raise a Scheme error in this case which prevents the possibility of a C segmentation violation. Thanks to Arthur Maciel for the bug report. +- When allocating very large vectors the object used to fill such a vector may not be transported to the heap. This was a nasty bug that could lead to random memory corruption. Fixed the minor garbage collector to properly track and transport these objects to prevent the possibility of memory corruption. ## 0.23 - December 1, 2020