#411: remove HttpChainDescriptor pipeline-introspection fields (2.6.1)#412
Merged
jeremydmiller merged 1 commit intoJun 2, 2026
Conversation
…lds (2.6.1) These descriptor fields existed only to mirror pipeline information for CritterWatch, but the same operator-facing data is available on demand via the chain's generated source code (RequestHandlerSourceCode in Wolverine.CritterWatch) — the generated C# IS the compiled pipeline — so the descriptor copies were redundant payload (~30-50 KB compressed for a ~163-endpoint topology, plus equivalent savings in every persisted ServiceSummary row downstream). Removed (public-type change; landing in the 2.x rc window): - HttpChainDescriptor.Middleware - HttpChainDescriptor.Postprocessors - HttpChainDescriptor.ServiceDependencies - MiddlewareStepDescriptor (no remaining consumers; NamespacePrefixDescriptor and ApiVersionDescriptor in the same file are retained) - HttpGraphUsage.MiddlewareTypes (graph-level, for API consistency) Solution builds clean; CoreTests 447/447 on net9.0 and net10.0. Downstream (separate repos): Wolverine drops the descriptor population in HttpGraphUsageSource.cs (describeFrames / readServiceDependencies); CritterWatch removes its HttpChainDetailPage Pipeline tab + regens TS messages. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jun 2, 2026
jeremydmiller
added a commit
that referenced
this pull request
Jun 2, 2026
PRs #412 (#411) and #414 (#413) merged into their stacked PR bases rather than main, so main carried #409 (2.6.x) but was missing #411's removals and #413's Task<string> auto-assign change. This brings both onto main as a single consolidated 2.8.0 release (supersedes the interim 2.6.0/2.6.1/2.7.0 bumps). - #411: removed HttpChainDescriptor.Middleware/Postprocessors/ServiceDependencies, the MiddlewareStepDescriptor type, and graph-level HttpGraphUsage.MiddlewareTypes. - #413: IDynamicTenantSource<T>.AddTenantAsync(tenantId, CancellationToken) now returns Task<string> (resolved database id / partition suffix); admin extensions surface it. Version set to 2.8.0. CoreTests green on net9.0 and net10.0; solution builds clean. Co-authored-by: Claude Opus 4.8 (1M context) <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.
Closes #411. Removes pipeline-introspection fields from the HTTP descriptors that existed only to mirror data for CritterWatch — the same operator-facing pipeline information is available on demand via the chain's generated source code (
RequestHandlerSourceCodein Wolverine.CritterWatch; the generated C# is the compiled pipeline), so the descriptor copies were redundant payload (~30–50 KB compressed for a ~163-endpoint topology, plus equivalent savings in every persistedServiceSummaryrow downstream).Fix-version bump: 2.6.0 → 2.6.1. Public-type change, landing in the 2.x rc window per the issue.
Removed
HttpChainDescriptor.MiddlewareHttpChainDescriptor.PostprocessorsHttpChainDescriptor.ServiceDependenciesMiddlewareStepDescriptor(no remaining consumers;NamespacePrefixDescriptorandApiVersionDescriptorin the same file are retained)HttpGraphUsage.MiddlewareTypes(graph-level, for API consistency)Verification
Downstream (separate repos, coordinated after this ships)
HttpGraphUsageSource.cs(describeFrames/readServiceDependencieshelpers + lines 188/190/191).HttpChainDetailPagePipeline tab and regens TS messages + tooltips.🤖 Generated with Claude Code