diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-10-24 11:13:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 05:13:14 +0200 |
commit | 3fd4e684331a22be84e940833faee111226945ea (patch) | |
tree | 5d73452390185a94aa0c3f15f1be3f20fecd052f /changelog.md | |
parent | 3095048d674b0cc17dfbf221f81e13a1dc1eb6c0 (diff) | |
download | Nim-3fd4e684331a22be84e940833faee111226945ea.tar.gz |
fixes #22856; enables `-d:nimStrictDelete` (#22858)
fixes #22856 `-d:nimStrictDelete` is introduced in 1.6.0, which promised to be enabled in the coming versions. To keep backwards incompatibilities, it also extends the feature of `-d:nimAuditDelete`, which now mimics the old behaviors.
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 72d0a2a2d..58efde163 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,7 @@ ## Changes affecting backward compatibility +- `-d:nimStrictDelete` becomes the default. An index error is produced when the index passed to `system.delete` was out of bounds. Use `-d:nimAuditDelete` to mimic the old behavior for backwards compatibility. ## Standard library additions and changes |