The NetBSD Project

CVS log for pkgsrc/devel/hs-lsp/buildlink3.mk

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / devel / hs-lsp

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.13: download - view: text, markup, annotated - select for diffs
Wed Mar 5 03:39:19 2025 UTC (11 days, 16 hours ago) by pho
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
recursive revbump after patching lang/ghc910

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sun Feb 2 13:05:13 2025 UTC (6 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2 lines
Bump all Haskell packages after switching the default compiler.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Fri Jan 31 09:56:22 2025 UTC (6 weeks, 2 days ago) by pho
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +4 -5 lines
devel/hs-lsp: update to lsp-2.7.0.1

## 2.7.0.1 -- 2024-12-31

- Relax dependency version bounds

## 2.7.0.0 -- 2024-06-06

- Drop dependency on `uuid` and `random`
- Fix handling of `rootPath` in `intializeParams`
- Update to newer `lsp-types`

## 2.6.0.0

- Progress reporting now has a configurable start delay and update delay. This allows
  servers to set up progress reporting for any operation and not worry about spamming
  the user with extremely short-lived progress sessions.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Thu May 9 01:32:02 2024 UTC (10 months, 1 week ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2024Q4-base, pkgsrc-2024Q4, pkgsrc-2024Q3-base, pkgsrc-2024Q3, pkgsrc-2024Q2-base, pkgsrc-2024Q2
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -2 lines
Recursive revbump after changing the default Haskell compiler

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sat May 4 07:04:15 2024 UTC (10 months, 1 week ago) by pho
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +4 -5 lines
devel/hs-lsp: Update to 2.5.0.0

2.5.0.0

    The server will now reject messages sent after shutdown has been received.
    There is a shutdownBarrier member in the server state which can be used to conveniently run actions when shutdown is triggered.

2.4.0.0

    Server-created progress now will not send reports until and unless the client confirms the progress token creation.
    Progress helper functions now can take a progress token provided by the client, so client-initiated progress can now be supported properly.
    The server options now allow the user to say whether the server should advertise support for client-initiated progress or not.
    The server now dynamically registers for workspace/didChangeConfiguration notifications, to ensure that newer clients continue to send them.
    Removed getCompletionPrefix from the VFS module. This is specific to completing Haskell identifiers and doesn't belong here. It has already been moved to ghcide some time ago.

2.3.0.0

    Fix inference of server capabilities for newer methods (except notebook methods).
    VFS no longer requires IO to initialize, functions that wrote to a temporary directory now take the directory as an argument.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu Nov 2 06:36:44 2023 UTC (16 months, 1 week ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2 lines
Revbump all Haskell after updating lang/ghc96

Revision 1.7: download - view: text, markup, annotated - select for diffs
Tue Oct 31 04:21:35 2023 UTC (16 months, 2 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +5 -3 lines
devel/hs-lsp: Update to 2.2.0.0

2.2.0.0
* Many changes relating to client configuration
  - lsp now sends workspace/configuration requests in response to
    intialized and workspace/didChangeConfiguration requests. It still
    attempts to parse configuration from intializationOptions and
    workspace/didChangeConfiguration as a fallback.
  - Servers must provide a configuration section for use in
    workspace/configuration.
  - parseConfig will now be called on the object corresponding to the
    configuration section, not the whole object.
  - New callback for when configuration changes, to allow servers to react.
* The logging of messages sent by the protocol has been disabled, as this
  can prove troublesome for servers that log these to the client:
  https://github.com/haskell/lsp/issues/447

2.1.0.0
* Fix handling of optional methods.
* staticHandlers now takes the client capabilities as an argument. These
  are static across the lifecycle of the server, so this allows a server to
  decide at construction e.g. whether to provide handlers for resolve
  methods depending on whether the client supports it.

2.0.0.0
* Support lsp-types-2.0.0.0.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Mon Oct 9 04:54:22 2023 UTC (17 months, 1 week ago) by pho
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2 lines
Bump Haskell packages after updating lang/ghc94

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Feb 7 01:40:42 2023 UTC (2 years, 1 month ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2 lines
revbump all the Haskell packages after modifying the runtime system of lang/ghc94

Revision 1.4: download - view: text, markup, annotated - select for diffs
Mon Jan 30 03:56:55 2023 UTC (2 years, 1 month ago) by pho
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +7 -6 lines
devel/hs-lsp: Update to 1.6.0.0

1.6.0.0
* Pinned to lsp-types 1.6
* Tests moved to lsp-types

1.5.0.0
* VFS module moved to lsp from lsp-types.
* Logging reworked to use co-log-core instead of hslogger.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Aug 20 08:08:17 2022 UTC (2 years, 6 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2 lines
hs*: recursive bump for new dependencies needed

for hs-aeson, hs-vector

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Feb 26 03:58:01 2022 UTC (3 years ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -2 lines
Bump all Haskell packages after enabling "split sections" in mk/haskell.mk

Revision 1.1: download - view: text, markup, annotated - select for diffs
Wed Feb 16 10:07:05 2022 UTC (3 years ago) by pho
Branches: MAIN
devel/hs-lsp: import hs-lsp-1.4.0.0

An implementation of the types, and basic message server to allow language
implementors to support the Language Server Protocol for their specific
language.

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>