intelephense 1.15.0-beta.1 → 1.15.2
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 +22 -2
- package/lib/intelephense.js +2 -2
- package/lib/stub/Core/Core.php +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [1.15.
|
|
3
|
+
## [1.15.2 - 2025-11-13]
|
|
4
|
+
|
|
5
|
+
#### Fixed
|
|
6
|
+
- Several cannot read prop of undefined and range errors.
|
|
7
|
+
- Incorrect suggestion for function when class of same name has been imported.
|
|
8
|
+
- Incorrect indentation when accepting override/implementation suggestion.
|
|
9
|
+
- Incorrect type inference when iterating ArrayIterator and subclasses.
|
|
10
|
+
- False type error, wrong type inlay hint and bad anon function suggestion when expected signature has a variadic paramter.
|
|
11
|
+
|
|
12
|
+
## [1.15.1 - 2025-11-12]
|
|
13
|
+
|
|
14
|
+
#### Fixed
|
|
15
|
+
- Formatting broken for mixed PHP/HTML when PHPDoc used.
|
|
16
|
+
- Undefined variables in functions and methods when preceeding code edited to add/remove new lines.
|
|
17
|
+
- `class_alias()` not working if class name argument is a string literal instead of `::class` constant.
|
|
18
|
+
- `@method` parsing broken for `static` methods.
|
|
19
|
+
- PHPDoc that follows an abstract method being ignored (causing CI4 Builder undefined methods).
|
|
20
|
+
- `global $argv` declaration showing undefined variable.
|
|
21
|
+
- Function reported as undefined when defined in an encapsulating function.
|
|
22
|
+
- False not all paths return value diagnostic when a custom `never` function is called.
|
|
23
|
+
|
|
24
|
+
## [1.15.0 - 2025-11-11]
|
|
4
25
|
|
|
5
26
|
#### Added
|
|
6
27
|
- Support for LSP `CompletionItemLabelDetails`.
|
|
@@ -65,7 +86,6 @@
|
|
|
65
86
|
- Smart select bugged if selecting at end of a file that doesn't end in an empty line.
|
|
66
87
|
- Some stub symbols being excluded, resulting in undefined symbol errors, when the symbol has a phpdoc with no tags.
|
|
67
88
|
|
|
68
|
-
|
|
69
89
|
## [1.14.4 - 2025-04-01]
|
|
70
90
|
|
|
71
91
|
#### Fixed
|