Skip to content

Prepare release 2.6.0 #1103

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 1 commit into from
Apr 17, 2025
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
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

- Add option to enable/disable `.cabal` file support
([#1223](https://github.com/haskell/vscode-haskell/pull/1223)) by @fendor
- 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

## 2.5.3

- Split out packaging action
Expand Down
36 changes: 33 additions & 3 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 @@ -292,6 +292,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 @@ -334,9 +352,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 @@ -470,6 +494,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