diff --git a/VERSION b/VERSION index bb7a48bb9..67eb68059 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.11 \ No newline at end of file +1.2.12 \ No newline at end of file diff --git a/messages.json b/messages.json index 2517464b2..7dc588ec8 100644 --- a/messages.json +++ b/messages.json @@ -13,6 +13,7 @@ "1.2.1": "messages/1.2.1.txt", "1.2.10": "messages/1.2.10.txt", "1.2.11": "messages/1.2.11.txt", + "1.2.12": "messages/1.2.12.txt", "1.2.2": "messages/1.2.2.txt", "1.2.3": "messages/1.2.3.txt", "1.2.4": "messages/1.2.4.txt", diff --git a/messages/1.2.12.txt b/messages/1.2.12.txt new file mode 100644 index 000000000..8e676117f --- /dev/null +++ b/messages/1.2.12.txt @@ -0,0 +1,30 @@ +=> 1.2.12 + +# New client configuration key + +You can now use `disabled_capabilities` per client configuration. +It's a JSON object (dictionary) of "masked" server capabilities. +For more information on how this works, use the hover info capability +of LSP-json. + +# Removed settings + +- `disabled_capabilities` used to be a global setting. It's removed in +favor of it being a setting per client configuration. + +- `ignore_server_trigger_chars` used to be a client configuration + key, but is removed in favor of using `disabled_capabilities`. + +# Features and Fixes: + +- Remove ignore_server_trigger_chars setting (#1600) (Raoul Wols) +- Display an error message when a code action returns an error (Raoul Wols) +- Fix: some menu items were broken (Raoul Wols) +- Use the CSS variable --mdpopups-font-mono in popups.css (Raoul Wols) +- Enable hardbreak in mdpopups to handle escaped newlines (Raoul Wols) +- Handle moving views across windows (#1575) (Raoul Wols) +- Don't lookup the listener so many times (#1589) (Raoul Wols) +- Hopefully fix random import errors (#1587) (Raoul Wols) +- Move lsp detail into autocomplete annotation (#1569) (David Mohl) +- Replace document_highlight_scopes setting with better default scopes (#1585) (jwortmann) +- Require a value when calling resolve function of a Promise (#1583) (Rafał Chłodnicki) diff --git a/plugin/core/version.py b/plugin/core/version.py index 413147ddb..cdeaf8cbf 100644 --- a/plugin/core/version.py +++ b/plugin/core/version.py @@ -1 +1 @@ -__version__ = (1, 2, 11) +__version__ = (1, 2, 12)