Skip to content

Prepare 1.7.0 #465

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 4 commits into from
Sep 23, 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: 15 additions & 4 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
### Next release

- Add tracking of cabal files to work together with the incoming cabal formatter plugin
### 1.7.0

- Add an option to set server command line arguments thanks to [@cdsmith](https://github.com/cdsmith) <https://github.com/haskell/vscode-haskell/pull/464>
- It includes a new config option `haskell.serverExtraArgs` to being able to pass extra argument to the lsp server executable
- Update config options to match last haskell-language-server version <https://github.com/haskell/vscode-haskell/pull/463>
- It removes `haskell.diagnosticsOnChange` and `haskell.formatOnImportOn` cause they were unused in the server
- It adds `haskell.checkProject`, `haskell.maxCompletions` and `haskell.plugin.refineImports.globalOn`
- Fix showDocumentation command thanks to [@pranaysashank](https://github.com/pranaysashank) <https://github.com/haskell/vscode-haskell/pull/452>
- It fixes partially showing the documentation directly in vscode. The documentation is rendered but internal links still does not work
- Two config options has been added: `haskell.openDocumentationInHackage` and `haskell.openSourceInHackage` with default value `true`
- So documentation will be opened using the hackage url in an external navigator by default
- If you prefer having them in vscode you will need to change them to `false`
- Create output channel only if there are no existing clients thanks to [@pranaysashank](https://github.com/pranaysashank) <https://github.com/haskell/vscode-haskell/pull/448>
- This fixes the creation of several output channels for the extension

### 1.6.1

- Fix wrapper call to get project ghc version in windows with spaces in path (<https://github.com/haskell/vscode-haskell/pull/439>)

### 1.6.0

- Bump up vscode version to 1.52.0 (#424) by @berberman
- Bump up vscode version to 1.52.0 (#424) by [@berberman](https://github.com/berberman)
- To match the lsp spec version used in haskell-language-version and fix <https://github.com/haskell/haskell-language-server/issues/2068>

### 1.5.1
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This extension adds language support for [Haskell](https://haskell.org), powered
- Document symbols
- Highlight references in document
- Code completion
- Show documentation and sources in hackage
- Formatting via Brittany, Floskell, Fourmolu, Ormolu or Stylish Haskell
- [Multi-root workspace](https://code.visualstudio.com/docs/editor/multi-root-workspaces) support
- Code evaluation (Haskell Language Server), see ([Tutorial](https://github.com/haskell/haskell-language-server/blob/master/plugins/hls-eval-plugin/README.md))
Expand All @@ -38,6 +39,10 @@ This extension adds language support for [Haskell](https://haskell.org), powered

![Module Name Demo](https://user-images.githubusercontent.com/54035/110860755-78ad8680-82bd-11eb-9845-9ea4b1cc1f76.gif)

- Call hierarchy support

![Call Hierarchy in VSCode](https://github.com/haskell/haskell-language-server/raw/2857eeece0398e1cd4b2ffb6069b05c4d2308b39/plugins/hls-call-hierarchy-plugin/call-hierarchy-in-vscode.gif)

## Requirements

- For standalone `.hs`/`.lhs` files, [ghc](https://www.haskell.org/ghc/) must be installed and on the PATH. The easiest way to install it is with [ghcup](https://www.haskell.org/ghcup/) or [Chocolatey](https://www.haskell.org/platform/windows.html) on Windows.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "haskell",
"displayName": "Haskell",
"description": "Haskell language support powered by the Haskell Language Server",
"version": "1.6.1",
"version": "1.7.0",
"license": "MIT",
"publisher": "haskell",
"engines": {
Expand Down