intelephense 1.15.3 → 1.16.0

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,23 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.16.0 - 2025-11-20]
4
+
5
+ #### Added
6
+ - Initial support for PHP 8.5.
7
+
8
+ #### Changed
9
+ - Default PHP version now 8.5.
10
+
11
+ #### Fixed
12
+ - False undefined variables when declared in a `for` loop initialser and referenced in the following `for` loop initialser.
13
+ - False undefined variables when declared in an argument list and referenced in the following argument.
14
+ - Modifying a variable array type after a loop can affect the variable array element type within the loop.
15
+ - `@param-out` and `@param-closure-this` details not showing in hover.
16
+ - Hover links not wrapped in `<>` and therefore not clickable.
17
+ - Symbol outline failing if `@property` property names are missing `$` prefix.
18
+ - False type errors when assigning a generic type to a declared type which does not have type arguments.
19
+ - Omitting template type arguments causing type errors because of unresolved template.
20
+
3
21
  ## [1.15.3 - 2025-11-17]
4
22
 
5
23
  #### Fixed