intelephense 1.17.4-beta → 1.17.6-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 +34 -0
- package/lib/intelephense.js +3 -3
- package/package.json +33 -35
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.17.6 - 2026-04-19]
|
|
4
|
+
|
|
5
|
+
#### Changed
|
|
6
|
+
- Indexing now uses LSP work done `$/progress` notifications instead of custom notifications.
|
|
7
|
+
- Indexer file queue processing debounce increased to 500ms.
|
|
8
|
+
- On-type diagnostics debounce reduced to 1000ms.
|
|
9
|
+
|
|
10
|
+
#### Fixed
|
|
11
|
+
- Empty array shapes showing parse error.
|
|
12
|
+
- Should not narrow variable type when using `is_a` and `is_subclass_of` with `$allow_string` value of `true` and variable type of `string`.
|
|
13
|
+
- Editing a file causing promoted properties to become undefined.
|
|
14
|
+
- Editing a file causing definition location inaccuracies.
|
|
15
|
+
- Duplicate/unecessary indexing when responding to file change events.
|
|
16
|
+
- Editing a file causing anonymous class type hierarchy bug.
|
|
17
|
+
|
|
18
|
+
## [1.17.5 - 2026-04-08]
|
|
19
|
+
|
|
20
|
+
#### Added
|
|
21
|
+
- `throwDepth` setting to control maximum call depth when analysing `throw` expressions. Defaults to `0` (current call declaration body only). Max `10`. Higher values may impact performance.
|
|
22
|
+
|
|
23
|
+
#### Changed
|
|
24
|
+
- Methods declared with `@method` with no return type are given return type of `void` instead of `mixed`.
|
|
25
|
+
- `@param` type is now optional.
|
|
26
|
+
- Tweaked suggestion order.
|
|
27
|
+
|
|
28
|
+
#### Fixed
|
|
29
|
+
- False no type information available diagnostic when property/parameter inherits documented type.
|
|
30
|
+
- False method compatibility error when a trait method and interface method return `self`.
|
|
31
|
+
- `bool` subject type not expanded to `true|false` when comparing to `true` in conditional type.
|
|
32
|
+
- No import quickfix for undefined PHPDoc types.
|
|
33
|
+
- Incorrect method description shown in hover when multiple methods of same name are declared using `@method`.
|
|
34
|
+
- Array access type inferred as `mixed` when subject is a template type with array shape constraint.
|
|
35
|
+
- False undefined phpdoc type in constant unions.
|
|
36
|
+
|
|
3
37
|
## [1.17.4 - 2026-03-23]
|
|
4
38
|
|
|
5
39
|
#### Added
|