Skip to content

Commit

Permalink
1.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewburn committed Aug 13, 2024
1 parent 7c7eecb commit 632056e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## [1.12.3 - 2024-08-13]

#### Fixed
- Hover, go to definition not working on phpdoc `@see` FQSEN.
- Callable signatures with `static` typed parameter resolving to incorrect type.
- Type inference within `for` statements with no control expression.
- Should not do additional type checks on variables that have `unset` type.
- Variables with type `null` not taking on by ref parameter type when passed as argument.
- Anonymous function parameters showing as undefined when function declared inside array.
- Variables assigned to in `try` block have type `unset` in `catch` clause.

## [1.12.2 - 2024-08-08]

#### Fixed
Expand Down
12 changes: 6 additions & 6 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 @@ -10,7 +10,7 @@
"sponsor": {
"url": "https://intelephense.com"
},
"version": "1.12.2",
"version": "1.12.3",
"publisher": "bmewburn",
"engines": {
"vscode": "^1.82.0"
Expand Down Expand Up @@ -886,7 +886,7 @@
},
"dependencies": {
"fs-extra": "~11.2.0",
"intelephense": "1.12.2",
"intelephense": "1.12.3",
"semver": "~7.6.2",
"vscode-languageclient": "9.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { createMiddleware, IntelephenseMiddleware } from './middleware';
import * as fs from 'fs-extra';

const PHP_LANGUAGE_ID = 'php';
const VERSION = '1.12.2';
const VERSION = '1.12.3';
const INDEXING_STARTED_NOTIFICATION = new NotificationType('indexingStarted');
const INDEXING_ENDED_NOTIFICATION = new NotificationType('indexingEnded');
const CANCEL_INDEXING_REQUEST = new RequestType('cancelIndexing');
Expand Down

0 comments on commit 632056e

Please sign in to comment.