Releases: PowerShell/PowerShellEditorServices
Releases · PowerShell/PowerShellEditorServices
v3.8.6
v3.8.6
Tuesday, May 23, 2023
- 🐛 💭 vscode-powershell #4582 - Ignore cancellation of completion requests.
- 🐛 📟 vscode-powershell #3991 - Fix the
TranscribeOnly
bug (take two).
v3.8.5
v3.8.5
Friday, May 12, 2023
- 🐛 📟 vscode-powershell #3991 - Fix disappearing output in PowerShell 5.1.
- 🐛 🔍 PowerShellEditorServices #2020 - Fix repeated failure to load DSC module.
v3.8.4
v3.8.4
Tuesday, April 25, 2023
- 🐛 🛫 vscode-powershell #4509 - Set session failure with reason when applicable.
- ✨ 📖 PowerShellEditorServices #2016 - Add guide to configure Neovim. (Thanks @csc027!)
v3.8.3
v3.8.3
Monday, March 27, 2023
- Documentation update and CI fix.
v3.8.2
v3.8.2
Thursday, March 09, 2023
- 🐛 🙏 vscode-powershell #4443 - Fix declaration detection for variables with type constraints.
- ✨ 🙏 vscode-powershell #3604 - Add document symbols for
#region
. - ✨ 🙏 PowerShellEditorServices #2000 - Code clean-up and fixing end-to-end tests.
- 🐛 🐢 PowerShellEditorServices #1998 - Support module-qualified calls for Pester keywords. (Thanks @fflaten!)
- 🐛 🙏 vscode-powershell #3192 - Fix New-EditorFile adding content in current file. (Thanks @fflaten!)
v3.8.1
v3.8.1
Monday, February 13, 2023
- ✨ 📁 vscode-powershell #2112 - Add
WorkspaceFolders
and use it when enumerating files. - ✨ 🙏 vscode-powershell #1481 - Count
${Function:My-Function}
as a function reference. - 🐛 🙏 vscode-powershell #1089 - Strip scope from function references.
- 🐛 🙏 PowerShellEditorServices #1989 - Keep only first assignment as declaration.
- ✨ 🐢 PowerShellEditorServices #1988 - Support Run/Debug tests in PSKoans-files. (Thanks @fflaten!)
v3.8.0
v3.8.0
Thursday, February 02, 2023
In the PR below we rewrote all the symbol logic. Classes (and their properties and
methods) are now proper symbols. Instead of a dozen similar-yet-different Abstract Symbol
Tree (AST) PowerShell script visitors handling different parts of each symbol-related
request, we have a single visitor that builds a cached dictionary of symbols for each
file. This was a massive simplification of the code that also leads to huge performance
improvements across all the symbol related features:
- Go to Symbol in Workspace
- Go to Symbol in Editor
- Go to Definition
- Go to References / CodeLens
- Outline view
Please try it out and give us feedback! There's plenty of room for more improvement, and
this will be much easier going forward.
- ✨ 🙏 PowerShellEditorServices #1984 - Integrating class symbol support.
v3.7.3
v3.7.3
Wednesday, January 04, 2023
- 🐛 🚂 vscode-powershell #4343 - Update VS Code shell integration script.
- ✨ 🙏 PowerShellEditorServices #1981 - Make
Set-ScriptExtent
not slow. - 🐛 🙏 PowerShellEditorServices #1959 - Use an empty array instead of
null
.
v3.7.2
v3.7.2
Tuesday, December 20, 2022
- 🐛 🔍 vscode-powershell #4174 - Fix several bugs in the debugger.
- #️⃣ 🙏 PowerShellEditorServices #1973 - Update
Microsoft.PowerShell.SDK
with workaround.
v3.7.1
v3.7.1
Monday, December 12, 2022
- 🐛 🚂 vscode-powershell #4212 - Fix
ShowHelpHandler
by running withRequiresForeground
.