diff --git a/CHANGELOG.md b/CHANGELOG.md index ee05281..3be9070 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,42 @@ +# 2.1.0 - 2021-08-14 + +- Fixes "Support for absolute paths for Psalm Client Script Path and Psalm Script Path" (#71) [@ thomasbley] +- Deprecates `psalmClientScriptPath` setting in favor of `psalmScriptPath` since `psalmClientScriptPath` fell back to `psalmScriptPath` anyways + +# 2.0.6 - 2021-08-13 + +- Fixes "Set vscode minimum version to 1.57.1" (#77) [@thomasbley] + +# 2.0.5 - 2021-08-03 + +- Fixes fix "--use-ini-defaults" option feature (typo?) (#70) [@yaegassy] + +# 2.0.4 - 2021-08-02 + +- Fix settings pane to be more graphical +- Mock StreamWriter so that logging of output from language server actually logs in verbose mode +- Fix #30 to not blow up because of vimeo/psalm#6007 +- Add setting to "Index" workspace (Just calls same method as in #30 for now) +- Add support for onSave, onOpen, onClose (see vimeo/psalm#6010) +- Add support for workspace/didChangeWatchedFiles (see vimeo/psalm#6014) Fixes #32 +- Update dependencies +- Look at #36 +- Look at #11 +- Run prettier on save (vscode for this project only) +- Bundle Extension using webpack (https://code.visualstudio.com/api/working-with-extensions/bundling-extension) +- While running Psalm should not show status bar message (Which is useless and takes up space) + +# 1.2.1 - 2020-04-21 + +- Added help links to error and warnings codes using new command line options from the Psalm Language Server. +- Added new configuration options. +- Added status to the VSCode status bar. +- Various bug fixes. + # 0.1.0 - 2018-10-19 -First version released +- First version released # 0.5.0 - 2018-11-19 -Windows support added \ No newline at end of file +- Windows support added diff --git a/README.md b/README.md index 3198c0a..57c0ae5 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@ Visual Studio Code plugin for Psalm. ## Features -- Runs [Psalm's analysis](https://getpsalm.org) when opening and saving files using the Language Server Protocol for communication. +- Runs [Psalm's analysis](https://getpsalm.org) when opening and saving files using the Language Server Protocol for communication. ## Known Security Issues -Since this runs Psalm, and Psalm can be configured to execute code on your computer, you should avoid opening untrusted projects whilee using this plugin. +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. ## Contributing diff --git a/package.json b/package.json index 643c962..c93baab 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ } ], "license": "MIT", - "version": "2.0.6", + "version": "2.1.0", "publisher": "getpsalm", "categories": [ "Linters",