diff --git a/CHANGELOG.md b/CHANGELOG.md index a05b23c..15adf79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 6.12.0 (2024-01-12) + +### Bug fixes + +Make sure snippet completions also set `userEvent` to `input.complete`. + +Fix a crash when the editor lost focus during an update and autocompletion was active. + +Fix a crash when using a snippet that has only one field, but multiple instances of that field. + +### New features + +The new `activateOnTypingDelay` option allows control over the debounce time before the completions are queried when the user types. + ## 6.11.1 (2023-11-27) ### Bug fixes diff --git a/package.json b/package.json index cbdb543..07b7df7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codemirror/autocomplete", - "version": "6.11.1", + "version": "6.12.0", "description": "Autocompletion for the CodeMirror code editor", "scripts": { "test": "cm-runtests",