Restore MSI upgrades from beta releases (#656) - #660
Draft
leynos wants to merge 2 commits into
Draft
Conversation
Contributor
|
Important Draft PR not reviewedDraft PRs are not automatically reviewed by default.
To automatically review draft PRs, update your CodeRabbit configuration: reviews:
auto_review:
drafts: trueComment |
Contributor
Reviewer's GuideRestores Windows MSI replacement across successive beta releases and beta-to-final releases by configuring WiX same-version major upgrades, preserving stable workflow wiring, and adding parsed-WiX, workflow, and documentation contract tests. Flow diagram for Windows MSI beta-to-final replacementflowchart LR
Beta1[Beta MSI 0.1.0-beta1] --> Install[Install MSI]
Beta2[Beta MSI 0.1.0-beta2] --> Upgrade[WiX major upgrade]
Final[Final MSI 0.1.0] --> Upgrade
Upgrade --> Replace[Replace existing installation]
Upgrade --> StableFamily[Stable UpgradeCode family]
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Configure the WiX package for major upgrades that replace earlier beta packages and promote beta installations to the corresponding final release. Keep the upgrade family stable while allowing WiX to issue a fresh ProductCode for every package, and lock the contract with XML, workflow, and documentation tests.
leynos
force-pushed
the
issue-656-restore-msi-upgrades-from-beta-releases-to-later-releases
branch
from
September 5, 2026 21:02
73d0f95 to
4316c18
Compare
Owner
Author
|
@coderabbitai Please investigate the cause of the following issue using codegraph exploration and research, identify a fix and provide an AI coding agent prompt for the fix: https://github.com/leynos/netsuke/actions/runs/33991862694/job/101375401545?pr=660 |
This comment was marked as resolved.
This comment was marked as resolved.
Assert each required replacement fact independently so the documentation contract works with LF and CRLF checkouts and Markdown wrapping.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This branch restores Windows MSI replacement for successive beta releases and
for a final release replacing beta installations in the same release line.
The WiX major-upgrade contract allows same-numeric-version upgrades while
retaining the stable upgrade family and blocking numeric downgrades.
Closes #656.
Review walkthrough
UpgradeCode, early major-upgrade scheduling, and safe same-version replacement.Validation
make check-fmt: passedmake lint: passedmake doc-coverage: passed (99.13%)make test: passed (2,774 nextest tests and doctests)make markdownlint: passedmake nixie: passedcoderabbit review --agent: completed with zero findingsNotes
Functional
msiexecupgrade testing remains deferred: package constructionruns in the external shared action, and this repository has no MSI test
harness. The parsed-WiX and workflow-input contracts cover the authored
upgrade metadata and its stable-family wiring.
References
Summary by Sourcery
Restore safe same-version Windows MSI upgrades across beta and final releases.
Bug Fixes:
Enhancements:
Documentation:
Tests: