Skip to content

Commit 08b652c

Browse files
committed
Correct casing of "WinGet" + fix code indentation + add info about UUID v7 from .Net 9
1 parent 15f435c commit 08b652c

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-75.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Many thanks to **@ArmaanMcleod** and others for all their work to improve tab co
120120
@jborean93!)
121121
- Add telemetry to check for specific tags when importing a module ([#20371][20371])
122122
- Add `PSAdapter` and `ConsoleGuiTools` to module load telemetry allowlist ([#20641][20641])
123-
- Add Winget module to track usage ([#21040][21040])
123+
- Add WinGet module to track usage ([#21040][21040])
124124
- Ensure the filename is not null when logging WDAC ETW events ([#20910][20910]) (Thanks
125125
@jborean93!)
126126
- Fix four regressions introduced by the WDAC logging feature ([#20913][20913])
@@ -134,6 +134,13 @@ Many thanks to **@ArmaanMcleod** and others for all their work to improve tab co
134134
namespaces ([#21162][21162])
135135
- Handle global tool specially when prepending `$PSHome` to PATH ([#24228][24228])
136136

137+
## New features inherited from .NET 9
138+
139+
New features in .NET 9 can be found here: [https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-9/overview](https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-9/overview).
140+
Here are some highlights that might be good to know about for PowerShell users:
141+
142+
- UUID v7 support with [`[guid]::CreateVersion7()`](100)
143+
137144
## Experimental features
138145

139146
The following experimental features were converted to mainstream features in
@@ -190,14 +197,14 @@ $tests = @{
190197
$ms = (Measure-Command { & $test.Value -Count $_ }).TotalMilliseconds
191198
192199
[pscustomobject]@{
193-
CollectionSize = $_
194-
Test = $test.Key
195-
TotalMilliseconds = [math]::Round($ms, 2)
196-
}
200+
CollectionSize = $_
201+
Test = $test.Key
202+
TotalMilliseconds = [math]::Round($ms, 2)
203+
}
197204
198205
[GC]::Collect()
199-
[GC]::WaitForPendingFinalizers()
200-
}
206+
[GC]::WaitForPendingFinalizers()
207+
}
201208
202209
$groupResult = $groupResult | Sort-Object TotalMilliseconds
203210
$groupResult | Select-Object *, @{
@@ -249,7 +256,7 @@ CollectionSize Test TotalMilliseconds RelativeSpeed
249256

250257
<!-- end of content -->
251258
<!-- reference links -->
252-
[chg]: https://github.com/PowerShell/PowerShell/blob/master/CHANGELOG/preview.md
259+
[chg]: https://github.com/PowerShell/PowerShell/blob/master/CHANGELOG/7.5.md
253260

254261
[01]: ../learn/experimental-features.md#psnativewindowstildeexpansion
255262
[02]: ../learn/experimental-features.md#pscommandnotfoundsuggestion

0 commit comments

Comments
 (0)