Skip to content

Commit 8281d35

Browse files
authored
Add mainstream release NOTE blocks (#9142)
1 parent 3311fc3 commit 8281d35

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

reference/docs-conceptual/learn/experimental-features.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Lists the currently available experimental features and how to use them.
3-
ms.date: 08/12/2022
3+
ms.date: 08/18/2022
44
title: Using Experimental Features in PowerShell
55
---
66
# Using Experimental Features in PowerShell
@@ -35,14 +35,14 @@ Legend
3535
| Name | 7.0 | 7.1 | 7.2 | 7.3 |
3636
| ---------------------------------------------------------- | :--------------: | :--------------: | :--------------: | :--------------: |
3737
| PSNullConditionalOperators | ✔️ | ✅ | | |
38-
| PSUnixFileStat (non-Windows only) | ✔️ | ✔️ | ✅ | |
38+
| PSUnixFileStat (non-Windows only) | ✔️ | ✅ | | |
3939
| Microsoft.PowerShell.Utility.PSManageBreakpointsInRunspace | ✔️ | ✔️ | ✅ | |
4040
| PSCultureInvariantReplaceOperator | | ✔️ | ✅ | |
4141
| PSNotApplyErrorActionToStderr | | ✔️ | ✅ | |
4242
| PSImplicitRemotingBatching | ✔️ | ✔️ | ❌ | |
4343
| PSCommandNotFoundSuggestion | ✔️ | ✔️ | ✔️ | ✔️ |
4444
| PSDesiredStateConfiguration.InvokeDscResource | ✔️ | ✔️ | ✔️ | ✔️ |
45-
| PSNativePSPathResolution | | ✔️ | ✔️ | ❌ |
45+
| PSNativePSPathResolution | | ✔️ | ✔️ | ❌ |
4646
| PSSubsystemPluginModel | | ✔️ | ✔️ | ✔️ |
4747
| PSNativeCommandArgumentPassing | | | ✔️ | ✔️ |
4848
| PSAnsiRenderingFileInfo | | | ✔️ | ✔️ |
@@ -162,6 +162,9 @@ gcs.
162162

163163
## PSCultureInvariantReplaceOperator
164164

165+
> [!NOTE]
166+
> This feature became mainstream in PowerShell 7.2.
167+
165168
When the left-hand operand in a `-replace` operator statement is not a string, that operand is
166169
converted to a string.
167170

@@ -414,6 +417,9 @@ operating system.
414417

415418
## PSNotApplyErrorActionToStderr
416419

420+
> [!NOTE]
421+
> This feature became mainstream in PowerShell 7.2.
422+
417423
When this experimental feature is enabled, error records redirected from native commands, like when
418424
using redirection operators (`2>&1`), are not written to the `$Error` variable and the preference
419425
variable `$ErrorActionPreference` does not affect the redirected output.
@@ -427,6 +433,9 @@ When a native command has a non-zero exit code, `$?` is set to `$false`. If the
427433

428434
## PSNullConditionalOperators
429435

436+
> [!NOTE]
437+
> This feature became mainstream in PowerShell 7.1.
438+
430439
Introduces new operators for Null conditional member access operators - `?.` and `?[]`. Null member
431440
access operators can be used on scalar types and array types. Return the value of the accessed
432441
member if the variable is not null. If the value of the variable is null, then return null.

0 commit comments

Comments
 (0)