From 16fb83d43d98d6d4055d1fa83cb8bae6d92e55ff Mon Sep 17 00:00:00 2001 From: Nick Cipollina Date: Wed, 12 Aug 2026 14:15:33 -0400 Subject: [PATCH 1/2] chore: bump .NET 11 SDK to preview.7, fix stale roadmap package count global.json and pr-build.yaml's exact SDK pin move from 11.0.100-preview.6.26359.118 to 11.0.100-preview.7.26381.103 (current latest per dotnet/core's own release notes, released 2026-08-11) - full solution test suite verified green under the new SDK across all four TFMs (1885/1885). docs/roadmap/index.md's "Today" bullet still listed the original four-package MVP set and didn't mention Compono.TUnit, which shipped via PLAN-0040 since this doc was last touched. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/pr-build.yaml | 2 +- docs/roadmap/index.md | 15 ++++++++++----- global.json | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr-build.yaml b/.github/workflows/pr-build.yaml index 773f633..3f1406e 100644 --- a/.github/workflows/pr-build.yaml +++ b/.github/workflows/pr-build.yaml @@ -16,6 +16,6 @@ jobs: 8.0.x 9.0.x 10.0.x - 11.0.100-preview.6.26359.118 + 11.0.100-preview.7.26381.103 runCdk: false secrets: inherit diff --git a/docs/roadmap/index.md b/docs/roadmap/index.md index 53541bb..cf97b71 100644 --- a/docs/roadmap/index.md +++ b/docs/roadmap/index.md @@ -6,11 +6,16 @@ today. - **Today.** Compono's shipped package set — [`Compono`](../packages/compono.md), [`Compono.XunitV3`](../packages/compono-xunitv3.md), - [`Compono.NSubstitute`](../packages/compono-nsubstitute.md), and - [`Compono.Bogus`](../packages/compono-bogus.md) — covers the full MVP - package set (`docs/mvp.md`'s "MVP Package Set"). If a capability isn't - documented in [Concepts](../concepts/index.md), [How-to Guides](../how-to/index.md), - or a [Package Guide](../packages/index.md), it isn't available yet — see + [`Compono.NSubstitute`](../packages/compono-nsubstitute.md), + [`Compono.Bogus`](../packages/compono-bogus.md), and + [`Compono.TUnit`](../packages/compono-tunit.md) — covers the full MVP + package set (`docs/mvp.md`'s "MVP Package Set") plus `Compono.TUnit`, + the first candidate to graduate the whole way through + [Future Packages](future-packages.md)' admission model + ([PLAN-0040](../plans/0040-compono-tunit-package-design.md)). If a + capability isn't documented in [Concepts](../concepts/index.md), + [How-to Guides](../how-to/index.md), or a + [Package Guide](../packages/index.md), it isn't available yet — see below for where it might be headed. - **Experimental / under discussion.** [Proposed ADRs](proposed-adrs.md) — design decisions still being discussed, not yet `Accepted`. diff --git a/global.json b/global.json index ca9888e..e6da6c0 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.6.26359.118", + "version": "11.0.100-preview.7.26381.103", "rollForward": "latestFeature" }, "test": { From a787524f28201bbddc2174b97eb5d88a70b797ed Mon Sep 17 00:00:00 2001 From: Nick Cipollina Date: Wed, 12 Aug 2026 14:23:25 -0400 Subject: [PATCH 2/2] chore: revert pr-build.yaml's .NET 11 SDK pin back to floating 11.0.x global.json keeps the exact preview.7 pin (that's what actually governs local/CI SDK selection via rollForward: latestFeature); pr-build.yaml's own exact pin was redundant with it and inconsistent with publish-preview.yaml/publish-release.yaml, which already float on 11.0.x. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/pr-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-build.yaml b/.github/workflows/pr-build.yaml index 3f1406e..e89ecae 100644 --- a/.github/workflows/pr-build.yaml +++ b/.github/workflows/pr-build.yaml @@ -16,6 +16,6 @@ jobs: 8.0.x 9.0.x 10.0.x - 11.0.100-preview.7.26381.103 + 11.0.x runCdk: false secrets: inherit