Skip to content

Commit 65938a0

Browse files
authored
Update ReleaseNotes (microsoft#6007)
Added info about the `listDetails` experimental feature (copied from the original PR description). ###### Microsoft Reviewers: [Open in CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/microsoft/winget-cli/pull/6007)
1 parent f1c99e7 commit 65938a0

1 file changed

Lines changed: 29 additions & 1 deletion

File tree

doc/ReleaseNotes.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,39 @@
33
* Bumped the winget version to 1.28 to match the package version.
44
* Additional [options for limiting the size of log files](https://github.com/microsoft/winget-cli/blob/master/doc/Settings.md#file).
55

6-
# Feature: 'source edit'
6+
# New Feature: 'source edit'
77
New feature that adds an 'edit' subcommand to the 'source' command. This can be used to set an explicit source to be implicit and vice-versa. For example, with this feature you can make the 'winget-font' source an implicit source instead of explicit source.
88

99
To use the feature, try `winget source edit winget-font` to set the Explicit state to the default.
1010

11+
# New Experimental Feature: 'listDetails'
12+
13+
The new experimental feature `listDetails` enables a new option for the `list` command, `--details`. When supplied, the output is no longer a table view of the results but is instead a series of `show` like outputs drawing data from the installed item.
14+
15+
An example output for a single installed package is:
16+
```PowerShell
17+
> wingetdev list Microsoft.VisualStudio.2022.Enterprise --details
18+
Visual Studio Enterprise 2022 [Microsoft.VisualStudio.2022.Enterprise]
19+
Version: 17.14.21 (November 2025)
20+
Publisher: Microsoft Corporation
21+
Local Identifier: ARP\Machine\X86\875fed29
22+
Product Code: 875fed29
23+
Installer Category: exe
24+
Installed Scope: Machine
25+
Installed Location: C:\Program Files\Microsoft Visual Studio\2022\Enterprise
26+
Available Upgrades:
27+
winget [17.14.23]
28+
```
29+
30+
If sixels are enabled and supported by the terminal, an icon for the installed package will be shown.
31+
32+
To enable this feature, add the 'listDetails' experimental feature to your settings.
33+
```
34+
"experimentalFeatures": {
35+
"listDetails": true
36+
},
37+
```
38+
1139
## Bug Fixes
1240
* Portable Packages now use the correct directory separators regardless of which convention is used in the manifest
1341
* `--suppress-initial-details` now works with `winget configure test`

0 commit comments

Comments
 (0)