dotnet(nuget): add missing Sentry.Maui.CommunityToolkit.Mvvm - #242
Merged
Lms24 merged 1 commit intoAug 18, 2026
Merged
Conversation
The package has shipped on NuGet since 5.8.0 but was never added here. It was added to sentry-dotnet's .craft.yml registry target in getsentry/sentry-dotnet#5456, and the 6.9.0 publish then aborted: "name" is required for new package "nuget:Sentry.Maui.CommunityToolkit.Mvvm". Add `name` to the registry target config in your .craft.yml. Craft treats a package as new when its latest.json is missing, so seeding the directory here lets the bare .craft.yml key work as it does for every other sentry-dotnet package. Seeded at 6.8.0 rather than 6.9.0 deliberately: craft aborts the whole registry target with "Version file for 6.9.0 already exists" if the version being published is already present, which would leave all 19 sentry-dotnet packages stuck at 6.8.0 exactly as they are now. Same approach as getsentry#223. created_at matches the value craft wrote for the other packages in the 6.8.0 release. Symlinks generated with bin/sync-links. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
jamescrosswell
marked this pull request as ready for review
August 17, 2026 23:45
Lms24
approved these changes
Aug 18, 2026
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.
Context
Sentry.Hangfire#223 (Sentry.Hangfire) and Add Sentry.Extensions.AI nuget package #221 (Sentry.Extensions.AI)Summary
Sentry.Maui.CommunityToolkit.Mvvmhas shipped on NuGet since 5.8.0 but was never added here. getsentry/sentry-dotnet#5456 added it to sentry-dotnet's.craft.ymlregistry target, and the 6.9.0 publish then aborted (run 32010411662):Craft treats a package as new only when its
latest.jsonis missing, so seeding the directory here makes the bare.craft.ymlkey work exactly as it does for the other 18 sentry-dotnet packages.The failure isn't scoped to this one package —
updateVersionInRegistrythrows before craft commits anything, so the whole registry target rolls back. Every sentry-dotnet package is currently still pinned at 6.8.0 here, two releases into 6.9.0 being live on NuGet.Notes for review
Version file for "6.9.0" already exists. Aborting.if the version being published is already present — which would roll the target back again and leave all 19 packages stuck at 6.8.0. Seeding the previous version (which the package did ship) lets the retry create 6.9.0 and re-point the symlinks. dotnet(nuget): add missingSentry.Hangfire#223 did the same, seeding6.0.0-rc.2-prerelease.canonicalhas to match the.craft.ymlkey exactly or craft errors on the consistency check ingetUpdatedManifest.created_atis the value craft wrote for the sibling packages in the 6.8.0 release, since it's the same release event.bin/sync-links, not by hand. I also re-ran the fullmake sync-all-links(viaxargs, as the barefindblows the argument limit on macOS) and confirmed it reproduces the committed tree exactly, so the CI sync check should be clean.sdks/sentry.dotnet.maui.communitytoolkit.mvvmsymlink. Every other dotnet package has one, but this package doesn't emit its ownsdk_info.name— its events go out assentry.dotnet.maui— so the entry would name something nothing reports. Happy to add it if uniformity is preferred.Relationship to getsentry/sentry-dotnet#5496
#5496 approaches the same failure from the other side: it gives sentry-dotnet's
.craft.ymlthename/packageUrl/mainDocsUrlthat craft needs to create manifests itself — for every package, not just this one, so the next new package doesn't repeat this.The two are complementary rather than exclusive. This PR unblocks the 6.9.0 retry now; #5496 stops it happening again. If both land, this package's
.craft.ymlentry is simply belt-and-braces — craft applies the config over the manifest on every release either way.