Upgrade Blazorise packages to version 2.0.4#25264
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Upgrades Blazorise dependencies to 2.0.4 to prevent IconName enum value shifts from breaking icon rendering when ABP components are compiled against a different Blazorise patch level.
Changes:
- Bump centrally managed Blazorise packages (
Blazorise*) from 2.0.0 to 2.0.4 inDirectory.Packages.props. - Update template
.csprojfiles to useBlazorise.Bootstrap5andBlazorise.Icons.FontAwesomeversion 2.0.4. - Add a new entry to
docs/en/package-version-changes.mddocumenting the version bump.
Reviewed changes
Copilot reviewed 14 out of 14 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyCompanyName.MyProjectName.Blazor.Server.Host.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in module host template. |
| templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host.Client/MyCompanyName.MyProjectName.Blazor.Host.Client.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in module WASM client host template. |
| templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyCompanyName.MyProjectName.Blazor.WebApp.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in app webapp template. |
| templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in tiered webapp server template. |
| templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in tiered webapp client template. |
| templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Client.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in webapp client template. |
| templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in server template. |
| templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyCompanyName.MyProjectName.Blazor.Server.Tiered.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in tiered server template. |
| templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Client/MyCompanyName.MyProjectName.Blazor.Client.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in client template. |
| templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Client/MyCompanyName.MyProjectName.Blazor.WebAssembly.Client.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in no-layers WASM client template. |
| templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in no-layers server template. |
| templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyCompanyName.MyProjectName.Blazor.Server.Mongo.csproj | Update Blazorise Bootstrap5 + FontAwesome package versions to 2.0.4 in no-layers Mongo server template. |
| docs/en/package-version-changes.md | Add release note entry for the Blazorise 2.0.0 → 2.0.4 bump. |
| Directory.Packages.props | Central version bump for Blazorise core packages to 2.0.4. |
Comment on lines
+5
to
+10
| | Package | Old Version | New Version | PR | | ||
| |---------|-------------|-------------|-----| | ||
| | Blazorise | 2.0.0 | 2.0.4 | #25264 | | ||
| | Blazorise.Components | 2.0.0 | 2.0.4 | #25264 | | ||
| | Blazorise.DataGrid | 2.0.0 | 2.0.4 | #25264 | | ||
| | Blazorise.Snackbar | 2.0.0 | 2.0.4 | #25264 | |
enisn
approved these changes
Apr 15, 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.
Blazorise 2.0.4 introduced two new enum members (
MinusandPlus) into the middle of theIconNameenum (which has no explicit integer values). This caused all subsequent enum values to shift, breaking icon rendering in ABP components compiled against Blazorise 2.0.0.For example,
IconName.Times(error icon) resolved toIconName.Ticket, andIconName.QuestionCircle(confirmation icon) resolved toIconName.Print.This PR upgrades all Blazorise packages from 2.0.0 to 2.0.4 to fix the enum mismatch.
Related: https://abp.io/support/questions/10593