intelephense 1.16.1 → 1.16.3
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 +24 -0
- package/lib/intelephense.js +2 -2
- package/lib/stub/ldap/ldap.php +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.16.3 - 2025-12-08]
|
|
4
|
+
|
|
5
|
+
#### Fixed
|
|
6
|
+
- Hover not showing for methods named using a PHP reserved name or keyword.
|
|
7
|
+
- Type aliases not expanded after the first reference when appearing multiple times in a type.
|
|
8
|
+
- Global namespaced symbol suggestions not fully qualified in non-global namespace context when `insertUseDeclaration` is `false`.
|
|
9
|
+
- False type error when an array shape tuple is compared to a typed array.
|
|
10
|
+
- Template type not resolving when constraint is `key-of` another template type.
|
|
11
|
+
- Incorrect `ldap-Set_option` stub.
|
|
12
|
+
- PHPDoc that follows a trait use clause not parsed.
|
|
13
|
+
|
|
14
|
+
## [1.16.2 - 2025-11-27]
|
|
15
|
+
|
|
16
|
+
#### Fixed
|
|
17
|
+
- Type aliases not expanded in foreach when used as type arguments for iterators.
|
|
18
|
+
- Global scoped definitions showing as undefined.
|
|
19
|
+
- Shorthand nullable parse error in `@method` tags.
|
|
20
|
+
- Undefined variable when defined in previous call of call chain.
|
|
21
|
+
- Undefined variable when defined in `if` expression.
|
|
22
|
+
- Templated closure parameter showing as mixed even if a type has been declared when type arguments not supplied for scope.
|
|
23
|
+
- Type narrowing `$this` in traits not working.
|
|
24
|
+
- When both an annotated member and a declared member share the same name, visibility should be checked to select the most appropriate definition for context.
|
|
25
|
+
- Type constants not expanded if in type argument of another type.
|
|
26
|
+
|
|
3
27
|
## [1.16.1 - 2025-11-22]
|
|
4
28
|
|
|
5
29
|
#### Fixed
|