Skip to content

Commit 423950d

Browse files
authored
Merge pull request #98 from TysonAndre/release-4.0.1
Release vscode-php-phan 4.0.1
2 parents 3998483 + 4ac83d5 commit 423950d

File tree

7 files changed

+311
-179
lines changed

7 files changed

+311
-179
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ node_modules/
33
vendor/
44
typings/
55
.DS_Store
6+
.npmrc
67
.*.swp
78
.*.swo
89
*.vsix

NEWS.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
vscode-php-phan NEWS
22
====================
33

4+
### 4.0.1 (2021-06-26)
5+
6+
- Update Phan from 4.0.4 to 4.0.7
7+
48
### 4.0.0 (2021-04-17)
59

610
- Prevent the settings `phan.phpExecutablePath`, `phan.phanScriptPath`, `phan.analyzedProjectDirectory`, `phan.additionalCLIFlags`, and `phan.connectToServerWithStdio` from being overridden in VS Code workspace or folder settings. (i.e. configure them with `"scope": "machine"` for https://github.com/microsoft/vscode/blob/1.55.2/src/vs/workbench/api/common/configurationExtensionPoint.ts#L50-L55) (CVE-2021-31416)
@@ -9,7 +13,7 @@ vscode-php-phan NEWS
913

1014
The VS code extension version can be [downgraded to 3.0.0](https://code.visualstudio.com/updates/v1_30#_install-previous-versions) if you rely on those workspace settings.
1115
- Update Phan from 4.0.2 to 4.0.4
12-
- See [Phan's NEWS](https://github.com/phan/phan/blob/4.0.2/NEWS.md) for more details.
16+
- See [Phan's NEWS](https://github.com/phan/phan/blob/4.0.4/NEWS.md) for more details.
1317

1418
### 3.0.0 (2021-01-09)
1519

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ You may want to disable VS Code's built-in IntelliSense for PHP by setting `php.
139139

140140
## Release History
141141

142+
### 4.0.1 (2021-06-26)
143+
144+
- Update Phan from 4.0.4 to 4.0.7
145+
142146
### 4.0.0 (2021-04-17)
143147

144148
- Prevent the settings `phan.phpExecutablePath`, `phan.phanScriptPath`, `phan.analyzedProjectDirectory`, `phan.additionalCLIFlags`, and `phan.connectToServerWithStdio` from being overridden in VS Code workspace or folder settings. (i.e. configure them with `"scope": "machine"` for https://github.com/microsoft/vscode/blob/1.55.2/src/vs/workbench/api/common/configurationExtensionPoint.ts#L50-L55) (CVE-2021-31416)
@@ -147,7 +151,7 @@ You may want to disable VS Code's built-in IntelliSense for PHP by setting `php.
147151

148152
The VS code extension version can be [downgraded to 3.0.0](https://code.visualstudio.com/updates/v1_30#_install-previous-versions) if you rely on the ability to set those workspace settings.
149153
- Update Phan from 4.0.2 to 4.0.4
150-
- See [Phan's NEWS](https://github.com/phan/phan/blob/4.0.2/NEWS.md) for more details.
154+
- See [Phan's NEWS](https://github.com/phan/phan/blob/4.0.4/NEWS.md) for more details.
151155

152156
### 3.0.0 (2021-01-09)
153157

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
},
1111
"require": {
1212
"php": "^7.2.0",
13-
"phan/phan": "4.0.4"
13+
"phan/phan": "4.0.7"
1414
}
1515
}

0 commit comments

Comments
 (0)