intelephense 1.15.2 → 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 +36 -0
- package/lib/intelephense.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
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
|
+
|
|
21
|
+
## [1.15.3 - 2025-11-17]
|
|
22
|
+
|
|
23
|
+
#### Fixed
|
|
24
|
+
- Template constraints not resolving properly if constraint contains reference to another template.
|
|
25
|
+
- Template types not resolving properly in conditional types.
|
|
26
|
+
- Undefined superglobals after indexing with files open.
|
|
27
|
+
- `array_map` callback parameters inferred as `mixed` if they have a type declaration.
|
|
28
|
+
- PHPDoc leaking to subsequent statements.
|
|
29
|
+
- Anonymous class properties showing as undefined.
|
|
30
|
+
- `[]` as an `@method` parameter default value not parsed.
|
|
31
|
+
- `void` being included as part of union in inlay hint return type.
|
|
32
|
+
- Return types from duplicate methods/functions being reduced to minimal type when unioned instead of previous version behaviour of non-minimal unions.
|
|
33
|
+
- Property types not being inferred from constructor as a fallback when no type is declared/annotated.
|
|
34
|
+
- HTML/JS/CSS language features not working until edits made to the HTML/JS/CSS.
|
|
35
|
+
- `$this` type narrowing not working.
|
|
36
|
+
- Go to definition from a callable array using `__CLASS__` as the scope not working.
|
|
37
|
+
- Removed space at end of `<?php` suggestion.
|
|
38
|
+
|
|
3
39
|
## [1.15.2 - 2025-11-13]
|
|
4
40
|
|
|
5
41
|
#### Fixed
|