Release notes
WiX v5.0.2
WiX v5.0.2 was released on 4-October-2024 and is the second bug-fix release for WiX v5. We fixed bugs for FireGiant customers and published the release for the whole WiX community to enjoy:
ProductVersion
should support insignificant zeros.- Building a patch that adds files and uses patch filtering fails.
- Using
File/@PatchGroup
forPatchCreation
patches fails. - Building binary Wixlibs take up significant memory
New in WiX v5
WiX v5 marks the first of our annual releases. We intentionally made WiX v5 highly compatible with WiX v4. Most users can simply switch to WiX v5 with no code changes. (There are some exceptions, naturally.) Here's a list of some notable changes, mostly new features to make your package experience with WiX more pleasant:
Feature | Description |
---|---|
Built-in file harvesting | Include files in your projects using wildcards. No Heat required. |
Naked files | Simplify component authoring that contains only files. |
Default major upgrades | Get a typical major upgrade with no XML. |
Default installation folder | Get a typical installation directory with no XML. |
Default feature | Get a typical feature with no XML. |
Modern Windows Firewall support | WixToolset.Firewall.wixext supports more Firewall features. Might require minor authoring changes. |
Virtual and overridable symbols | Overridability can be applied to many things now. Might require minor authoring changes. |
Out-of-process bootstrapper applications | BAs are no longer hosted in the Burn process, for better reliability, security, and compatibility. Custom BAs will require source-code changes. |
Read more about them in WiX v5 for WiX v4 users
.
Previous WiX v5 releases
- WiX v5.0.1 was released on 16-July-2024 and is the first bug-fix release for WiX v5. Check out the full list of bugs fixed in WiX v5.0.1.
- WiX v5.0.0 was released on 5-April-2024, the 20th anniversary of the first open-source release of WiX. It contains fixes for a small number of bugs.
- WiX v5.0.0-rc.2 was released on 22-March-2024. It contains fixes for a small number of bugs and for security vulnerabilities that FireGiant also fixed in WiX v3.14.1 and WiX v4.0.5. For details, see the FireGiant blog post, the first security advisory, and the second security advisory.
- WiX v5.0.0-rc.1 was released on 8-March-2024.
Contributors
Here are the people who contributed to WiX v5:
- @barnson
- @robmen
- @chrisbednarski
- @nirbar
- @avjts
- @chrpai
- @cpuwzd
- @apacker1
- @mosBrkr
- @mistoll
- @jespersh
- @timberto
- @fyodorkor
- @mwileczka
WiX v4.0.6
WiX v4.0.6 was released on 4-October-2024 and contains bug fixes from WiX v5.0.1 and v5.0.2.
Platforms
- Arm64 is supported in the core toolset, extensions, and Burn.
- WiX extensions include platform-specific custom actions for the platform of the package being built. For example, an Arm64 package contains only Arm64 custom actions and doesn't rely on x86 emulation.
Build tools
- WiX v4 doesn't have to be installed on every dev machine and build image like WiX v3. Instead, WiX v4 follows the modern .NET model of using NuGet to deliver tools.
- WiX v4 MSBuild projects are SDK-style projects; MSBuild and NuGet work together to bring down the WiX v4 MSBuild SDK NuGet package.
- Both .NET Framework MSBuild and
dotnet build
are supported. - To build packages from the command line, WiX v4 is available as a .NET tool, which is also a NuGet package.
- WiX extensions are delivered as NuGet packages, which are usable from both MSBuild projects via
PackageReference
and the WiX .NET tool.
- For command-line afficionados, most executables have been merged into a single
wix.exe
tool with commands. For example, in WiX v3, you might build by calling Candle.exe one or more times to compile your authoring and then calling Light.exe to link and bind the compiled authoring into an .msi package. In WiX v4 usingwix.exe
, that's one command:wix build -o product.msi product.wxs
. - Building patches is much easier (one command!) and can use MSI packages as the source of target and updated files.
- The WiX extensibility model and pipeline integration has been dramatically enhanced.
- The WiX language has been further simplified. For example:
- The
Package
element combines what was two elements (Product
andPackage
) in WiX v3 . - The
StandardDirectory
element simplifies the use of standard Windows Installer directories. - The
Subdirectory
attribute on, for example, theComponent
element, lets you create subdirectories without nestedDirectory
elements. - WiX supplies a default
MediaTemplate
element if you don't specify one in your authoring.
- The
- WiX warns when mixing authoring meant for MSI packages in bundles and vice versa.
Burn, bundles, and bootstrapper applications
- The Burn engine is platform-specific, so you can build an x64 bundle that contains only x64 code and doesn't rely on WoW64.
- .NET 6 and later are supported platforms for writing managed-code bootstrapper applications. .NET Framework is also supported.
- ThmUtil, the native-code UI library used by the WixStdBA bootstrapper application, supports new controls and authored conditions and actions that let themes add functionality without having to write custom C++ code. For details, see Thmutil schema.
- ThmUtil (and therefore WixStdBA) supports high DPI display settings.
- The new
WixInternalUIBootstrapperApplication
BA supports showing only the internal or embedded UI of an MSI package. - Burn support other bundles in the chain via
BundlePackage
to automatically handle detection and uninstall command lines. Likewise, theArpEntry
element provides the same functionality for arbitrary executable packages in the chain. - Burn supports SemVer-style versions.
- WixStdBA supports bundle update feeds as specified in an
Update
element. - Burn now upgrades bundles with the same version numbers.
- When a user requires elevation to restart (common on Windows Server machines), Burn handles restart through the elevated engine.
- Custom bootstrapper applications can change the
REINSTALLMODE
used when applying MSI packages. - The Burn policy registry value
EngineWorkingDirectory
inHKLM\Software\Policies\Wix\Burn
is a string specifying a working folder root directory for elevated bundles when the default ofC:\Windows\Temp
is blocked by security policy. - Burn no longer appears in the Apps & Features (ARP) list if a bundle has a pre-req that causes a reboot and the user cancels after the reboot.
- The
/unsafeuninstall
command-line switch lets users attempt to "force" a bundle to uninstall, even if dependency checking would otherwise leave it installed.
Deprecations and deletions
- Features that were deprecated in WiX v3, including command-line switches deprecated in WiX v3.14, have been removed from WiX v4.
- WixGamingExtension and WixLuxExtension have been removed in WiX v4.
- WixDifxAppExtension is deprecated in Windows 10 and therefore has been deprecated in WiX v4 and will be removed in WiX v5.
Previous WiX v4 releases
WiX v4.0.5 was released on Friday, 22-Mar-2024
WiX v4.0.5 contains fixes for two security vulnerabilities. All versions of WiX are affected by this vulnerability. We recommending upgrading to this version as soon as possible. For details, see the FireGiant blog post, the first security advisory, and the second security advisory.
WiX v4.0.4 was released Tuesday, 6-Feb-2024
WiX v4.0.4 mitigates a Windows DLL redirection vulnerability in Burn. All versions of WiX are affected by this vulnerability. We recommending upgrading to this (or a later) version as soon as possible.
WiX v4.0.3 was released Monday, 13-Nov-2023
WiX v4.0.3 is a maintenance release of WiX v4 that fixes a small number of even smaller bugs.
WiX v4.0.2 was released Wednesday, 13-Sep-2023
WiX v4.0.2 is a maintenance release of WiX v4 that fixes a number of bugs that escaped detection in WiX v4.0.0 and v4.0.1:
NetFxDotNetCompatibilityCheck
custom action badly fragmented, from @barnsonSubstitution does not create ModuleSubstitution table when building Merge Module, from @rsdk-vag
RegisterFonts action is not added to the InstallExecuteSequence when fonts are being installed to the FontsFolder., from @kerrywicks
Migrated WiX v3 to v4, now getting error doing action Wix4ConfigureSmbUninstall_X64 when installing, from @barnson
IWindowsInstallerDecompileContext.TreatProductAsModule is borked, from @barnson
wix msi decompile -x
removes modularization GUIDs from object fields, from @barnsonMerge modules don't extract during decompilation, from @barnson
All of the goodness in WiX v4.0.0 and v4.0.1 remains.
WiX v4.0.1 was released Monday, 5-June-2023
WiX v4.0.1 was a maintenance release of WiX v4 that fixes a number of annoyances and more serious bugs that escaped detection in WiX v4.0.0.
WiX v4.0.0 was released Wednesday, 5-April-2023
Contributors
@robmen, @rseanhall, and @barnson took their maintainer duties seriously during the development of WiX v4. They were joined by many others, who have our thanks!
- @cpuwzd
- @nirbar
- @japarson
- @drolevar
- @MarkStega
- @hymccord
- @jchoover
- @AlexKubiesa
- @wjk
- @maniglia
- @mcraiha
- @StefanStojanovic
- @ericstj
- @pascalpfeil
- @danielchalmers
- @HarmvandenBrand
- @sgtatham
- @paulomorgado
- @adnanshaheen
- @FroggieFrog
- @Herohtar
- @BMurri
- @heaths
- @chrpai
- @VolkerGa
- @t-johnson
Release Candidate 4 released Friday, 17-March-2023
WiX v4 Release Candidate 4 contains fixes for the -- significantly smaller number of bugs compared to RC3 -- that were reported during Release Candidate 3. There is one minor new feature:
- In WixToolset.Netfx.wixext, package groups for .NET Framework v4.8.1 are now available. See the issue and @barnson's pull request.
Release Candidate 3 released Friday, 24-February-2023
WiX v4 Release Candidate 3 contains fixes for bugs that were reported during Release Candidate 2. There are two minor new features:
- WiX MSBuild projects support multi-targeting other projects with a single
ProjectReference
. You can specify multiple platforms, configurations, .NET frameworks, and runtime identifiers. See @robmen's WIP and pull request. - A new
sys.BUILDARCHSHORT
built-in preprocessor variable helps handle WiX v4's new architecture-specific custom actions. See issue 7227 and @barnson's PR.
Release Candidate 2 released Friday, 20-January-2023
WiX v4 Release Candidate 2 contains fixes for bugs that were reported during Release Candidate 1. There are two new features:
- Add
perUserOrMachine
to thePackage/@Scope
options for dual-scope, single-package authoring. See issue #7137, @robmen's code PR, and documentation PR. - Add
DotNetCoreSdkSearch
Burn search to locate .NET (Core) SDKs, like theDotNetCoreSearch
search for .NET runtimes. See issue #7058, @powercode's code PR, and @rseanhall's documentation PR.
Release Candidate 1 released Friday, 16-December-2022
WiX v4 Release Candidate 1 contains fixes for bugs that were reported during Preview 1. There are no new features.
Preview 1 released Friday, 11-November-2022
WiX v4 is a major release of the WiX Toolset, years in the making. More than 500 issues were closed in WiX v4!
If you're familiar with WiX v3, WiX v4 for WiX v3 users has details about how WiX v4 works.