./devel/hs-lsp-types, Haskell library for the Microsoft Language Server Protocol, data types

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.3.0.1nb1, Package name: hs-lsp-types-2.3.0.1nb1, Maintainer: pkgsrc-users

An implementation of the types to allow language implementors to support
the Language Server Protocol for their specific language.


Master sites:

Filesize: 234.023 KB

Version history: (Expand)


CVS history: (Expand)


   2025-02-02 14:06:08 by Masatake Daimon | Files touched by this commit (1173)
Log message:
Bump all Haskell packages after switching the default compiler.
   2025-01-31 09:43:46 by Masatake Daimon | Files touched by this commit (4) | Package updated
Log message:
devel/hs-lsp-types: update to lsp-types-2.3.0.1

## 2.3.0.1 -- 2024-12-31

- Relax dependency version bounds

## 2.3.0.0 -- 2024-06-06

- Add support for identifying client and server capabilities associated with a \ 
method.
- `TResponseMessage` now contains a `TResponseError` instead of a `ResponseError`
   2024-05-09 03:32:57 by Masatake Daimon | Files touched by this commit (1137)
Log message:
Recursive revbump after changing the default Haskell compiler
   2024-05-04 08:58:39 by Masatake Daimon | Files touched by this commit (6) | Package updated
Log message:
devel/hs-lsp-types: Update to 2.2.0.0

2.2.0.0 -- 2024-04-29

    Update the metamodel. This results in a number of breaking changes to the \ 
generated code, mostly replacing anonymous structs with named ones.

2.1.1.0 -- 2024-02-24

    Require aeson 2
    Accept null in place of a missing field, a common mistake in spec compliance.
    Arbitrary instances for everything now exist and are exported via the new \ 
lsp-types-quickcheck library

2.1.0.0 -- 2023-11-13

    Add dynamicRegistrationSupported to Capabilities.
    Fully update fullCaps for recent spec versions.
    Support GHC 9.8, drop checked support for GHC 8.10
   2023-11-02 07:37:49 by Masatake Daimon | Files touched by this commit (1141)
Log message:
Revbump all Haskell after updating lang/ghc96
   2023-11-02 02:22:02 by Masatake Daimon | Files touched by this commit (3)
Log message:
devel/hs-lsp-types: Fix build on platforms where ${SED} is textproc/nbsed
   2023-10-31 05:04:06 by Masatake Daimon | Files touched by this commit (1)
Log message:
devel/hs-lsp-types: Forgot to commit PLIST
   2023-10-31 05:01:39 by Masatake Daimon | Files touched by this commit (4)
Log message:
devel/hs-lsp-types: Update to 2.0.2.0

2.0.2.0
* Add Language.LSP.Protocol.Utils.Misc.prettyJSON :: Value -> Doc ann for
  prettyprinting JSON, and ViaJSON as a deriving-via newtype wrapper for
  it.
* Generate Pretty instances for all LSP types using ViaJSON.

2.0.1.1
* Fix parsing of notifications with missing params

2.0.1.0
* Removed deprecation pragmas from fields, as these cannot currently be
  avoided.
* Added isOptionalMethod, that checks whether a method is optional
  according to the spec.

2.0.0.1
* Fixed missing extra-source-files for metamodel.json.

2.0.0.0
* Breaking change: major restructure to generate types and methods from the
  LSP metamodel.
  - Full support for version 3.17 of the LSP specification, many accuracy
    fixes
  - Generated types follow the spec very closely, e.g. using anonymous
    types, using a |? Null instead of Maybe a
  - Anonymous record types in the spec are now represented using row-types
  - Many constructors are now prefixed with their type names
  - Documentation from the spec is transferred
  - Three top level modules: Types (main protocol types), Message (messages
    and methods), Capabilities (capabilities)
* New typeclasses for handling LSP enumerations: LspEnum and LspOpenEnum