diff --git a/CHANGELOG.md b/CHANGELOG.md index ec006a2..ace3ef8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.2.1 - 2021-08-20 + +- Set `untrustedWorkspaces.supported` to `false` in `capabilities`. Reasoning: Since this runs Psalm, and Psalm can be configured to execute code on your computer, you should avoid opening untrusted projects while using this plugin + # 2.2.0 - 2021-08-19 - Add better tracing/debug/logging diff --git a/package.json b/package.json index d17a2c9..ba493c6 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ } ], "license": "MIT", - "version": "2.2.0", + "version": "2.2.1", "publisher": "getpsalm", "categories": [ "Linters", @@ -49,8 +49,11 @@ "publish": "vsce publish" }, "capabilities": { - "supported":false, - "description": "Since this runs Psalm, and Psalm can be configured to execute code on your computer, you should avoid opening untrusted projects while using this plugin" + "untrustedWorkspaces": { + "supported":false, + "description": "Since this runs Psalm, and Psalm can be configured to execute code on your computer, you should avoid opening untrusted projects while using this plugin" + } + }, "extensionKind": ["workspace"], "contributes": {