Skip to content

Commit

Permalink
1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewburn committed Feb 13, 2022
1 parent f1acb9b commit 583ece2
Show file tree
Hide file tree
Showing 4 changed files with 139 additions and 68 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Change Log

## [1.8.1 - 2022-02-13]

#### Fixed
- False undefined variable when declared inside expression in conditional statement.
- False non static method should not be called statically for `self::`.
- Enums getting imported repeatedly.
- Enums not suggested for completion in argument lists.
- Type `string` lost from `$var` in conditional when using `!is_numeric($var)`.
- Parsing of `@return Type` when following description starts with html tag.
- Return types for some built in functions/methods incorrect.
- Type inference problems with `break` and `continue`.
- Type inference problems with unary not expr and properties.
- Parameter attributes not analysed for usage.
- Wrong parameter highlighted in signature help when first arg is a named arg.
- Properties and promoted properties when declared with `readonly` and no visibility keyword.
- Don't use > 31 bit numbers in `CompletionItem.data`.
- Variable references within `@var` not getting renamed.
- False diagnostic: Expected type `SimpleXMLElement`. Found `$1`.
- Comment folding in array lists.
- Various smart select issues.
- Method override parameter hover not showing inherited doc.
- Default php version.

## [1.8.0 - 2021-12-05]

#### Added
Expand Down
178 changes: 113 additions & 65 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE.txt",
"version": "1.8.0",
"version": "1.8.1",
"publisher": "bmewburn",
"engines": {
"vscode": "^1.52.0"
Expand Down Expand Up @@ -816,7 +816,7 @@
},
"dependencies": {
"fs-extra": "~9.0.1",
"intelephense": "1.8.0",
"intelephense": "1.8.1",
"semver": "~7.3.2",
"vscode-languageclient": "~7.0.0"
},
Expand Down
Loading

0 comments on commit 583ece2

Please sign in to comment.