intelephense 1.15.3 → 1.16.1

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,33 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.16.1 - 2025-11-22]
4
+
5
+ #### Fixed
6
+ - Stack overflow when determining return type of dynamic call.
7
+ - PHPDoc with `$this` as a type not recognised.
8
+ - False cannot access member from scope diagnostics when `__call` and `__get` could be used to access non public members.
9
+ - Only the first class constant shown as completion suggestion when using comma separated declarations and PHPDoc.
10
+ - Variables declared in an array element showing as undefined in subsequent elements.
11
+ - Promoted property with setter hook showing `$value` parameter as undefined.
12
+
13
+ ## [1.16.0 - 2025-11-20]
14
+
15
+ #### Added
16
+ - Initial support for PHP 8.5.
17
+
18
+ #### Changed
19
+ - Default PHP version now 8.5.
20
+
21
+ #### Fixed
22
+ - False undefined variables when declared in a `for` loop initialser and referenced in the following `for` loop initialser.
23
+ - False undefined variables when declared in an argument list and referenced in the following argument.
24
+ - Modifying a variable array type after a loop can affect the variable array element type within the loop.
25
+ - `@param-out` and `@param-closure-this` details not showing in hover.
26
+ - Hover links not wrapped in `<>` and therefore not clickable.
27
+ - Symbol outline failing if `@property` property names are missing `$` prefix.
28
+ - False type errors when assigning a generic type to a declared type which does not have type arguments.
29
+ - Omitting template type arguments causing type errors because of unresolved template.
30
+
3
31
  ## [1.15.3 - 2025-11-17]
4
32
 
5
33
  #### Fixed