Skip to content

Prepare 1.3.0 release #383

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
### 1.3.0

- Add `haskell.releasesURL` option to override where to look for HLS releases search for HLS downloads (@soiamsoNG)
- Add `haskell.releasesURL` option to override where to look for HLS releases search for HLS downloads, thanks to @soiamsoNG
- With this version _the only supported lsp server variant is [`haskell-language-server`](https://github.com/haskell/haskell-language-server)_
- Add support for generic plugin configuration. Thanks to it, each plugin capability (diagnostics, code actions, code lenses, etc) or the entire plugin can be disabled
- Add some plugin specic options:
- [wingman](https://haskellwingman.dev/) (aka tactics) plugin
- `haskell.plugin.tactic.config.features`: Feature set used by the plugin
- `haskell.plugin.tactics.config.hole_severity`: The severity to use when showing hole diagnostics
- `haskell.plugin.tactic.config.max_use_ctor_actions`: Maximum number of `Use constructor <x>` code actions that can appear
- `haskell.plugin.tactics.config.timeout_duration`: The timeout for Wingman actions, in seconds
- completions
- `haskell.plugin.ghcide-completions.config.autoExtendOn`: Extends the import list automatically when completing a out-of-scope identifier
- `haskell.plugin.ghcide-completions.config.snippetsOn`: Inserts snippets when using code completions
- type signature lenses - `haskell.plugin.ghcide-type-lenses.config.mode`: Control how type lenses are shown
- The option `haskell.serverExecutablePath` has now `machine` scope, so it can be only changed globally by the user. It avoids a potential security vulnerability as folders containing `.vscode/settings.json` with that option could execute arbitrary programs.
- Deprecated options:
- `haskell.hlintOn`: use `haskell.plugin.hlint.globalOn` instead.
- `haskell.completionSnippetsOn`: use `haskell.plugin.ghcide-completions.config.snippetsOn`
- Fixed a small typo that caused the server not to be loaded in `.lhs` files, thanks to @Max7cd

### 1.2.0

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
"scope": "resource",
"type": "string",
"default": true,
"markdownDescription": "Features set used by wingman (tactic) plugin"
"markdownDescription": "Feature set used by Wingman"
},
"haskell.plugin.tactics.config.hole_severity": {
"enumDescriptions": [
Expand All @@ -249,7 +249,7 @@
"title": "Max number of constructors",
"scope": "resource",
"type": "integer",
"default": true,
"default": 5,
"markdownDescription": "Maximum number of `Use constructor <x>` code actions that can appear"
},
"haskell.plugin.tactics.config.timeout_duration": {
Expand Down