intelephense 1.16.5 → 1.17.1-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 CHANGED
@@ -1,5 +1,44 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.17.1 - 2026-02-18] Pre-release
4
+
5
+ #### Added
6
+ - More diagnostics.
7
+
8
+ #### Fixed
9
+ - Various diagnostic fixes.
10
+ - Implement all abstract methods not working for anonymous classes.
11
+ - Incorrect array creation type inference when one or more elements is a union type.
12
+ - Constant values not being computed when declared using an expression rather than a literal value.
13
+
14
+ ## [1.17.0 - 2026-02-09] Pre-release
15
+
16
+ #### Added
17
+ - [Inline values provider](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_inlineValue) for better synergy with xdebug extension.
18
+ - Support for `@mixin` with an intersection type.
19
+ - Support for `value-of<T>` type.
20
+ - Support for default template type arguments eg `@template T of bool = false`.
21
+ - More diagnostics.
22
+
23
+ #### Changed
24
+ - Signature help now uses short type names instead of fully qualified type names to increase legibility.
25
+ - Variables can be now renamed to expressions, for example `$value` => `$this->value`.
26
+ - When not provided by the client, default storage will be the following:
27
+ - *nix
28
+ - storagePath - `$XDG_CONFIG_HOME/intelephense/workspace/` or `$HOME/.config/intelephense/workspace/`
29
+ - globalStoragePath - `$XDG_CONFIG_HOME/intelephense/global/` or `$HOME/.config/intelephense/global/`
30
+ - licenceKey - `$globalStoragePath/licence.txt` or `$globalStoragePath/license.txt`
31
+ - Windows
32
+ - storagePath - `%AppData%/intelephense/workspace/` or `%UserProfile%/intelephense/workspace/`
33
+ - globalStoragePath - `%AppData%/intelephense/global/` or `%UserProfile%/intelephense/global/`
34
+ - licenceKey - `$globalStoragePath/licence.txt` or `$globalStoragePath/license.txt`
35
+
36
+ #### Fixed
37
+ - Conditional type where a parameter template type is the subject yielding unexpected type when argument is a union.
38
+ - Closure `static` return type resolved too early.
39
+ - False type error when comparing an array shape to a typed array.
40
+ - Various diagnostics issues.
41
+
3
42
  ## [1.16.5 - 2026-02-02]
4
43
 
5
44
  #### Fixed