Move the build orchestrator to the Fallout stable channel (10.4.0) - #222
Merged
Conversation
Fallout v10.4.0 is the first stable-channel release; the previously pinned 11.0.18 belongs to the edge channel. The stable CLI ships as Fallout.GlobalTool (the fallout command is unchanged), and Fallout.Common 10.4.0 resolves the patched System.Security.Cryptography.Xml 10.0.10 on its own, so the manual transitive pin is no longer needed (Fallout-build/Fallout#618). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Fallout published v10.4.0, its first stable-channel release under the new dual-pace model. The 11.0.x line this repo pinned is the edge channel; 10.4.0 is newer (2026-08-07) and a feature superset despite the lower number (future stable releases move to CalVer, so the version line jumps ahead again).
Changes:
Fallout.Common11.0.18 → 10.4.0 inbuild/_build.csprojSystem.Security.Cryptography.Xml10.0.10 transitive pin — 10.4.0 resolves the patched version itself (Migrating against 10.3.49 produces a repo that fails restore with NU1903 (resolved by 10.4.0 GA) Fallout-build/Fallout#618). Restore verified clean of NU19xx, andproject.assets.jsonconfirmsSystem.Security.Cryptography.Xml/10.0.10still comes in transitively.fallout.cli(edge-channel id, has no 10.4.0) toFallout.GlobalTool10.4.0 — the stable-channel tool id per Global tool package ID rename stranded 10.3.x consumers on Fallout.GlobalTool with no upgrade path Fallout-build/Fallout#575. Thefalloutcommand name is unchanged, sobuild.ps1/build.sh/CI need no changes.No
.gitignorechange was needed here: the Python-era barebuildpattern that hid new files under the build project directory was already replaced withbuild/bin/build/objin fc84fdb. Verified with a probe file —build/Probe.csshows up as untracked.Same change as AngleSharp/AngleSharp.Js#138.
Verification:
dotnet build build/_build.csprojsucceeds with 0 warnings;./build.ps1 Compileruns end to end (tool restore resolves Fallout.GlobalTool 10.4.0, engine banner reportsFallout Execution Engine version 10.4.0.15, solution compiles across all five TFMs with 0 warnings). Publish targets intentionally not run.🤖 Generated with Claude Code