From fb623c4bebe69411ca3c2c436cacfd23fb26b969 Mon Sep 17 00:00:00 2001 From: Rafal Chlodnicki Date: Wed, 17 May 2023 19:01:02 +0200 Subject: [PATCH] Cut 1.24.0 --- VERSION | 2 +- messages.json | 1 + messages/1.24.0.txt | 26 +++++++++++++++++++++++++- plugin/core/version.py | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index bfbadb3a2..d43704683 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.23.0 \ No newline at end of file +1.24.0 \ No newline at end of file diff --git a/messages.json b/messages.json index ebb82aaf9..c62949ad2 100644 --- a/messages.json +++ b/messages.json @@ -21,6 +21,7 @@ "1.21.0": "messages/1.21.0.txt", "1.22.0": "messages/1.22.0.txt", "1.23.0": "messages/1.23.0.txt", + "1.24.0": "messages/1.24.0.txt", "1.3.0": "messages/1.3.0.txt", "1.3.1": "messages/1.3.1.txt", "1.4.0": "messages/1.4.0.txt", diff --git a/messages/1.24.0.txt b/messages/1.24.0.txt index 16bf0b164..7b5b822c7 100644 --- a/messages/1.24.0.txt +++ b/messages/1.24.0.txt @@ -1,4 +1,4 @@ -=> 1.23.0 +=> 1.24.0 ⚠️ To ensure that everything works properly after LSP package is updated, it's strongly recommended to restart Sublime Text once it finishes updating all packages. ⚠️ @@ -7,3 +7,27 @@ Sublime Text once it finishes updating all packages. ⚠️ - Diagnostics for files that are not within the project folders are no longer ignored. You can set `"diagnostics_mode": "workspace"` in server-specific configuration to enable old behavior. + +# New features + +- Add support for pull diagnostics (#2221) (jwortmann) +- Add "outline" as an option for "document_highlight_style" (#2234) (Terminal) +- add "show_multiline_document_highlights" setting (#2247) (Tito) + +# Fixes + +- Fix handling of folder_exclude_patterns in projects (#2237) (Rafał Chłodnicki) +- html-escape diagnostic-related strings (#2228) (Rafał Chłodnicki) +- Fix exception for null response id (#2233) (jwortmann) +- Fix some features might not work with dynamical registration (#2222) (jwortmann) + +# Improvements + +- use class for diagnostic info instead of hardcoding color (#2257) (Rafał Chłodnicki) +- Use regular font style in sighelp popup if already highlighted by color scheme (#2259) (jwortmann) +- Add support and mode for workspace pull diagnostics (#2225) (jwortmann) +- don't send params for requests/notifications that don't expect them (#2240) (Rafał Chłodnicki) +- optimize creation of code actions annotation region (#2239) (Rafał Chłodnicki) +- Allow style overrides for inlay_hints.css (#2232) (jwortmann) +- Improve label detail support in completions (#2212) (ryuukk) +- Update clojure-lsp docs (#2226) (Raffael Stein) diff --git a/plugin/core/version.py b/plugin/core/version.py index 1f28a8606..c6b887fcb 100644 --- a/plugin/core/version.py +++ b/plugin/core/version.py @@ -1 +1 @@ -__version__ = (1, 23, 0) +__version__ = (1, 24, 0)