File tree Expand file tree Collapse file tree 6 files changed +36
-6
lines changed Expand file tree Collapse file tree 6 files changed +36
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for lsp-test
2
2
3
+ ## 0.13.0.0 -- 2021-03-26
4
+
5
+ * Update for lsp-types-1.2 (@wz1000 )
6
+ * Limit diagnostics by range in getCodeActions (@aufarg )
7
+ * Kill timeout thread to avoid building up thousands of old TimeoutMessages (@wz1000 )
8
+
3
9
## 0.13.0.0 -- 2021-02-14
4
10
5
11
* Add support for lsp-types-1.1 (@wz1000 )
Original file line number Diff line number Diff line change 1
1
name : lsp-test
2
- version : 0.13 .0.0
2
+ version : 0.14 .0.0
3
3
synopsis : Functional test framework for LSP servers.
4
4
description :
5
5
A test framework for writing tests against
@@ -36,7 +36,7 @@ library
36
36
, parser-combinators :Control.Applicative.Combinators
37
37
default-language : Haskell2010
38
38
build-depends : base >= 4.10 && < 5
39
- , lsp-types == 1.1 . *
39
+ , lsp-types == 1.2 . *
40
40
, aeson
41
41
, time
42
42
, aeson-pretty
@@ -81,7 +81,7 @@ test-suite tests
81
81
build-depends : base >= 4.10 && < 5
82
82
, hspec
83
83
, lens
84
- , lsp == 1.1 . *
84
+ , lsp == 1.2 . *
85
85
, lsp-test
86
86
, data-default
87
87
, aeson
Original file line number Diff line number Diff line change 1
1
# Revision history for lsp-types
2
2
3
+ ## 1.2.0.0
4
+
5
+ * Prevent crashing when optional fields are missing (@anka-213 )
6
+ * Use StrictData (@wz1000 )
7
+ * Add MarkupContent in SignatureHelp types (@michaelpj )
8
+ * Add activeParameter support in SignatureInformation (@michaelpj )
9
+ * Add label offset support in SignatureHelp (@michaelpj )
10
+ * Add some documentation comments to SignatureHelp types (@michaelpj )
11
+ * Add support for InsertReplaceEdit (@michaelpj )
12
+ * Add support for InsertTextMode (@michaelpj )
13
+ * Add resolveSupport (@michaelpj )
14
+ * Fix applying a TextEdit past the end of the document (#271 ) (@michaelpj )
15
+ * Use Empty instead of () as progress create response (#295 ) (@wz1000 )
16
+ * Add tag support for DocumentSymbol, SymbolInformation, and document symbol provider label (#301 ) (@michaelpj )
17
+ * Support change annotations (#302 ) (@michaelpj )
18
+ * Add some more missing lenses (#307 ) (@michaelpj )
19
+
3
20
## 1.1.0.0
4
21
5
22
* Fix prepareRename reponse and prepareProvider (@kirelagin )
Original file line number Diff line number Diff line change 1
1
name : lsp-types
2
- version : 1.1 .0.0
2
+ version : 1.2 .0.0
3
3
synopsis : Haskell library for the Microsoft Language Server Protocol, data types
4
4
5
5
description : An implementation of the types to allow language implementors to
Original file line number Diff line number Diff line change 1
1
# Revision history for lsp
2
2
3
+ ## 1.2.0.0
4
+
5
+ * Parse config from initializeOptions and pass in the old value of config to onConfigurationChange (#285 ) (wz1000)
6
+ * Break up big TVar record into lots of small TVars (#286 ) (@wz1000 )
7
+ * Add some INLINE pragmas (@wz1000 )
8
+ * Make method equality work for CustomMethods (@wz1000 )
9
+
3
10
## 1.1.1.0
4
11
5
12
* Don't send begin progress notification twice (@wz1000 )
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
name : lsp
3
- version : 1.1.1 .0
3
+ version : 1.2.0 .0
4
4
synopsis : Haskell library for the Microsoft Language Server Protocol
5
5
6
6
description : An implementation of the types, and basic message server to
@@ -42,7 +42,7 @@ library
42
42
, filepath
43
43
, hslogger
44
44
, hashable
45
- , lsp-types == 1.1 . *
45
+ , lsp-types == 1.2 . *
46
46
, dependent-map
47
47
, lens >= 4.15.2
48
48
, mtl
You can’t perform that action at this time.
0 commit comments