Skip to content

Commit 76b86d5

Browse files
authored
Prepare lsp{,-types} 1.2.0.0, lsp-test 0.14.0.0 (#310)
1 parent e8b311a commit 76b86d5

File tree

6 files changed

+36
-6
lines changed

6 files changed

+36
-6
lines changed

lsp-test/ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Revision history for lsp-test
22

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+
39
## 0.13.0.0 -- 2021-02-14
410

511
* Add support for lsp-types-1.1 (@wz1000)

lsp-test/lsp-test.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: lsp-test
2-
version: 0.13.0.0
2+
version: 0.14.0.0
33
synopsis: Functional test framework for LSP servers.
44
description:
55
A test framework for writing tests against
@@ -36,7 +36,7 @@ library
3636
, parser-combinators:Control.Applicative.Combinators
3737
default-language: Haskell2010
3838
build-depends: base >= 4.10 && < 5
39-
, lsp-types == 1.1.*
39+
, lsp-types == 1.2.*
4040
, aeson
4141
, time
4242
, aeson-pretty
@@ -81,7 +81,7 @@ test-suite tests
8181
build-depends: base >= 4.10 && < 5
8282
, hspec
8383
, lens
84-
, lsp == 1.1.*
84+
, lsp == 1.2.*
8585
, lsp-test
8686
, data-default
8787
, aeson

lsp-types/ChangeLog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Revision history for lsp-types
22

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+
320
## 1.1.0.0
421

522
* Fix prepareRename reponse and prepareProvider (@kirelagin)

lsp-types/lsp-types.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: lsp-types
2-
version: 1.1.0.0
2+
version: 1.2.0.0
33
synopsis: Haskell library for the Microsoft Language Server Protocol, data types
44

55
description: An implementation of the types to allow language implementors to

lsp/ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Revision history for lsp
22

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+
310
## 1.1.1.0
411

512
* Don't send begin progress notification twice (@wz1000)

lsp/lsp.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: lsp
3-
version: 1.1.1.0
3+
version: 1.2.0.0
44
synopsis: Haskell library for the Microsoft Language Server Protocol
55

66
description: An implementation of the types, and basic message server to
@@ -42,7 +42,7 @@ library
4242
, filepath
4343
, hslogger
4444
, hashable
45-
, lsp-types == 1.1.*
45+
, lsp-types == 1.2.*
4646
, dependent-map
4747
, lens >= 4.15.2
4848
, mtl

0 commit comments

Comments
 (0)