Skip to content

Commit f82020f

Browse files
committed
[new release] lsp (3 packages) (1.20.0-4.14)
CHANGES: ## Features - Add custom [`ocamllsp/typeSearch`](/ocaml-lsp-server/docs/ocamllsp/typeSearch-spec.md) request (ocaml/ocaml-lsp#1369) - Make MerlinJump code action configurable (ocaml/ocaml-lsp#1376) - Add custom [`ocamllsp/jump`](/ocaml-lsp-server/docs/ocamllsp/merlinJump-spec.md) request (ocaml/ocaml-lsp#1374) ## Fixes - Fix fd leak in running external processes for preprocessing (ocaml/ocaml-lsp#1349) - Fix prefix parsing for completion of object methods (ocaml/ocaml-lsp#1363, fixes ocaml/ocaml-lsp#1358) - Remove some duplicates in the `selectionRange` answers (ocaml/ocaml-lsp#1368)
1 parent 0b65c91 commit f82020f

File tree

3 files changed

+175
-0
lines changed
  • packages
    • jsonrpc/jsonrpc.1.20.0-4.14
    • lsp/lsp.1.20.0-4.14
    • ocaml-lsp-server/ocaml-lsp-server.1.20.0-4.14

3 files changed

+175
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
opam-version: "2.0"
2+
synopsis: "Jsonrpc protocol implemenation"
3+
description: "See https://www.jsonrpc.org/specification"
4+
maintainer: ["Rudi Grinberg <[email protected]>"]
5+
authors: [
6+
"Andrey Popp <[email protected]>"
7+
"Rusty Key <[email protected]>"
8+
"Louis Roché <[email protected]>"
9+
"Oleksiy Golovko <[email protected]>"
10+
"Rudi Grinberg <[email protected]>"
11+
"Sacha Ayoun <[email protected]>"
12+
"cannorin <[email protected]>"
13+
"Ulugbek Abdullaev <[email protected]>"
14+
"Thibaut Mattio <[email protected]>"
15+
"Max Lantas <[email protected]>"
16+
]
17+
license: "ISC"
18+
homepage: "https://github.com/ocaml/ocaml-lsp"
19+
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
20+
depends: [
21+
"dune" {>= "3.0"}
22+
"ocaml" {>= "4.08"}
23+
"odoc" {with-doc}
24+
]
25+
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
26+
build: [
27+
["dune" "subst"] {dev}
28+
[
29+
"dune"
30+
"build"
31+
"-p"
32+
name
33+
"-j"
34+
jobs
35+
"@install"
36+
"@doc" {with-doc}
37+
]
38+
]
39+
url {
40+
src:
41+
"https://github.com/ocaml/ocaml-lsp/releases/download/1.20.0-4.14/lsp-1.20.0-4.14.tbz"
42+
checksum: [
43+
"sha256=e537624c1357a7136ad99e9958baae0cc2ba4d4ddbbdaf521878054619fb7285"
44+
"sha512=e1043b60ba03fb2dede8252ed230c6ccd52292406df00430c42eacb9f0fd6dd74d054397a256d3ba337abd36463c43c4ea59435f063106b5f7f9f8d87626bec6"
45+
]
46+
}
47+
x-commit-hash: "83cdcd60f19466f2fbfff5f61b37643d69746fb6"

