Skip to content

Commit

Permalink
1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewburn committed Jul 3, 2024
1 parent c87bf99 commit 6baede5
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 22 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.11.2 - 2024-07-03] **Pre-Release**

#### Fixed
- Type inference for properties with default initialisers.
- Performance degradation in code with many array read and writes.
- False undefined variable after `while` loop with condition expression that resolves to `true` literal type.
- Stack overflow when applying large text edits.

## [1.11.1 - 2024-07-02] **Pre-Release**

#### Changed
Expand Down
36 changes: 18 additions & 18 deletions package-lock.json

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

6 changes: 3 additions & 3 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.11.1",
"version": "1.11.2",
"publisher": "bmewburn",
"engines": {
"vscode": "^1.82.0"
Expand Down Expand Up @@ -485,7 +485,7 @@
"k&r"
],
"enumDescriptions": [
"PHP-FIG PER style. A mix of Allman and K&R. https://www.php-fig.org/per/coding-style/",
"PHP-FIG PER-CS style. A mix of Allman and K&R. https://www.php-fig.org/per/coding-style/",
"Allman. Opening brace on the next line.",
"K&R (1TBS). Opening brace on the same line."
],
Expand Down Expand Up @@ -856,7 +856,7 @@
},
"dependencies": {
"fs-extra": "~11.2.0",
"intelephense": "1.11.1",
"intelephense": "1.11.2",
"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.11.1';
const VERSION = '1.11.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 6baede5

Please sign in to comment.