-
Notifications
You must be signed in to change notification settings - Fork 102
dotnet: Add support for both LTS (8) and Latest (9) #5881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nelsontkq
wants to merge
9
commits into
getsolus:main
Choose a base branch
from
nelsontkq:dotnet-lts-and-latest
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
6f27a6a
to
d0e6980
Compare
279a240
to
747ebc1
Compare
**Summary** Security fixes and some performance increases. **Security** Includes fixes for: - CVE-2025-30399 | .NET Remote Code Execution Vulnerability - CVE-2025-26646 | .NET and Visual Studio Spoofing Vulnerability - CVE-2025-26682 | .NET Denial of Service Vulnerability - CVE-2025-24070 | .NET Elevation of Privilege Vulnerability - CVE-2025-21172 | .NET Remote Code Execution Vulnerability - CVE-2025-21176 | .NET Elevation of Priviledge Vulnerability - CVE-2025-21173 | .NET Denial of Service Vulnerability
**Summary** Each major version may require re-bootstrapping if more bootstrap packages were added. This should only ever occur in RC branches
747ebc1
to
db9804a
Compare
48d3cb7
to
8d596bc
Compare
2 tasks
@nelsontkq our tooling currently cannot handle landing the same package twice to the build server from the same PR (IIUC). @silkeh suggested to split this PR to two part. I think one part for the update and another part for the dogfooding+rebuild. |
silkeh
requested changes
Jun 25, 2025
EbonJaeger
added a commit
that referenced
this pull request
Jun 25, 2025
**Summary** Update the `PackageBumped` check to check each commit individually, and check the untracked/modified files separately. Resolves #5900 **Test Plan** Ran locally against #5881. It now finds: ``` WRN packages/d/dotnet/package.yml:1: Package release is not incremented by 1 (ref: dc4f4a2) ``` Previously, it found: ``` WRN packages/d/dotnet-8/package.yml:1: Package release is not 1 ERR packages/d/dotnet-8/pspec_x86_64.xml:1: Package release is not 1 WRN packages/d/dotnet/package.yml:1: Package release is not incremented by 1 ERR packages/d/dotnet/pspec_x86_64.xml:1: Package release is not incremented by 1 ``` **Checklist** - [x] ~~Package was built and tested against unstable~~ - [ ] This change could gainfully be listed in the weekly sync notes once merged <!-- Write an appropriate message in the Summary section, then add the "Topic: Sync Notes" label -->
**Summary** .NET 9 focuses on cloud-native performance, shipping with major runtime speed improvements, and a new feature switch model. Libraries add LINQ’s CountBy/AggregateBy, upgrades to System.Text.Json, and new cryptography APIs. Full release notes can be found [here](https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-9/overview). **Security** Includes fixes for: - CVE-2024-43498 | .NET Remote Code Execution Vulnerability - CVE-2024-43499 | .NET Denial of Service Vulnerability - CVE-2025-21171 | .NET Remote Code Execution Vulnerability - CVE-2025-21172 | .NET Remote Code Execution Vulnerability - CVE-2025-21173 | .NET Elevation of Privilege Vulnerability - CVE-2025-21176 | .NET Remote Code Execution Vulnerability - CVE-2025-24070 | .NET Elevation of Privilege Vulnerability - CVE-2025-26646 | .NET and Visual Studio Spoofing Vulnerability - CVE-2025-26682 | .NET Denial of Service Vulnerability - CVE-2025-30399 | .NET Remote Code Execution Vulnerability
** Summary ** Rebuilding with the dotnet-8 sdk to confirm that using the new cli works as intended.
**Summary** Almost 2 years of updates! Full release notes can be found [here](https://www.openra.net/news/).
**Summary** More supported tablets and fixes. Release notes can be found [here](https://github.com/OpenTabletDriver/OpenTabletDriver/releases).
8d596bc
to
2183a6b
Compare
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
Dotnet
.NET 9 focuses on cloud-native performance, shipping with major runtime speed improvements, and a new feature switch model. Libraries add LINQ’s CountBy/AggregateBy, upgrades to System.Text.Json, and new cryptography APIs.
Full release notes can be found here.
This also adds support for both the LTS and Latest .net runtime and SDKs.
openra
Almost 2 years of updates!
Full release notes can be found here.
OpenTabletDriver
More supported tablets and fixes.
Release notes can be found here.
Security
.NET 8 minor version update:
.NET 9:
Test Plan
dotnet-8
can run an 8 binarydotnet-8
+dotnet-8-sdk
-- can build 8 projdotnet
can run a 9 binarydotnet
+dotnet-sdk
can build dotnet 9 projdotnet-8
+dotnet
-- can run dotnet 8 and 9 programsdotnet
,dotnet-8
,dotnet-8-sdk
,dotnet-sdk
-- can build dotnet 8 and 9 projsChecklist
Resolves #5748