./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.2.0.0nb1, Package name: hs-lsp-types-2.2.0.0nb1, 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: 229.262 KB

Version history: (Expand)


CVS history: (Expand)


   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
   2023-10-09 06:55:01 by Masatake Daimon | Files touched by this commit (988)
Log message:
Bump Haskell packages after updating lang/ghc94
   2023-01-30 04:01:38 by Masatake Daimon | Files touched by this commit (4)
Log message:
devel/hs-lsp-types: Update to 1.6.0.0

1.6.0.0
* Add isSubRangeOf and positionInRange helper functions
* Add ServerCancelled, RequestFailed and ErrorCodeCustom server error types
* Fix "workspace/semanticTokens/refresh" to be a server method instead of a
  client method
* Use a packed representation for NormalizedFilePath
* Add converions from OsPath to NormalizedFilePath in
  Language.LSP.Types.Uri.OsPath when using new enough filepath

1.5.0.0
* VFS module moved from lsp-types to lsp, as it relates to the actual
  implementation of a LSP server.