Skip to content

Commit

Permalink
1.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewburn committed Dec 10, 2023
1 parent 4485d58 commit 987fc96
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 54 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [1.10.2 - 2023-12-10]

#### Fixed
- Crash when `self` not used inside class.
- False cannot use parent in class with no parent diagnostics.
- Undefined class not reported when using `ClassName::class`.
- Type inference when destructuring array shape with numeric or no keys.

## [1.10.1 - 2023-11-13]

#### Fixed
Expand Down
99 changes: 48 additions & 51 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.10.1",
"version": "1.10.2",
"publisher": "bmewburn",
"engines": {
"vscode": "^1.79.0"
Expand Down Expand Up @@ -832,7 +832,7 @@
},
"dependencies": {
"fs-extra": "~11.1.1",
"intelephense": "1.10.1",
"intelephense": "1.10.2",
"semver": "~7.5.4",
"vscode-languageclient": "~8.2.0-next.3"
},
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.10.1';
const VERSION = '1.10.2';
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 987fc96

Please sign in to comment.