From 1b3d9cecacea2d5d003f3797790fbeadf14e5a7c Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Wed, 20 Sep 2023 16:37:09 +0200 Subject: [PATCH] Mark version 6.20.0 --- CHANGELOG.md | 18 ++++++++++++++++++ package.json | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30bc7db..16175cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 6.20.0 (2023-09-20) + +### Bug fixes + +Fix an issue that caused `repositionTooltips` to crash when it was called on an editor without tooltips. + +Fix an issue that caused the tooltip system to leave empty nodes in the DOM when an editor using the `parent` option to `tooltips` is destroyed. + +Fix a bug that regression mouse interaction with the area of a fixed-size editor that isn't covered by the content. + +Fix some issues with the way `moveVertically` behaved for positions on line wrap points. + +Fix a bug that could cause the document DOM to be incorrectly updated on some types of viewport changes. + +### New features + +The new `getDrawSelectionConfig` function returns the `drawSelection` configuration for a given state. + ## 6.19.0 (2023-09-14) ### Bug fixes diff --git a/package.json b/package.json index a208902..5d4d779 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codemirror/view", - "version": "6.19.0", + "version": "6.20.0", "description": "DOM view component for the CodeMirror code editor", "scripts": { "test": "cm-runtests",