Releases: microsoft/winget-cli
Windows Package Manager 1.9.25180
This release represents our first stable Windows Package Manager 1.9 build for Windows 10 (1809+), and Windows 11.
This release includes the ability to enable experimental features unless blocked by Group Policy Objects (GPO)
Sixel support is here to display icons and a new progress visualization. To try out this new feature, you must be using a terminal that supports sixels, such as the latest Windows Terminal Preview build. To enable this feature, include the following snipping in your settings file:
{
"$schema": "https://aka.ms/winget-settings.schema.json",
"visual": {
"enableSixels": true,
"progressBar": "sixel"
}
}
WinGet Configuration files with DSC Resources requiring elevation can now be handled more gracefully. The "Configure Self Elevation" experimental feature can be enabled with the following snippet in your settings file:
{
"$schema": "https://aka.ms/winget-settings.schema.json",
"experimentalFeatures": {
"configureSelfElevate": true
}
}
Use "securityContext: elevated" under "directives:" for any resources requiring administrator. WinGet will trigger a single User Account Control (UAC) prompt when the configuration is run under user context. Resources requiring elevation are run elevated, and the rest are run in user context. The following example shows how the .NET Tutorial - Hello World in 5 minutes will be updated to provide a better user experience.
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
properties:
resources:
- resource: Microsoft.WinGet.DSC/WinGetPackage
id: install-dotnet8-SDK
directives:
description: Install .NET 8 SDK
securityContext: elevated
settings:
id: Microsoft.DotNet.SDK.8
source: winget
- resource: Microsoft.WinGet.DSC/WinGetPackage
id: install-vs-code
directives:
description: Install Visual Studio Code
settings:
id: Microsoft.VisualStudioCode
source: winget
- resource: Microsoft.VSCode.DSC/VSCodeExtension
id: install-csharp-dev-kit
dependsOn:
- install-vs-code
directives:
description: Install C# Dev Kit
allowPrerelease: true
settings:
name: ms-dotnettools.csdevkit
exist: true
configurationVersion: 0.2.0
What's Changed
- Increment version to 1.9 by @ryfu-msft in #4522
- Update localization pipeline to new auth type by @florelis in #4532
- Fix loc pipeline service connection by @florelis in #4533
- Enable Microsoft Entra Id auth for displaycatalog and use enterprise offline sku by @yao-msft in #4544
- Add tests for configure mixed elevation by @ryfu-msft in #4487
- Make v2 index EF enabled by default by @JohnMcPMS in #4553
- Trim Version When Parsing by @Trenly in #4554
- Add Tests for Parsing Versions with Whitespace by @Trenly in #4557
- Winget Repair - Eliminate installer type mapping for MSI/WIX and MSIX NonStore ,code refactoring & E2E Test Coverage by @Madhusudhan-MSFT in #4534
- Update Pipeline Component Versions by @Trenly in #4560
- Add support for extracting archives using tar.exe by @ryfu-msft in #4541
- Make SxS stable by @JohnMcPMS in #4563
- Use digest verification APIs for MSIX when available by @JohnMcPMS in #4564
- Improve Support for Versions with Preambles by @Trenly in #4558
- Launch COM server for elevated use via packaged path by @JohnMcPMS in #4567
- Fix export manifest with multiple locales by @yao-msft in #4569
- Configuration history support by @JohnMcPMS in #4552
- Make Store package download stable by @yao-msft in #4570
- Update expired certificate with incoming one by @JohnMcPMS in #4568
- Apply latest patch for localized strings by @ryfu-msft in #4578
- Update winget server com security by @yao-msft in #4577
- Component Governance fix: Update libyaml by @yao-msft in #4583
- Update valijson to v1.0.2 by @yao-msft in #4588
- Use atomic functions to ensure single initialization of tracking catalog by @JohnMcPMS in #4592
- Standardize line endings in expect.txt by @Trenly in #4595
- Fix service connection for ESRP codesigning for utils nuget package by @ryfu-msft in #4597
- Configuration apply queueing by @JohnMcPMS in #4590
- Ensure Agreements don't terminate in dependency flow by @Trenly in #4594
- Remove libyaml Dockerfile by @florelis in #4604
- Update README.md and Pull Request and Issue templates by @skanda890 in #4599
- Attempt to update dependencies when not registered by @JohnMcPMS in #4606
- Remove experimental from index v2 by @JohnMcPMS in #4607
- ARM64 build and test fixes by @JohnMcPMS in #4608
- Use shared manifest in COM server by @JohnMcPMS in #4605
- Add AnyCPU to .gitignore by @JohnMcPMS in #4621
- Fix for attempted use of capability API before it was introduced by @JohnMcPMS in #4620
- Fix Component Governance by @msftrubengu in #4629
- Update documentation errors by @Trenly in #4649
- Update Zlib library dependency for PureLib by @ryfu-msft in #4654
- update curl vcpkg version to 8.8.0 by @ryfu-msft in #4655
- Pull in latest SFSClient by @ryfu-msft in #4670
- Remove prerelease, update icon uri, and clean up for PowerShell modules by @ryfu-msft in #4672
- Use ContinueWith rather than finally for coroutine result types by @JohnMcPMS in #4669
- Store configuration status and enable remote watch events by @JohnMcPMS in #4647
- Update README.md by @skanda890 in #4687
- Update metadata collection tooling by @JohnMcPMS in #4688
- Skip uninstall attempt when installed package version is not present by @JohnMcPMS in #4685
- Upgrade to check-spelling v0.0.22 by @jsoref in #3896
- Fix downloader selection by @florelis in #4696
- Split testing into separate pipeline job by @JohnMcPMS in #4675
- Update NOTICE by @JohnMcPMS in #4699
- Delete CodeCoverage and WinGetUtil NuGet pipelines by @florelis in #4708
- WinRT activation shim for Microsoft.Management.Deployment by @JohnMcPMS in #4709
- Add missing solution dependency by @JohnMcPMS in #4717
- Fix the actual problem with the build... by @JohnMcPMS in #4719
- Send unit telemetry on success by @JohnMcPMS in #4720
- Pull in latest SFS client by @ryfu-msft in #4725
- PowerShell Help for Microsoft.WinGet.Client by @denelon in #4674
- Create public sample by @JohnMcPMS in #4734
- Generate Microsoft.WinGet.Client help docs in cmdlet output by @ryfu-msft in #4731
- Remove preference for "installed" installer type by @JohnMcPMS in #4740
- Update curl to 8.9.1 by @ryfu-msft in #4745
- Fix Reset-WinGetSource behavior by @ryfu-msft in #4732
- External HR error message support by @JohnMcPMS in #4746
- Generate test certificates in pipeline by @florelis in #4747
- [Spec] Windows Package Manager Repair functionality Design spec by @Madhusudhan-MSFT in #3943
- Update build status badge by @JohnMcPMS in https://gi...
Windows Package Manager 1.9.25170
This release represents our second Windows Package Manager 1.9 release candidate build for Windows 10 (1809+), and Windows 11.
This release includes the ability to enable experimental features unless blocked by Group Policy Objects (GPO)
Sixel support is here to display icons and a new progress visualization. To try out this new feature, you must be using a terminal that supports sixels, such as the latest Windows Terminal Preview build. To enable this feature, include the following snipping in your settings file:
{
"$schema": "https://aka.ms/winget-settings.schema.json",
"visual": {
"enableSixels": true,
"progressBar": "sixel"
}
}
WinGet Configuration files with DSC Resources requiring elevation can now be handled more gracefully. The "Configure Self Elevation" experimental feature can be enabled with the following snippet in your settings file:
{
"$schema": "https://aka.ms/winget-settings.schema.json",
"experimentalFeatures": {
"configureSelfElevate": true
}
}
Use "securityContext: elevated" under "directives:" for any resources requiring administrator. WinGet will trigger a single User Account Control (UAC) prompt when the configuration is run under user context. Resources requiring elevation are run elevated, and the rest are run in user context. The following example shows how the .NET Tutorial - Hello World in 5 minutes will be updated to provide a better user experience.
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
properties:
resources:
- resource: Microsoft.WinGet.DSC/WinGetPackage
id: install-dotnet8-SDK
directives:
description: Install .NET 8 SDK
securityContext: elevated
settings:
id: Microsoft.DotNet.SDK.8
source: winget
- resource: Microsoft.WinGet.DSC/WinGetPackage
id: install-vs-code
directives:
description: Install Visual Studio Code
settings:
id: Microsoft.VisualStudioCode
source: winget
- resource: Microsoft.VSCode.DSC/VSCodeExtension
id: install-csharp-dev-kit
dependsOn:
- install-vs-code
directives:
description: Install C# Dev Kit
allowPrerelease: true
settings:
name: ms-dotnettools.csdevkit
exist: true
configurationVersion: 0.2.0
What's Changed
- Increment version to 1.9 by @ryfu-msft in #4522
- Update localization pipeline to new auth type by @florelis in #4532
- Fix loc pipeline service connection by @florelis in #4533
- Enable Microsoft Entra Id auth for displaycatalog and use enterprise offline sku by @yao-msft in #4544
- Add tests for configure mixed elevation by @ryfu-msft in #4487
- Make v2 index EF enabled by default by @JohnMcPMS in #4553
- Trim Version When Parsing by @Trenly in #4554
- Add Tests for Parsing Versions with Whitespace by @Trenly in #4557
- Winget Repair - Eliminate installer type mapping for MSI/WIX and MSIX NonStore ,code refactoring & E2E Test Coverage by @Madhusudhan-MSFT in #4534
- Update Pipeline Component Versions by @Trenly in #4560
- Add support for extracting archives using tar.exe by @ryfu-msft in #4541
- Make SxS stable by @JohnMcPMS in #4563
- Use digest verification APIs for MSIX when available by @JohnMcPMS in #4564
- Improve Support for Versions with Preambles by @Trenly in #4558
- Launch COM server for elevated use via packaged path by @JohnMcPMS in #4567
- Fix export manifest with multiple locales by @yao-msft in #4569
- Configuration history support by @JohnMcPMS in #4552
- Make Store package download stable by @yao-msft in #4570
- Update expired certificate with incoming one by @JohnMcPMS in #4568
- Apply latest patch for localized strings by @ryfu-msft in #4578
- Update winget server com security by @yao-msft in #4577
- Component Governance fix: Update libyaml by @yao-msft in #4583
- Update valijson to v1.0.2 by @yao-msft in #4588
- Use atomic functions to ensure single initialization of tracking catalog by @JohnMcPMS in #4592
- Standardize line endings in expect.txt by @Trenly in #4595
- Fix service connection for ESRP codesigning for utils nuget package by @ryfu-msft in #4597
- Configuration apply queueing by @JohnMcPMS in #4590
- Ensure Agreements don't terminate in dependency flow by @Trenly in #4594
- Remove libyaml Dockerfile by @florelis in #4604
- Update README.md and Pull Request and Issue templates by @skanda890 in #4599
- Attempt to update dependencies when not registered by @JohnMcPMS in #4606
- Remove experimental from index v2 by @JohnMcPMS in #4607
- ARM64 build and test fixes by @JohnMcPMS in #4608
- Use shared manifest in COM server by @JohnMcPMS in #4605
- Add AnyCPU to .gitignore by @JohnMcPMS in #4621
- Fix for attempted use of capability API before it was introduced by @JohnMcPMS in #4620
- Fix Component Governance by @msftrubengu in #4629
- Update documentation errors by @Trenly in #4649
- Update Zlib library dependency for PureLib by @ryfu-msft in #4654
- update curl vcpkg version to 8.8.0 by @ryfu-msft in #4655
- Pull in latest SFSClient by @ryfu-msft in #4670
- Remove prerelease, update icon uri, and clean up for PowerShell modules by @ryfu-msft in #4672
- Use ContinueWith rather than finally for coroutine result types by @JohnMcPMS in #4669
- Store configuration status and enable remote watch events by @JohnMcPMS in #4647
- Update README.md by @skanda890 in #4687
- Update metadata collection tooling by @JohnMcPMS in #4688
- Skip uninstall attempt when installed package version is not present by @JohnMcPMS in #4685
- Upgrade to check-spelling v0.0.22 by @jsoref in #3896
- Fix downloader selection by @florelis in #4696
- Split testing into separate pipeline job by @JohnMcPMS in #4675
- Update NOTICE by @JohnMcPMS in #4699
- Delete CodeCoverage and WinGetUtil NuGet pipelines by @florelis in #4708
- WinRT activation shim for Microsoft.Management.Deployment by @JohnMcPMS in #4709
- Add missing solution dependency by @JohnMcPMS in #4717
- Fix the actual problem with the build... by @JohnMcPMS in #4719
- Send unit telemetry on success by @JohnMcPMS in #4720
- Pull in latest SFS client by @ryfu-msft in #4725
- PowerShell Help for Microsoft.WinGet.Client by @denelon in #4674
- Create public sample by @JohnMcPMS in #4734
- Generate Microsoft.WinGet.Client help docs in cmdlet output by @ryfu-msft in #4731
- Remove preference for "installed" installer type by @JohnMcPMS in #4740
- Update curl to 8.9.1 by @ryfu-msft in #4745
- Fix Reset-WinGetSource behavior by @ryfu-msft in #4732
- External HR error message support by @JohnMcPMS in #4746
- Generate test certificates in pipeline by @florelis in #4747
- [Spec] Windows Package Manager Repair functionality Design spec by @Madhusudhan-MSFT in #3943
- Update build status badge by @JohnMcPMS...
Windows Package Manager 1.9.2507
Warning
We've found a problem with enabling WinGet Configuration and our Sixel implementation.
We will be cutting a new release candidate to address these issues.
This release represents our first Windows Package Manager 1.9 release candidate build for Windows 10 (1809+), and Windows 11.
This release includes the ability to enable experimental features unless blocked by Group Policy Objects (GPO)
Features
- Experimental Support for Sixel
- Support for portables with binary dependencies
- Entra ID auth support
- V2 Index
- Security Improvements
- Detailed help documentation for powershell cmdlets
What's Changed
- Increment version to 1.9 by @ryfu-msft in #4522
- Update localization pipeline to new auth type by @florelis in #4532
- Fix loc pipeline service connection by @florelis in #4533
- Enable Microsoft Entra Id auth for displaycatalog and use enterprise offline sku by @yao-msft in #4544
- Add tests for configure mixed elevation by @ryfu-msft in #4487
- Make v2 index EF enabled by default by @JohnMcPMS in #4553
- Trim Version When Parsing by @Trenly in #4554
- Add Tests for Parsing Versions with Whitespace by @Trenly in #4557
- Winget Repair - Eliminate installer type mapping for MSI/WIX and MSIX NonStore ,code refactoring & E2E Test Coverage by @Madhusudhan-MSFT in #4534
- Update Pipeline Component Versions by @Trenly in #4560
- Add support for extracting archives using tar.exe by @ryfu-msft in #4541
- Make SxS stable by @JohnMcPMS in #4563
- Use digest verification APIs for MSIX when available by @JohnMcPMS in #4564
- Improve Support for Versions with Preambles by @Trenly in #4558
- Launch COM server for elevated use via packaged path by @JohnMcPMS in #4567
- Fix export manifest with multiple locales by @yao-msft in #4569
- Configuration history support by @JohnMcPMS in #4552
- Make Store package download stable by @yao-msft in #4570
- Update expired certificate with incoming one by @JohnMcPMS in #4568
- Apply latest patch for localized strings by @ryfu-msft in #4578
- Update winget server com security by @yao-msft in #4577
- Component Governance fix: Update libyaml by @yao-msft in #4583
- Update valijson to v1.0.2 by @yao-msft in #4588
- Use atomic functions to ensure single initialization of tracking catalog by @JohnMcPMS in #4592
- Standardize line endings in expect.txt by @Trenly in #4595
- Fix service connection for ESRP codesigning for utils nuget package by @ryfu-msft in #4597
- Configuration apply queueing by @JohnMcPMS in #4590
- Ensure Agreements don't terminate in dependency flow by @Trenly in #4594
- Remove libyaml Dockerfile by @florelis in #4604
- Update README.md and Pull Request and Issue templates by @skanda890 in #4599
- Attempt to update dependencies when not registered by @JohnMcPMS in #4606
- Remove experimental from index v2 by @JohnMcPMS in #4607
- ARM64 build and test fixes by @JohnMcPMS in #4608
- Use shared manifest in COM server by @JohnMcPMS in #4605
- Add AnyCPU to .gitignore by @JohnMcPMS in #4621
- Fix for attempted use of capability API before it was introduced by @JohnMcPMS in #4620
- Fix Component Governance by @msftrubengu in #4629
- Update documentation errors by @Trenly in #4649
- Update Zlib library dependency for PureLib by @ryfu-msft in #4654
- update curl vcpkg version to 8.8.0 by @ryfu-msft in #4655
- Pull in latest SFSClient by @ryfu-msft in #4670
- Remove prerelease, update icon uri, and clean up for PowerShell modules by @ryfu-msft in #4672
- Use ContinueWith rather than finally for coroutine result types by @JohnMcPMS in #4669
- Store configuration status and enable remote watch events by @JohnMcPMS in #4647
- Update README.md by @skanda890 in #4687
- Update metadata collection tooling by @JohnMcPMS in #4688
- Skip uninstall attempt when installed package version is not present by @JohnMcPMS in #4685
- Upgrade to check-spelling v0.0.22 by @jsoref in #3896
- Fix downloader selection by @florelis in #4696
- Split testing into separate pipeline job by @JohnMcPMS in #4675
- Update NOTICE by @JohnMcPMS in #4699
- Delete CodeCoverage and WinGetUtil NuGet pipelines by @florelis in #4708
- WinRT activation shim for Microsoft.Management.Deployment by @JohnMcPMS in #4709
- Add missing solution dependency by @JohnMcPMS in #4717
- Fix the actual problem with the build... by @JohnMcPMS in #4719
- Send unit telemetry on success by @JohnMcPMS in #4720
- Pull in latest SFS client by @ryfu-msft in #4725
- PowerShell Help for Microsoft.WinGet.Client by @denelon in #4674
- Create public sample by @JohnMcPMS in #4734
- Generate Microsoft.WinGet.Client help docs in cmdlet output by @ryfu-msft in #4731
- Remove preference for "installed" installer type by @JohnMcPMS in #4740
- Update curl to 8.9.1 by @ryfu-msft in #4745
- Fix Reset-WinGetSource behavior by @ryfu-msft in #4732
- External HR error message support by @JohnMcPMS in #4746
- Generate test certificates in pipeline by @florelis in #4747
- [Spec] Windows Package Manager Repair functionality Design spec by @Madhusudhan-MSFT in #3943
- Update build status badge by @JohnMcPMS in #4758
- Run test tasks if succeededOrFailed by @JohnMcPMS in #4759
- Binskim error EnableCriticalCompilerWarnings by @ryfu-msft in #4764
- Run Unpackaged Unit Tests with winget-installed PsExec by @ryfu-msft in #4760
- Spelling by @JohnMcPMS in #4772
- Updates to PowerShell help docs by @mdanish-kh in #4781
- Repair-WinGetPackageManager improvements by @JohnMcPMS in #4774
- Allow for smaller configuration outputs by @JohnMcPMS in #4754
- Add diagnostics to dynamic factory by @JohnMcPMS in #4757
- PS Gallery tests are unreliable by @JohnMcPMS in #4791
- Add pwsh support for trust level and explicit by @ryfu-msft in #4750
- Updates to the PowerShell modules by @kilasuit in #4716
- Microsoft.WinGet.DSC improvements (and breaking change) by @JohnMcPMS in #4795
- Small build changes by @florelis in #4807
- Add initial 1.9 manifest by @ryfu-msft in #4811
- Fix Component Governance issues by @florelis in #4814
- Fix grammatical issues in Bug Report.yml, and Update dependencies by @skanda890 in #4788
- upgrading to similar-issues-ai by @denelon in https://github.c...
Windows Package Manager 1.9.2411-preview
This is the sixth development build after the Windows Package Manager 1.8 build for Windows 10(1809+) and Windows 11.
This build will be released to Windows Insider Dev builds and Windows Package Manager Insiders.
Experimental features are enabled in this release. Run winget features
to see which experimental features are enabled or disabled. Add the following to your settings (winget settings
) file to enable the experimental features.
"experimentalFeatures": {
"configureSelfElevate": true,
"configureExport": true
}
What's Changed
- Split testing into separate pipeline job by @JohnMcPMS in #4675
- Update NOTICE by @JohnMcPMS in #4699
- Delete CodeCoverage and WinGetUtil NuGet pipelines by @florelis in #4708
- WinRT activation shim for Microsoft.Management.Deployment by @JohnMcPMS in #4709
- Add missing solution dependency by @JohnMcPMS in #4717
- Fix the actual problem with the build... by @JohnMcPMS in #4719
- Send unit telemetry on success by @JohnMcPMS in #4720
- Pull in latest SFS client by @ryfu-msft in #4725
- PowerShell Help for Microsoft.WinGet.Client by @denelon in #4674
- Create public sample by @JohnMcPMS in #4734
- Generate Microsoft.WinGet.Client help docs in cmdlet output by @ryfu-msft in #4731
- Remove preference for "installed" installer type by @JohnMcPMS in #4740
- Update curl to 8.9.1 by @ryfu-msft in #4745
- Fix Reset-WinGetSource behavior by @ryfu-msft in #4732
- External HR error message support by @JohnMcPMS in #4746
- Generate test certificates in pipeline by @florelis in #4747
Full Changelog: release-v1.9.2151-preview...release-v1.9.2411-preview
Windows Package Manager 1.9.2151-preview
This is the fifth development build after the Windows Package Manager 1.8 build for Windows 10(1809+) and Windows 11.
This build will be released to Windows Insider Dev builds and Windows Package Manager Insiders.
Experimental features are enabled in this release. Run winget features
to see which experimental features are enabled or disabled. Add the following to your settings (winget settings
) file to enable the experimental features.
"experimentalFeatures": {
"configureSelfElevate": true,
"configureExport": true
}
What's Changed
- Update valijson to v1.0.2 by @yao-msft in #4588
- Use atomic functions to ensure single initialization of tracking catalog by @JohnMcPMS in #4592
- Standardize line endings in expect.txt by @Trenly in #4595
- Fix service connection for ESRP codesigning for utils nuget package by @ryfu-msft in #4597
- Configuration apply queueing by @JohnMcPMS in #4590
- Ensure Agreements don't terminate in dependency flow by @Trenly in #4594
- Remove libyaml Dockerfile by @florelis in #4604
- Update README.md and Pull Request and Issue templates by @skanda890 in #4599
- Attempt to update dependencies when not registered by @JohnMcPMS in #4606
- Remove experimental from index v2 by @JohnMcPMS in #4607
- ARM64 build and test fixes by @JohnMcPMS in #4608
- Use shared manifest in COM server by @JohnMcPMS in #4605
- Add AnyCPU to .gitignore by @JohnMcPMS in #4621
- Fix for attempted use of capability API before it was introduced by @JohnMcPMS in #4620
- Fix Component Governance by @msftrubengu in #4629
- Update documentation errors by @Trenly in #4649
- Update Zlib library dependency for PureLib by @ryfu-msft in #4654
- update curl vcpkg version to 8.8.0 by @ryfu-msft in #4655
- Pull in latest SFSClient by @ryfu-msft in #4670
- Remove prerelease, update icon uri, and clean up for PowerShell modules by @ryfu-msft in #4672
- Use ContinueWith rather than finally for coroutine result types by @JohnMcPMS in #4669
- Store configuration status and enable remote watch events by @JohnMcPMS in #4647
- Update README.md by @skanda890 in #4687
- Update metadata collection tooling by @JohnMcPMS in #4688
- Skip uninstall attempt when installed package version is not present by @JohnMcPMS in #4685
- Upgrade to check-spelling v0.0.22 by @jsoref in #3896
- Fix downloader selection by @florelis in #4696
New Contributors
- @skanda890 made their first contribution in #4599
Full Changelog: release-v1.9.1792-preview...release-v1.9.2151-preview
Windows Package Manager 1.8.1911
This is the second stable release of Windows Package Manager 1.8 for Windows 10 (1809+), and Windows 11.
Experimental features have been disabled in this release.
WinGet v1.8 will be the last stable version of WinGet with experimental features disabled. Starting in WinGet v1.9, stable releases will include the ability to enable experimental features unless blocked by Group Policy Objects (GPO).
Features
- HTTP Proxy support
- WinGet Configuration Mixed Elevation Mode support via COM
- WinGet Package Icon support via COM
- PowerShell Modules work on ARM64
- Control Characters shouldn't be allowed in user generated content
- Downloading MSStore packages
- Extracting archives using tar.exe
- V2 Index
What's Changed
- Remove experimental from index v2 by @JohnMcPMS in #4611
- Fix for attempted use of capability API before it was introduced by @JohnMcPMS in #4623
Full Changelog: release-v1.8.1791...release-v1.8.1911
Windows Package Manager 1.9.1981-preview
This is the fourth development build after the Windows Package Manager 1.8 build for Windows 10(1809+) and Windows 11.
This build will be released to Windows Insider Dev builds and Windows Package Manager Insiders.
Experimental features are enabled in this release. Run winget features
to see which experimental features are enabled or disabled. Add the following to your settings (winget settings
) file to enable the experimental features.
"experimentalFeatures": {
"configureSelfElevate": true,
"configureExport": true
}
What's Changed
No changes to winget, just minor updates to AppInstaller.
Full Changelog: v1.9.1792-preview...v1.9.1981-preview
Windows Package Manager 1.9.1792-preview
This is the third development build after the Windows Package Manager 1.8 build for Windows 10(1809+) and Windows 11.
This build will be released to Windows Insider Dev builds and Windows Package Manager Insiders.
Experimental features are enabled in this release. Run winget features
to see which experimental features are enabled or disabled. Add the following to your settings (winget settings
) file to enable the experimental features.
"experimentalFeatures": {
"sideBySide": true,
"configureSelfElevate": true,
"storeDownload": true,
"configureExport": true,
"indexV2": true
}
What's Changed
- Update localization pipeline to new auth type by @florelis in #4532
- Fix loc pipeline service connection by @florelis in #4533
- Enable Microsoft Entra Id auth for displaycatalog and use enterprise offline sku by @yao-msft in #4544
- Add tests for configure mixed elevation by @ryfu-msft in #4487
- Make v2 index EF enabled by default by @JohnMcPMS in #4553
- Trim Version When Parsing by @Trenly in #4554
- Add Tests for Parsing Versions with Whitespace by @Trenly in #4557
- Winget Repair - Eliminate installer type mapping for MSI/WIX and MSIX NonStore ,code refactoring & E2E Test Coverage by @Madhusudhan-MSFT in #4534
- Update Pipeline Component Versions by @Trenly in #4560
- Add support for extracting archives using tar.exe by @ryfu-msft in #4541
- Make SxS stable by @JohnMcPMS in #4563
- Use digest verification APIs for MSIX when available by @JohnMcPMS in #4564
- Improve Support for Versions with Preambles by @Trenly in #4558
- Launch COM server for elevated use via packaged path by @JohnMcPMS in #4567
- Fix export manifest with multiple locales by @yao-msft in #4569
- Configuration history support by @JohnMcPMS in #4552
- Make Store package download stable by @yao-msft in #4570
- Update expired certificate with incoming one by @JohnMcPMS in #4568
- Apply latest patch for localized strings by @ryfu-msft in #4578
- Update winget server com security by @yao-msft in #4577
- Component Governance fix: Update libyaml by @yao-msft in #4583
Full Changelog: release-v1.9.1551-preview...release-v1.9.1792-preview
Windows Package Manager 1.8.1791
This is the first stable release of Windows Package Manager 1.8 for Windows 10 (1809+), and Windows 11.
Experimental features have been disabled in this release.
WinGet v1.8 will be the last stable version of WinGet with experimental features disabled. Starting in WinGet v1.9, stable releases will include the ability to enable experimental features unless blocked by Group Policy Objects (GPO).
Features
- HTTP Proxy support
- WinGet Configuration Mixed Elevation Mode support via COM
- WinGet Package Icon support via COM
- PowerShell Modules work on ARM64
- Control Characters shouldn't be allowed in user generated content
- Downloading MSStore packages
- Extracting archives using tar.exe
What's Changed
- Update WinGet Download spec with accurate PS cmdlet help by @ryfu-msft in #4182
- Add Troubleshooting Step for CDN by @Trenly in #4188
- CodeCoverage pipeline for submission to onefuzz. by @ryfu-msft in #4177
- Update fuzzing code coverage pipeline id by @ryfu-msft in #4191
- Increment version to 1.8 by @ryfu-msft in #4192
- Remove x86 platform from fuzzing pipeline by @ryfu-msft in #4195
- Make SQLite wrapper more resilient by @JohnMcPMS in #4196
- Pull in latest localized strings by @ryfu-msft in #4202
- Fix settings.schema.0.2.json not validating against schema by @Mat2095 in #4200
- Fix test error and change pipeline to properly report test crash by @JohnMcPMS in #4204
- Refactor
IPackage
by @JohnMcPMS in #4174 - Update Repair-WinGetPackageManager with UiXaml 2.8 by @ryfu-msft in #4218
- Copy semver.dll to direct dependencies by @ryfu-msft in #4226
- Fix xamlAsset value (powershell module) by @vedantmgoyal9 in #4240
- Update Triage Triggers by @Trenly in #4239
- Remove Needs-Triage when labels are applied by @Trenly in #4243
- Standardize Formatting of Documentation by @Trenly in #4244
- Fix conflict with Issue Forms by @Trenly in #4245
- Fix PowerShellCmdlet by @msftrubengu in #4247
- Add support for proxies #190 by @florelis in #4203
- Make Ignore Warnings suppress the output level entirely by @Trenly in #4221
- Add spec for proxy support by @florelis in #4152
- Add Trigger for Needs-Repro Label by @Trenly in #4276
- Ignore corrupted source data by @JohnMcPMS in #4291
- Update similarissues.yml to include body information as well by @craigloewen-msft in #4295
- Fix
EnableWindowsPackageManagerCommandLineInterfaces
Policy Behavior by @ryfu-msft in #4293 - Better server start coordination by @JohnMcPMS in #4292
- Add experimental support for multiple installed versions by @JohnMcPMS in #4282
- Remove duplicates from MultiQuery by @Trenly in #4286
- Add support for setting source trust level by @ryfu-msft in #4216
- Remove macro condition for GetAdminSettingPolicy by @ryfu-msft in #4314
- Fix header for AdminSettings by @ryfu-msft in #4315
- Add Triggers for context labels by @Trenly in #4335
- Add support for optional limitation set in configuration remote server and processors by @yao-msft in #4349
- Dynamic runtime configuration support by @ryfu-msft in #4355
- Improve MSStore installation success rate by trying Restart or Cancel when applicable by @yao-msft in #4356
- Refactor HttpClientHelper to CommonCore by @ryfu-msft in #4371
- Added AdditionalLibraryDirectories to UndockedRegFreeWinRT by @AmelBawa-msft in #4374
- Index v2 by @JohnMcPMS in #4387
- Make DLL directory work in packaged cases as well by @JohnMcPMS in #4389
- Enable Microsoft.WinGet.Client arm64 support by @msftrubengu in #4392
- Add Arm64 to list of architectures in Module Initialization. by @snickler in #4251
- Fix e2e tests by setting the test source package as trusted by @yao-msft in #4409
- Fix mixed elevation integration issue by using MemoryStream by @yao-msft in #4413
- Pull in microsoft sfs-client repo as subtree by @yao-msft in #4408
- Add initial support for msstore download experimental feature by @ryfu-msft in #4386
- Explicitly add Microsoft.Management.Configuration as remoting server dependency by @yao-msft in #4418
- Update instructions to build repo locally with vcpkg enabled by @yao-msft in #4426
- Make SecurityContext field name camelCase by @yao-msft in #4433
- Add Workflow logs and fix installed version workflow bug by @JohnMcPMS in #4432
- Block control codes and truncate longer configuration text blocks by @JohnMcPMS in #4436
- Configure export command by @msftrubengu in #4434
- Create local Microsoft.WindowsPackageManager.Utils nuget by @msftrubengu in #4439
- Use GitHub's built in markdown highlighting to highlight notes in README by @alvinsjoy in #4441
- Remove Parent Directory when Empty by @Trenly in #4451
- Complete MSStore download and licensing by @yao-msft in #4464
- Make proxy feature stable by @yao-msft in #4466
- Index V2 consumption by @JohnMcPMS in #4462
- Remove PAT token for ADO fuzzing task by @ryfu-msft in #4478
- Update the correlation tools by @JohnMcPMS in #4479
- Allow a property to force the /debugtype override onto some projects by @JohnMcPMS in #4480
- Initialize logging of global logger for inproc invocations by @yao-msft in #4490
- Fix limit mode metadata blocking by @JohnMcPMS in #4489
- Move paths code to shared by @JohnMcPMS in #4484
- WinGetDownload E_ACCESSDENIED by @msftrubengu in #4518
- Update sfs-client to 1.0.0 release by @yao-msft in #4517
- Enable Microsoft Entra Id auth for displaycatalog and use enterprise offline sku by @yao-msft in #4544
- Winget Repair - Eliminate installer type mapping for MSI/WIX and MSIX NonStore ,code refactoring & E2E Test Coverage by @Madhusudhan-MSFT in #4534
- Add support for extracting archives using tar.exe by @ryfu-msft in #4541
- Make SxS stable by @JohnMcPMS in #4563
- Fix export manifest with multiple locales by @yao-msft in #4569
- Make Store package download stable by @yao-msft in #4570
- Update expired certificate with incoming one by @JohnMcPMS in #4568
- Apply latest patch for localized strings by @ryfu-msft in #4578
- Update winget server com security by @yao-msft in #4577
- Component Governance fix: Update libyaml by @yao-msft in #4583
New Contributors
- @Mat2095 made their first contribution in #4200
- @snickler made their first contribution in #4251
- @alvinsjoy made their first contribution in #4441
Full Changelog: release-v1.7.10514...release-v1.8.1791
Windows Package Manager 1.8.1762
This release represents our second Windows Package Manager 1.8 release candidate build for Windows 10 (1809+), and Windows 11.
Experimental features have been disabled in this release.
WinGet v1.8 will be the last stable version of WinGet with experimental features disabled. Starting in WinGet v1.9, stable releases will include the ability to enable experimental features unless blocked by Group Policy Objects (GPO).
Features
- HTTP Proxy support
- WinGet Configuration Mixed Elevation Mode support via COM
- WinGet Package Icon support via COM
- PowerShell Modules work on ARM64
- Control Characters shouldn't be allowed in user generated content
- Downloading MSStore packages
- Extracting archives using tar.exe
What's Changed
- Update WinGet Download spec with accurate PS cmdlet help by @ryfu-msft in #4182
- Add Troubleshooting Step for CDN by @Trenly in #4188
- CodeCoverage pipeline for submission to onefuzz. by @ryfu-msft in #4177
- Update fuzzing code coverage pipeline id by @ryfu-msft in #4191
- Increment version to 1.8 by @ryfu-msft in #4192
- Remove x86 platform from fuzzing pipeline by @ryfu-msft in #4195
- Make SQLite wrapper more resilient by @JohnMcPMS in #4196
- Pull in latest localized strings by @ryfu-msft in #4202
- Fix settings.schema.0.2.json not validating against schema by @Mat2095 in #4200
- Fix test error and change pipeline to properly report test crash by @JohnMcPMS in #4204
- Refactor
IPackage
by @JohnMcPMS in #4174 - Update Repair-WinGetPackageManager with UiXaml 2.8 by @ryfu-msft in #4218
- Copy semver.dll to direct dependencies by @ryfu-msft in #4226
- Fix xamlAsset value (powershell module) by @vedantmgoyal9 in #4240
- Update Triage Triggers by @Trenly in #4239
- Remove Needs-Triage when labels are applied by @Trenly in #4243
- Standardize Formatting of Documentation by @Trenly in #4244
- Fix conflict with Issue Forms by @Trenly in #4245
- Fix PowerShellCmdlet by @msftrubengu in #4247
- Add support for proxies #190 by @florelis in #4203
- Make Ignore Warnings suppress the output level entirely by @Trenly in #4221
- Add spec for proxy support by @florelis in #4152
- Add Trigger for Needs-Repro Label by @Trenly in #4276
- Ignore corrupted source data by @JohnMcPMS in #4291
- Update similarissues.yml to include body information as well by @craigloewen-msft in #4295
- Fix
EnableWindowsPackageManagerCommandLineInterfaces
Policy Behavior by @ryfu-msft in #4293 - Better server start coordination by @JohnMcPMS in #4292
- Add experimental support for multiple installed versions by @JohnMcPMS in #4282
- Remove duplicates from MultiQuery by @Trenly in #4286
- Add support for setting source trust level by @ryfu-msft in #4216
- Remove macro condition for GetAdminSettingPolicy by @ryfu-msft in #4314
- Fix header for AdminSettings by @ryfu-msft in #4315
- Add Triggers for context labels by @Trenly in #4335
- Add support for optional limitation set in configuration remote server and processors by @yao-msft in #4349
- Dynamic runtime configuration support by @ryfu-msft in #4355
- Improve MSStore installation success rate by trying Restart or Cancel when applicable by @yao-msft in #4356
- Refactor HttpClientHelper to CommonCore by @ryfu-msft in #4371
- Added AdditionalLibraryDirectories to UndockedRegFreeWinRT by @AmelBawa-msft in #4374
- Index v2 by @JohnMcPMS in #4387
- Make DLL directory work in packaged cases as well by @JohnMcPMS in #4389
- Enable Microsoft.WinGet.Client arm64 support by @msftrubengu in #4392
- Add Arm64 to list of architectures in Module Initialization. by @snickler in #4251
- Fix e2e tests by setting the test source package as trusted by @yao-msft in #4409
- Fix mixed elevation integration issue by using MemoryStream by @yao-msft in #4413
- Pull in microsoft sfs-client repo as subtree by @yao-msft in #4408
- Add initial support for msstore download experimental feature by @ryfu-msft in #4386
- Explicitly add Microsoft.Management.Configuration as remoting server dependency by @yao-msft in #4418
- Update instructions to build repo locally with vcpkg enabled by @yao-msft in #4426
- Make SecurityContext field name camelCase by @yao-msft in #4433
- Add Workflow logs and fix installed version workflow bug by @JohnMcPMS in #4432
- Block control codes and truncate longer configuration text blocks by @JohnMcPMS in #4436
- Configure export command by @msftrubengu in #4434
- Create local Microsoft.WindowsPackageManager.Utils nuget by @msftrubengu in #4439
- Use GitHub's built in markdown highlighting to highlight notes in README by @alvinsjoy in #4441
- Remove Parent Directory when Empty by @Trenly in #4451
- Complete MSStore download and licensing by @yao-msft in #4464
- Make proxy feature stable by @yao-msft in #4466
- Index V2 consumption by @JohnMcPMS in #4462
- Remove PAT token for ADO fuzzing task by @ryfu-msft in #4478
- Update the correlation tools by @JohnMcPMS in #4479
- Allow a property to force the /debugtype override onto some projects by @JohnMcPMS in #4480
- Initialize logging of global logger for inproc invocations by @yao-msft in #4490
- Fix limit mode metadata blocking by @JohnMcPMS in #4489
- Move paths code to shared by @JohnMcPMS in #4484
- WinGetDownload E_ACCESSDENIED by @msftrubengu in #4518
- Update sfs-client to 1.0.0 release by @yao-msft in #4517
- Enable Microsoft Entra Id auth for displaycatalog and use enterprise offline sku by @yao-msft in #4544
- Winget Repair - Eliminate installer type mapping for MSI/WIX and MSIX NonStore ,code refactoring & E2E Test Coverage by @Madhusudhan-MSFT in #4534
- Add support for extracting archives using tar.exe by @ryfu-msft in #4541
- Make SxS stable by @JohnMcPMS in #4563
- Fix export manifest with multiple locales by @yao-msft in #4569
- Make Store package download stable by @yao-msft in #4570
- Update expired certificate with incoming one by @JohnMcPMS in #4568
- Apply latest patch for localized strings by @ryfu-msft in #4578
- Update winget server com security by @yao-msft in #4577
New Contributors
- @Mat2095 made their first contribution in #4200
- @snickler made their first contribution in #4251
- @alvinsjoy made their first contribution in #4441
Full Changelog: v1.7.10514...v1.8.1762