TheNerdCollective.MudComponents.Changelog 1.1.2

dotnet add package TheNerdCollective.MudComponents.Changelog --version 1.1.2
                    
NuGet\Install-Package TheNerdCollective.MudComponents.Changelog -Version 1.1.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TheNerdCollective.MudComponents.Changelog" Version="1.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TheNerdCollective.MudComponents.Changelog" Version="1.1.2" />
                    
Directory.Packages.props
<PackageReference Include="TheNerdCollective.MudComponents.Changelog" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TheNerdCollective.MudComponents.Changelog --version 1.1.2
                    
#r "nuget: TheNerdCollective.MudComponents.Changelog, 1.1.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package TheNerdCollective.MudComponents.Changelog@1.1.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TheNerdCollective.MudComponents.Changelog&version=1.1.2
                    
Install as a Cake Addin
#tool nuget:?package=TheNerdCollective.MudComponents.Changelog&version=1.1.2
                    
Install as a Cake Tool

TheNerdCollective.MudComponents.Changelog

MudBlazor viewer for multi-file product changelogs (changelog.json, changelog-1.json, …).

Agents update the JSON via the update changelog skill / NR_CHANGELOG_* rules. This package is read-only for the UI. Never put PII in changelog JSON (NR_CHANGELOG_NO_PII).

UI (1.1.0+)

<NerdChangelog /> includes search, major/minor/patch filter chips, sortable/filterable MudDataGrid, and an “N of M” count.

Setup

builder.Services.AddNerdChangelog(options =>
{
    options.DataDirectory = Path.Combine(builder.Environment.ContentRootPath, "data");
    options.MaxEntriesPerFile = 50;
    // Public URL (hub / AppBar / auth). Canonical Blazor @page stays /nerd-changelog.
    options.ChangelogRoute = "/changelog";
});

var app = builder.Build();
app.UseNerdChangelogRouteOverride(); // rewrite configured route → /nerd-changelog (SSR)

app.MapRazorComponents<App>()
    .AddInteractiveServerRenderMode()
    .AddNerdChangelog(app.Services);

Ensure data/changelog*.json is copied to the output directory.

Interactive Router alias

Blazor Interactive routing uses the browser URL. When ChangelogRoute/nerd-changelog, handle Router NotFound (or navigate) by rendering <NerdChangelogPage /> when NerdChangelogEndpointExtensions.IsChangelogRouteAlias(path, options) is true.

JSON schema

[
  {
    "changeType": "major|minor|patch",
    "date": "YYYY-MM-DD",
    "time": "HH:MM",
    "title": "Short headline",
    "description": "1–3 sentences summarizing the delta since the previous entry"
  }
]

Newest entry at index 0. Max 50 entries per file; then create changelog-{N+1}.json.

Routes

Path Role
/nerd-changelog Canonical Blazor @page (always)
options.ChangelogRoute Public URL — default /nerd-changelog, overridable

Embed <NerdChangelog /> anywhere DI is registered.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.2 172 8/8/2026
1.1.1 88 8/8/2026
1.1.0 119 8/7/2026
1.0.1 95 8/7/2026