File tree Expand file tree Collapse file tree 7 files changed +10
-8
lines changed
src/Language/LSP/Protocol/Utils Expand file tree Collapse file tree 7 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for lsp-test
2
2
3
- ## Unreleased
3
+ ## 0.16.0.0
4
4
5
5
- The client configuration is now _ mandatory_ and is an ` Object ` rather than a ` Value ` .
6
6
- ` lsp-test ` now responds to ` workspace/configuration ` requests.
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.4
2
2
name : lsp-test
3
- version : 0.15 .0.1
3
+ version : 0.16 .0.0
4
4
synopsis : Functional test framework for LSP servers.
5
5
description :
6
6
A test framework for writing tests against
@@ -60,7 +60,7 @@ library
60
60
, Glob >= 0.9 && < 0.11
61
61
, lens
62
62
, lens-aeson
63
- , lsp ^>= 2.1
63
+ , lsp ^>= 2.2
64
64
, lsp-types ^>= 2.0
65
65
, mtl < 2.4
66
66
, parser-combinators >= 1.2
@@ -103,7 +103,7 @@ test-suite tests
103
103
, filepath
104
104
, hspec
105
105
, lens
106
- , lsp ^>= 2.1
106
+ , lsp ^>= 2.2
107
107
, lsp-test
108
108
, mtl < 2.4
109
109
, parser-combinators
Original file line number Diff line number Diff line change 1
1
# Revision history for lsp-types
2
2
3
- ## Unreleased
3
+ ## 2.0.2.0
4
4
5
5
- Add ` Language.LSP.Protocol.Utils.Misc.prettyJSON :: Value -> Doc ann ` for prettyprinting JSON,
6
6
and ` ViaJSON ` as a deriving-via newtype wrapper for it.
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
name : lsp-types
3
- version : 2.0.1.1
3
+ version : 2.0.2.0
4
4
synopsis :
5
5
Haskell library for the Microsoft Language Server Protocol, data types
6
6
@@ -79,6 +79,7 @@ library
79
79
, exceptions
80
80
, hashable >= 1.3.4.0
81
81
, indexed-traversable
82
+ , indexed-traversable-instances
82
83
, lens >= 4.15.2
83
84
, lens-aeson
84
85
, mod
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import Data.Aeson
16
16
import Data.Aeson.Text as Aeson
17
17
import qualified Data.Foldable as F
18
18
import qualified Data.Foldable.WithIndex as F
19
+ import qualified Data.Functor.WithIndex.Instances ()
19
20
import Data.List hiding (group )
20
21
import Data.Maybe (mapMaybe )
21
22
import Language.Haskell.TH
Original file line number Diff line number Diff line change 1
1
# Revision history for lsp
2
2
3
- ## Unreleased
3
+ ## 2.2.0.0
4
4
5
5
- Many changes relating to client configuration
6
6
- ` lsp ` now sends ` workspace/configuration ` requests in response to ` intialized ` and
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
name : lsp
3
- version : 2.1 .0.0
3
+ version : 2.2 .0.0
4
4
synopsis : Haskell library for the Microsoft Language Server Protocol
5
5
description :
6
6
An implementation of the types, and basic message server to
You can’t perform that action at this time.
0 commit comments