intelephense 1.16.4 → 1.17.0-beta
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 +38 -0
- package/lib/intelephense.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.17.0 - 2026-02-09] Pre-release
|
|
4
|
+
|
|
5
|
+
#### Added
|
|
6
|
+
- [Inline values provider](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_inlineValue) for better synergy with xdebug extension.
|
|
7
|
+
- Support for `@mixin` with an intersection type.
|
|
8
|
+
- Support for `value-of<T>` type.
|
|
9
|
+
- Support for default template type arguments eg `@template T of bool = false`.
|
|
10
|
+
- More diagnostics.
|
|
11
|
+
|
|
12
|
+
#### Changed
|
|
13
|
+
- Signature help now uses short type names instead of fully qualified type names to increase legibility.
|
|
14
|
+
- Variables can be now renamed to expressions, for example `$value` => `$this->value`.
|
|
15
|
+
- When not provided by the client, default storage will be the following:
|
|
16
|
+
- *nix
|
|
17
|
+
- storagePath - `$XDG_CONFIG_HOME/intelephense/workspace/` or `$HOME/.config/intelephense/workspace/`
|
|
18
|
+
- globalStoragePath - `$XDG_CONFIG_HOME/intelephense/global/` or `$HOME/.config/intelephense/global/`
|
|
19
|
+
- licenceKey - `$globalStoragePath/licence.txt` or `$globalStoragePath/license.txt`
|
|
20
|
+
- Windows
|
|
21
|
+
- storagePath - `%AppData%/intelephense/workspace/` or `%UserProfile%/intelephense/workspace/`
|
|
22
|
+
- globalStoragePath - `%AppData%/intelephense/global/` or `%UserProfile%/intelephense/global/`
|
|
23
|
+
- licenceKey - `$globalStoragePath/licence.txt` or `$globalStoragePath/license.txt`
|
|
24
|
+
|
|
25
|
+
#### Fixed
|
|
26
|
+
- Conditional type where a parameter template type is the subject yielding unexpected type when argument is a union.
|
|
27
|
+
- Closure `static` return type resolved too early.
|
|
28
|
+
- False type error when comparing an array shape to a typed array.
|
|
29
|
+
- Various diagnostics issues.
|
|
30
|
+
|
|
31
|
+
## [1.16.5 - 2026-02-02]
|
|
32
|
+
|
|
33
|
+
#### Fixed
|
|
34
|
+
- `CodeActionContext.only` being ignored for some code actions.
|
|
35
|
+
- Global function and constant suggestions prefixed with `\` when not configured to.
|
|
36
|
+
- Implementations code lens not working for hooked properties.
|
|
37
|
+
- Document highlight not working when origin is within phpdoc.
|
|
38
|
+
- Abstract hooked properties not reported as not implemented.
|
|
39
|
+
- PHPDoc immediately following another PHPDoc being ignored in class member lists.
|
|
40
|
+
|
|
3
41
|
## [1.16.4 - 2026-01-16]
|
|
4
42
|
|
|
5
43
|
#### Fixed
|