-
Notifications
You must be signed in to change notification settings - Fork 0
⭐ Package Versions
Terrence Daniels edited this page Aug 14, 2026
·
1 revision
Every one of ~50 central package pins in Directory.Packages.props was checked against its actual current-latest version — a web search, not an assumption — rather than copied from source. The notable deviations, not routine patch bumps:
-
Duende.IdentityServer*bumped 7.x → 8.x, a deliberate major-version call with real breaking-change risk deferred to verification onceIdentity.APIis actually added. The source's ownDuendeVersionvariable was unused (every package was hardcoded to7.3.2instead of referencing it) — wired up properly as part of the same pass. -
IdentityModel→Duende.IdentityModel,7.0.0→8.1.0. UpstreamIdentityModelis archived;Duende.IdentityModelis the maintained successor (still Apache-2.0). Anyusing IdentityModel;in code added later will need a namespace update. -
MediatRpinned to12.5.0, a deliberate user decision — MediatR v13+ moved to a dual RPL-1.5/commercial license (LuckyPenny Software, July 2025).12.5.0is the last MIT/Apache-2.0 release. Flagged for verification onceOrdering.APIlands, since it's pinned below the source's original version. -
Asp.Versioning.Http.Clientsplit onto its own8.1.0— it diverged from the rest of theAsp.Versioning.*family's shared version variable; pinning it to that variable would have been wrong. -
Microsoft.VisualStudio.Web.CodeGeneration.Design: was stuck on a.NET-8-RC-era prerelease (8.0.0-rc.1.23461.3); a real stable10.0.2release exists now.
See Architecture Overview for which projects these packages actually gate.