Upgrade dependencies to latest versions - #787
Merged
Merged
Conversation
tjementum
force-pushed
the
upgrade-dependencies
branch
2 times, most recently
from
November 10, 2025 17:37
5de4537 to
e7ea895
Compare
tjementum
force-pushed
the
upgrade-dependencies
branch
from
November 10, 2025 17:53
e7ea895 to
3b4eb8f
Compare
|
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.



Summary & Motivation
Upgrade .NET, frontend, and developer tooling dependencies to their latest versions.
SONAR_TOKENenvironment variable for authentication.dotnet testinstead ofdotnet dotcover test, to dramatically speed up build times when having many tests.Enum.ToString()withnameof(Enum)for all enum comparisons..workspacefolder in.gitignore.useDebouncehook.Note: Lingui and Rsbuild packages were not upgraded due to
@lingui/swc-plugincompatibility constraints. The current version 5.0.1 is compatible withswc_core0.106.3, while the latest version 5.6.1 requiresswc_core27.0.6. However, Rspack 1.6.1 (used by Rsbuild) bundlesswc_coreversion 46, which is incompatible with both versions of the Lingui plugin. Since SWC plugin support is experimental and does not guarantee semver backwards compatibility between differentswc_coreversions, upgrading these packages would break the internationalization functionality.Downstream projects
Update GitHub Actions workflows to use Node.js 24 in
.github/workflows/your-self-contained-system.yml:Update SonarScanner commands for version 11.0 to use
SONAR_TOKENenvironment variable instead of parameters:Note: The
SONAR_TOKENshould be set as an environment variable in the step'senv:section.Replace
dotnet dotcover testwithdotnet testwhen SonarCloud is disabled to speed up builds:If downstream projects have custom components with arbitrary CSS variable syntax, update CSS variable references from brackets to parentheses for Tailwind v4 compatibility:
Note: CSS variable assignments remain unchanged (e.g.,
[--color:red]).Run the developer CLI format commands to apply new Biome and JetBrains code cleanup rules:
Checklist