typescript-language-server 4.4.1 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/lib/cli.mjs +472 -238
- package/lib/cli.mjs.map +1 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [5.0.0](https://github.com/typescript-language-server/typescript-language-server/compare/v4.4.1...v5.0.0) (2025-09-15)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### ⚠ BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
* require at least node 20 ([#994](https://github.com/typescript-language-server/typescript-language-server/issues/994))
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* opt-in support for the "Move to file" interactive code action ([#987](https://github.com/typescript-language-server/typescript-language-server/issues/987)) ([6cf230c](https://github.com/typescript-language-server/typescript-language-server/commit/6cf230c4b357af0543f183b168b841a836b6e7bc))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* code actions handling ([#1009](https://github.com/typescript-language-server/typescript-language-server/issues/1009)) ([fd53ca8](https://github.com/typescript-language-server/typescript-language-server/commit/fd53ca82a7ad74ab6c6fd6102ccf64d0a73a54bd)), closes [#954](https://github.com/typescript-language-server/typescript-language-server/issues/954)
|
|
19
|
+
* require at least node 20 ([#994](https://github.com/typescript-language-server/typescript-language-server/issues/994)) ([63e287d](https://github.com/typescript-language-server/typescript-language-server/commit/63e287d81f83c76b46a23733b7fc8df7b082f7aa))
|
|
20
|
+
|
|
4
21
|
## [4.4.1](https://github.com/typescript-language-server/typescript-language-server/compare/v4.4.0...v4.4.1) (2025-09-12)
|
|
5
22
|
|
|
6
23
|
|