mirror of
https://github.com/RandomNinjaAtk/arr-scripts.git
synced 2026-03-02 22:57:35 -05:00
[FEATURE] - Radarr/Sonarr - Update support for dotnet8 #154
Labels
No labels
Needs Triage
Not Reproducible
Upstream Issue
User Error
bug
documentation
enhancement
good first issue
help wanted
invalid
lidarr
lidarr
question
radarr
readarr
sabnzbd
sonarr
synology (host)
unraid (host)
waiting for logs
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/arr-scripts#154
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tboucher204 on GitHub (Jun 1, 2024).
Originally assigned to: @beaver-coder on GitHub.
Is your feature request related to a problem? Please describe.
dotnet8 is not supported in Alpine 3.20 and will become an issue for anyone updating Sonarr and Radarr after May 31, 2024. Linuxserver.io rebased to Alpine 3.20 on May 31st and Alpine has dropped support for dotnet7 starting with 3.20. Your setup.bash is configured to install dotnet7, which means it will not be able to find it and errors occur after that because dotnet is no longer available.
Describe the solution you'd like
If your arr-scripts can support dotnet8, just update the setup.bash to install that version. Otherwise, check into updating the scripts to support dotnet8.
Describe alternatives you've considered
The only alternative I have tried is specifying a specific Radarr version prior to the rebase by Linuxserver.io. I suppose, I could also just create my own setup.bash which would use dotnet8 but have not tried that.
Additional context

@RandomNinjaAtk commented on GitHub (Jun 2, 2024):
These are just scripts take your issue upstream….
Edit: Also not aware of any current issues with the scripts that could be related to this request…
@beaver-coder commented on GitHub (Aug 7, 2024):
This guy actually was on to something, but I figured out the issue.
In the setup.bash file for sonarr-extended and radarr-extended, you have a call for:
"http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet7-runtime"
dotnet7-runtime no longer exists for alpine linux. This needs to be updated to:
http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet8-runtime
I forked it, and it fixed the issue for me. Recyclarr would not run otherwise.
I opened pull requests to fix this is sonarr and radarr:
#293 and #294
@RandomNinjaAtk commented on GitHub (Aug 8, 2024):
@beaver-coder PR's merged and resolved this request