Skip to content
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

Prepare release 2.6.0 #1103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
15 changes: 15 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog for vscode-haskell

## 2.6.0

- Upgrade project to use latest eslint version
([#1150](https://github.com/haskell/vscode-haskell/pull/1150)) by @fendor
- Fix windows CI
([#1149](https://github.com/haskell/vscode-haskell/pull/1149)) by @fendor
- Manually install ghcup into image
([#1119](https://github.com/haskell/vscode-haskell/pull/1119)) by @fendor
- bump vscode-languageclient version to 9.0.1
([#1108](https://github.com/haskell/vscode-haskell/pull/1108)) by @jetjinser
- Add cabalFormattingProvider to package.json
([#1100](https://github.com/haskell/vscode-haskell/pull/1100)) by @fendor
- Prepare 2.4.4
([#1083](https://github.com/haskell/vscode-haskell/pull/1083)) by @fendor

## 2.5.3

- Split out packaging action
Expand Down
56 changes: 33 additions & 23 deletions 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": "2.5.3",
"version": "2.6.0",
"license": "MIT",
"publisher": "haskell",
"engines": {
Expand Down Expand Up @@ -220,26 +220,6 @@
"default": true,
"description": "Whether to typecheck the entire project on load. It could drive to bad performance in large projects."
},
"haskell.sessionLoading": {
"scope": "resource",
"type": "string",
"enum": [
"singleComponent",
"multipleComponents"
],
"default": "singleComponent",
"description": "Preferred approach for loading package components. Setting this to 'multiple components' (EXPERIMENTAL) allows the build tool (such as `cabal` or `stack`) to [load multiple components at once](https://github.com/haskell/cabal/pull/8726), which is a significant improvement.",
"enumDescriptions": [
"Always load only a single component at a time. This is the most reliable option if you encountered any issues with the other options.",
"Prefer a multiple component session, if the build tool supports it. At the moment, only `cabal` supports multiple components session loading. If the `cabal` version does not support loading multiple components at once, we gracefully fall back to \"singleComponent\" mode."
]
},
"haskell.maxCompletions": {
"scope": "resource",
"default": 40,
"type": "integer",
"description": "Maximum number of completions sent to the editor."
},
"haskell.plugin.alternateNumberFormat.globalOn": {
"default": true,
"description": "Enables alternateNumberFormat plugin",
Expand Down Expand Up @@ -276,6 +256,24 @@
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.cabal.hoverOn": {
"default": true,
"description": "Enables cabal hover",
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.cabal.symbolsOn": {
"default": true,
"description": "Enables cabal symbols",
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.cabalHaskellIntegration.globalOn": {
"default": true,
"description": "Enables cabalHaskellIntegration plugin",
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.callHierarchy.globalOn": {
"default": true,
"description": "Enables callHierarchy plugin",
Expand Down Expand Up @@ -318,9 +316,15 @@
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.explicit-fields.globalOn": {
"haskell.plugin.explicit-fields.codeActionsOn": {
"default": true,
"description": "Enables explicit-fields code actions",
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.explicit-fields.inlayHintsOn": {
"default": true,
"description": "Enables explicit-fields plugin",
"description": "Enables explicit-fields inlay hints",
"scope": "resource",
"type": "boolean"
},
Expand Down Expand Up @@ -454,6 +458,12 @@
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.importLens.inlayHintsOn": {
"default": true,
"description": "Enables importLens inlay hints",
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.moduleName.globalOn": {
"default": true,
"description": "Enables moduleName plugin",
Expand Down
Loading
Loading