File tree Expand file tree Collapse file tree 6 files changed +25
-6
lines changed Expand file tree Collapse file tree 6 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for lsp-test
2
2
3
+ ## 0.14.1.0
4
+
5
+ * Compatibility with new ` lsp-types ` major version.
6
+ * Export ` runSessionWithConfigCustomProcess ` to allow modifying the CreateProcess used to start a server
7
+ * Add ` MonadThrow ` instance for ` Session `
8
+
3
9
## 0.14.0.3
4
10
5
11
* Compatibility with new ` lsp-types ` major version.
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ 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.5. *
40
- , lsp == 1.5. *
39
+ , lsp-types == 1.5. * || == 1.6. *
40
+ , lsp == 1.5. * || == 1.6. *
41
41
, aeson
42
42
, time
43
43
, aeson-pretty
@@ -84,7 +84,7 @@ test-suite tests
84
84
build-depends : base >= 4.10 && < 5
85
85
, hspec
86
86
, lens
87
- , lsp == 1.5 . *
87
+ , lsp == 1.6 . *
88
88
, lsp-test
89
89
, data-default
90
90
, aeson
Original file line number Diff line number Diff line change 1
1
# Revision history for lsp-types
2
+
3
+ ## 1.6.0.0
4
+
5
+ * Add ` isSubRangeOf ` and ` positionInRange ` helper functions
6
+ * Add ` ServerCancelled ` , ` RequestFailed ` and ` ErrorCodeCustom ` server error types
7
+ * Fix "workspace/semanticTokens/refresh" to be a server method instead of a client method
8
+ * Use a packed representation for ` NormalizedFilePath `
9
+ * Add converions from ` OsPath ` to ` NormalizedFilePath ` in ` Language.LSP.Types.Uri.OsPath ` when using new enough ` filepath `
2
10
3
11
## 1.5.0.0
4
12
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
name : lsp-types
3
- version : 1.5.1 .0
3
+ version : 1.6.0 .0
4
4
synopsis : Haskell library for the Microsoft Language Server Protocol, data types
5
5
6
6
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.6.0.0
4
+
5
+ * Pinned to lsp-types 1.6
6
+ * Tests moved to ` lsp-types `
7
+
3
8
## 1.5.0.0
4
9
5
10
* VFS module moved to ` lsp ` from ` lsp-types ` .
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
name : lsp
3
- version : 1.5.1 .0
3
+ version : 1.6.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
@@ -44,7 +44,7 @@ library
44
44
, exceptions
45
45
, filepath
46
46
, hashable
47
- , lsp-types == 1.5 . *
47
+ , lsp-types == 1.6 . *
48
48
, lens >= 4.15.2
49
49
, mtl < 2.4
50
50
, prettyprinter
You can’t perform that action at this time.
0 commit comments