packages/lsp/lsp.1.20.0-4.14/opam

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
opam-version: "2.0"
2+
synopsis: "LSP protocol implementation in OCaml"
3+
description: """
4+
5+
Implementation of the LSP protocol in OCaml. It is designed to be as portable as
6+
possible and does not make any assumptions about IO.
7+
"""
8+
maintainer: ["Rudi Grinberg <[email protected]>"]
9+
authors: [
10+
"Andrey Popp <[email protected]>"
11+
"Rusty Key <[email protected]>"
12+
"Louis Roché <[email protected]>"
13+
"Oleksiy Golovko <[email protected]>"
14+
"Rudi Grinberg <[email protected]>"
15+
"Sacha Ayoun <[email protected]>"
16+
"cannorin <[email protected]>"
17+
"Ulugbek Abdullaev <[email protected]>"
18+
"Thibaut Mattio <[email protected]>"
19+
"Max Lantas <[email protected]>"
20+
]
21+
license: "ISC"
22+
homepage: "https://github.com/ocaml/ocaml-lsp"
23+
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
24+
depends: [
25+
"dune" {>= "3.0"}
26+
"jsonrpc" {= version}
27+
"yojson"
28+
"ppx_yojson_conv_lib" {>= "v0.14"}
29+
"cinaps" {with-test}
30+
"ppx_expect" {>= "v0.15.0" & < "0.17.0" & with-test}
31+
"uutf" {>= "1.0.2"}
32+
"odoc" {with-doc}
33+
"ocaml" {>= "4.14"}
34+
]
35+
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
36+
build: [
37+
["dune" "subst"] {dev}
38+
[
39+
"dune"
40+
"build"
41+
"-p"
42+
name
43+
"-j"
44+
jobs
45+
"@install"
46+
"@doc" {with-doc}
47+
]
48+
]
49+
url {
50+
src:
51+
"https://github.com/ocaml/ocaml-lsp/releases/download/1.20.0-4.14/lsp-1.20.0-4.14.tbz"
52+
checksum: [
53+
"sha256=e537624c1357a7136ad99e9958baae0cc2ba4d4ddbbdaf521878054619fb7285"
54+
"sha512=e1043b60ba03fb2dede8252ed230c6ccd52292406df00430c42eacb9f0fd6dd74d054397a256d3ba337abd36463c43c4ea59435f063106b5f7f9f8d87626bec6"
55+
]
56+
}
57+
x-commit-hash: "83cdcd60f19466f2fbfff5f61b37643d69746fb6"
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
opam-version: "2.0"
2+
synopsis: "LSP Server for OCaml"
3+
description: "An LSP server for OCaml."
4+
maintainer: ["Rudi Grinberg <[email protected]>"]
5+
authors: [
6+
"Andrey Popp <[email protected]>"
7+
"Rusty Key <[email protected]>"
8+
"Louis Roché <[email protected]>"
9+
"Oleksiy Golovko <[email protected]>"
10+
"Rudi Grinberg <[email protected]>"
11+
"Sacha Ayoun <[email protected]>"
12+
"cannorin <[email protected]>"
13+
"Ulugbek Abdullaev <[email protected]>"
14+
"Thibaut Mattio <[email protected]>"
15+
"Max Lantas <[email protected]>"
16+
]
17+
license: "ISC"
18+
homepage: "https://github.com/ocaml/ocaml-lsp"
19+
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
20+
depends: [
21+
"dune" {>= "3.0"}
22+
"yojson"
23+
"base"
24+
"lsp" {= version}
25+
"jsonrpc" {= version}
26+
"re" {>= "1.5.0"}
27+
"ppx_yojson_conv_lib" {>= "v0.14"}
28+
"dune-rpc" {>= "3.4.0"}
29+
"chrome-trace" {>= "3.3.0"}
30+
"dyn"
31+
"stdune"
32+
"fiber" {>= "3.1.1" & < "4.0.0"}
33+
"ocaml" {>= "4.14.0" & < "5.0"}
34+
"xdg"
35+
"ordering"
36+
"dune-build-info"
37+
"spawn"
38+
"astring"
39+
"camlp-streams"
40+
"ppx_expect" {>= "v0.15.0" & < "0.17.0" & with-test}
41+
"ocamlformat" {with-test & = "0.26.2"}
42+
"ocamlc-loc" {>= "3.7.0"}
43+
"pp" {>= "1.1.2"}
44+
"csexp" {>= "1.5"}
45+
"ocamlformat-rpc-lib" {>= "0.21.0"}
46+
"odoc" {with-doc}
47+
"merlin-lib" {>= "4.18" & < "5.0"}
48+
]
49+
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
50+
build: [
51+
["dune" "subst"] {dev}
52+
[
53+
"dune"
54+
"build"
55+
"-p"
56+
name
57+
"-j"
58+
jobs
59+
"@install"
60+
"@doc" {with-doc}
61+
]
62+
]
63+
url {
64+
src:
65+
"https://github.com/ocaml/ocaml-lsp/releases/download/1.20.0-4.14/lsp-1.20.0-4.14.tbz"
66+
checksum: [
67+
"sha256=e537624c1357a7136ad99e9958baae0cc2ba4d4ddbbdaf521878054619fb7285"
68+
"sha512=e1043b60ba03fb2dede8252ed230c6ccd52292406df00430c42eacb9f0fd6dd74d054397a256d3ba337abd36463c43c4ea59435f063106b5f7f9f8d87626bec6"
69+
]
70+
}
71+
x-commit-hash: "83cdcd60f19466f2fbfff5f61b37643d69746fb6"

0 commit comments

Comments
 (0)