Skip to content

Commit 834ccf1

Browse files
Merge pull request #4384 from PowerShell/release
Release `v2023.1.0`
2 parents 8e804e6 + bddad1f commit 834ccf1

File tree

2 files changed

+30
-6
lines changed

2 files changed

+30
-6
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,36 @@
11
# PowerShell Extension Release History
22

3+
## v2023.1.0
4+
### Wednesday, January 18, 2023
5+
6+
First stable release for the new year, includes a multitude of fixes for the debugger!
7+
Expanding variables with properties that are inaccessible no longer causes a short-circuit
8+
preventing the rest of the properties from being expanded, variable values whose expansion
9+
results in PowerShell code being executed now works as expected, and in general all the
10+
correct properties are now present. We look forward to adding the ability to view static
11+
and private fields in a future update.
12+
13+
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
14+
15+
- 🐛 👷 [vscode-powershell #4357](https://github.com/PowerShell/vscode-powershell/pull/4357) - Fix `@vscode/vsce` dependency after its rename.
16+
- 🐛 ✂️ [vscode-powershell #4346](https://github.com/PowerShell/vscode-powershell/pull/4347) - Fix class snippet (unnecessary space between `<` and `#`). (Thanks @ALiwoto!)
17+
- 🐛 🛫 [vscode-powershell #4329](https://github.com/PowerShell/vscode-powershell/pull/4331) - Automatically find "PowerShell Daily" at its common path.
18+
19+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices) v3.7.3
20+
21+
- 🐛 🚂 [vscode-powershell #4343](https://github.com/PowerShell/PowerShellEditorServices/pull/1982) - Update VS Code shell integration script.
22+
- ✨ 🙏 [PowerShellEditorServices #1981](https://github.com/PowerShell/PowerShellEditorServices/pull/1981) - Make `Set-ScriptExtent` not slow.
23+
- 🐛 🙏 [PowerShellEditorServices #1959](https://github.com/PowerShell/PowerShellEditorServices/pull/1980) - Use an empty array instead of `null`.
24+
- 🐛 🔍 [vscode-powershell #4174](https://github.com/PowerShell/PowerShellEditorServices/pull/1975) - Fix several bugs in the debugger.
25+
- #️⃣ 🙏 [PowerShellEditorServices #1973](https://github.com/PowerShell/PowerShellEditorServices/pull/1973) - Update `Microsoft.PowerShell.SDK` with workaround.
26+
327
## v2023.1.0-preview
428
### Wednesday, January 04, 2023
529

630
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
731

832
- 🐛 👷 [vscode-powershell #4357](https://github.com/PowerShell/vscode-powershell/pull/4357) - Fix `@vscode/vsce` dependency after its rename.
9-
- 🐛 ✂️ [vscode-powershell #4346](https://github.com/PowerShell/vscode-powershell/pull/4347) - fix class snippet (unnecessary space between `<` and `#`). (Thanks @ALiwoto!)
33+
- 🐛 ✂️ [vscode-powershell #4346](https://github.com/PowerShell/vscode-powershell/pull/4347) - Fix class snippet (unnecessary space between `<` and `#`). (Thanks @ALiwoto!)
1034

1135
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices) v3.7.3
1236

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "powershell-preview",
3-
"displayName": "PowerShell Preview",
2+
"name": "powershell",
3+
"displayName": "PowerShell",
44
"version": "2023.1.0",
5-
"preview": true,
5+
"preview": false,
66
"publisher": "ms-vscode",
7-
"description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!",
7+
"description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!",
88
"engines": {
99
"vscode": "^1.67.0"
1010
},
@@ -23,7 +23,7 @@
2323
"PowerShell",
2424
"pwsh"
2525
],
26-
"icon": "media/PowerShell_Preview_Icon.png",
26+
"icon": "media/PowerShell_Icon.png",
2727
"galleryBanner": {
2828
"color": "#ACD1EC",
2929
"theme": "light"

0 commit comments

Comments
 (0)