intelephense 1.17.2-beta → 1.17.3-beta
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 +12 -0
- package/lib/intelephense.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.17.3 - 2026-03-04]
|
|
4
|
+
|
|
5
|
+
#### Added
|
|
6
|
+
- Setting `intelephense.diagnostics.suppressUndefinedMembersWhenMagicMethodDeclared` to configure if undefined method and property diagnostics should be suppressed if magic methods are declared. Defaults to `true`.
|
|
7
|
+
- Setting `intelephense.diagnostics.severity` to configure the severity of each diagnostic.
|
|
8
|
+
- Setting `intelephense.diagnostics.strictTypes` to configure type checks to be performed as if `declare(strict_types=1)` has been declared in every file. Defaults to `false`.
|
|
9
|
+
- Setting `intelephense.diagnostics.exclude` to disable some or all diagnostics on a per file basis.
|
|
10
|
+
|
|
11
|
+
#### Fixed
|
|
12
|
+
- Various control flow analysis and type inference issues.
|
|
13
|
+
- PHPDoc completion missing `@throws` or showing `@throws mixed`.
|
|
14
|
+
|
|
3
15
|
## [1.17.2 - 2026-02-23] Pre-release
|
|
4
16
|
|
|
5
17
|
#### Added
|