Skip to content

fix(video): avoid UAF crashes during video reinit (reproducible on Vulkan) - #5346

Merged
ReenigneArcher merged 1 commit into
LizardByte:masterfrom
psyke83:vulkan_uaf_fix
Jun 28, 2026
Merged

ReenigneArcher merged 1 commit into
LizardByte:masterfrom
psyke83:vulkan_uaf_fix

Conversation

@psyke83

@psyke83 psyke83 commented Jun 27, 2026 •

Copy link
Copy Markdown
Contributor

Description

On Linux with the Vulkan encoder, reinit triggered by display switching or mode changes can crash Sunshine due to packets in flight after encoder teardown.

With extra debug logging, this pattern was occurring:

    Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.625]: Warning: [crash] encode_avcodec session=0x7fd8c89ad480 thread=140569594554048 avctx=0x7fd8c8c7f980 hw_frames=0x7fd8c883a940 FFmpeg frames ctx=0x7fd8c8a6b200
    Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: PACKET DESTROY 0x7fd8c8b76d00
    Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: [crash] SESSION DESTROY START 0x7fd8c89ad480
    Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: PACKET DESTROY 0x7fd8e8bfd490
    Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: [crash] Calling avcodec_ctx.reset()
    Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: [crash] SESSION DESTROY AFTER RESET 0x7fd8c89ad480
    Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: [crash] Calling device.reset()
    Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.629]: Warning: PACKET DESTROY 0x7fd8c882de40
    Jun 26 23:57:21 archlinux kernel: rtsp::handler[263877]: segfault at 7fd8a0af7e20 ip 00007fd8a0af7e20 sp 00007fd8ebffd638 error 14 likely on CPU 11 (core 3, socket 0)
    Jun 26 23:57:21 archlinux kernel: Code: Unable to access opcode bytes at 0x7fd8a0af7df6.
    Jun 26 23:57:21 archlinux systemd-coredump[263973]: Process 263621 (sunshine) of user 1000 terminated abnormally with signal 11/SEGV, processing...
    Jun 26 23:57:21 archlinux systemd[1]: Started Process Core Dump (PID 263973/UID 0).
    Jun 26 23:57:21 archlinux systemd[1]: Started Pass systemd-coredump journal entries to relevant user for potential DrKonqi handling.
    Jun 26 23:57:22 archlinux systemd-coredump[263974]: [🡕] Process 263621 (sunshine) of user 1000 dumped core.
    
                                                        Stack trace of thread 263877:
                                                        #0  0x00007fd8a0af7e20 n/a (libvulkan_radeon.so + 0xf7e20)
                                                        #1  0x00007fd8a0bcd8cf n/a (libvulkan_radeon.so + 0x1cd8cf)
                                                        #2  0x00005636d70c0ea4 ff_vk_unmap_buffers (sunshine + 0x45dea4)
                                                        #3  0x00005636d70c100b ff_vk_unmap_buffer (sunshine + 0x45e00b)
                                                        #4  0x00005636d70c102d free_data_buf (sunshine + 0x45e02d)
                                                        #5  0x00005636d7198a17 buffer_pool_flush (sunshine + 0x535a17)
                                                        #6  0x00005636d7198c26 buffer_replace (sunshine + 0x535c26)
                                                        #7  0x00005636d704596e av_packet_unref (sunshine + 0x3e296e)
                                                        #8  0x00005636d70459da av_packet_free (sunshine + 0x3e29da)
                                                        #9  0x00005636d6eb51a8 _ZNSt10unique_ptrIN5video12packet_raw_tESt14default_deleteIS1_EED2Ev.lto_priv.0 (sunshine + 0x2521a8)
                                                        #10 0x00005636d6ea6b69 _ZN6stream20videoBroadcastThreadERN5boost4asio21basic_datagram_socketINS1_2ip3udpENS1_15any_io_executorEEE (sunshine + 0x243b69)
                                                        #11 0x00005636d7f4f749 execute_native_thread_routine (sunshine + 0x12ec749)
                                                        #12 0x00007fd938a97739 n/a (libc.so.6 + 0x97739)
                                                        #13 0x00007fd938b1bedc n/a (libc.so.6 + 0x11bedc)

Since an in-flight packet's packet_raw_avcodec destructor was calling av_packet_free(..) after device.reset(), a UAF-type SEGFAULT would manifest. Moving the breakout check of the encoding loop to check immediately before encode() resolves the issue on my system via repeated stress testing. It may be possible that in-flight packets can still be active, which may necessitate future refcounting of packets in flight and waiting for it to drop to zero before breaking out of the encode loop, but for now, this minimal change fully resolves the issue on my system.

Screenshot

Issues Fixed or Closed

Roadmap Issues

Type of Change

  • feat: New feature (non-breaking change which adds functionality)
  • fix: Bug fix (non-breaking change which fixes an issue)
  • docs: Documentation only changes
  • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semicolons, etc.)
  • refactor: Code change that neither fixes a bug nor adds a feature
  • perf: Code change that improves performance
  • test: Adding missing tests or correcting existing tests
  • build: Changes that affect the build system or external dependencies
  • ci: Changes to CI configuration files and scripts
  • chore: Other changes that don't modify src or test files
  • revert: Reverts a previous commit
  • BREAKING CHANGE: Introduces a breaking change (can be combined with any type above)

Checklist

  • Code follows the style guidelines of this project
  • Code has been self-reviewed
  • Code has been commented, particularly in hard-to-understand areas
  • Code docstring/documentation-blocks for new or existing methods/components have been added or updated
  • Unit tests have been added or updated for any new or modified functionality

AI Usage

  • None: No AI tools were used in creating this PR
  • Light: AI provided minor assistance (formatting, simple suggestions)
  • Moderate: AI helped with code generation or debugging specific parts
  • Heavy: AI generated most or all of the code changes

@psyke83

psyke83 commented Jun 27, 2026

Copy link
Copy Markdown
Contributor Author

Pinging @Kishi85; to be clear, I'm also stress testing with your #5257 applied on my local build to avoid the non-UAF type segfault that can also occur.

@psyke83

psyke83 commented Jun 27, 2026 •

Copy link
Copy Markdown
Contributor Author

@Kishi85 worth nothing: stress testing this PR brought to my attention a memory leak issue that occurs on reinit (display or mode change initiated) with either Vulkan or VAAPI. It affects master branch, so it's not caused by this PR or your #5257.

My mode change script can trigger the memory leak on my system. Each invocation (100 cycles) roughly doubles Sunshine's memory usage, and display mode switching may leak even faster. I'll investigate that later, but keep in mind that if it also happens for you, it may influence long-term/extended stress testing of this PR and #5257.

Edit: quick testing confirms that it's mostly an issue with pipewire capture, but kmsgrab may also have a slight leak (100 mode change cycles increases memory by ~10%).

@Kishi85

Kishi85 commented Jun 27, 2026 •

Copy link
Copy Markdown
Contributor

Good catch on the UAF and your fix looks reasonable to me as it keeps it rather simple yet seems to cover the issue (and if it for some reason doesn't in all cases you've already mentioned a solution by adding packet refcounting).

A memory leak now becoming visible is not that surprising as it was masked by crashes from this UAF and the nullptr deref from #5257. I've tried to run sunshine (master + #5257 + this PR) with valgrind to dig into the leak but I've had no luck getting that to run so far.

EDIT: Forgot to say that I can also confirm the leak as you described. It's adding around the same size of sunshine's initial memory footprint per 100 iterations of your testscript (with timeout=0)

@Kishi85

Kishi85 commented Jun 27, 2026 •

Copy link
Copy Markdown
Contributor

Here's a diff for pmap $(pidof sunshine) > a/b for exactly one capture re-init (via single display switch):

--- a   2026-06-27 08:18:29.614814986 +0200
+++ b   2026-06-27 08:18:43.653875790 +0200
@@ -9,2 +9,2 @@
-00007f2d50000000  31980K rw---   [ anon ]
-00007f2d51f3b000  33556K -----   [ anon ]
+00007f2d50000000  40744K rw---   [ anon ]
+00007f2d527ca000  24792K -----   [ anon ]
@@ -20 +20 @@
-00007f2d5f816000   8236K rw---   [ anon ]
+00007f2d5f02c000  16340K rw---   [ anon ]
@@ -48,2 +48,2 @@
-00007f2d98000000   1348K rw---   [ anon ]
-00007f2d98151000  64188K -----   [ anon ]
+00007f2d98000000   1352K rw---   [ anon ]
+00007f2d98152000  64184K -----   [ anon ]
@@ -1282 +1282 @@
- total          3317952K
+ total          3326056K

The increase seems to be around 2-15MB per full capture re-init for kwingrab/portalgrab and the value is fluctuating within that range.

If using KMS I cannot see a memory leak with pmap (total is not increasing as it is missing from the diff):

--- a   2026-06-27 08:24:04.236740409 +0200
+++ b   2026-06-27 08:24:22.173059455 +0200
@@ -39,2 +39,2 @@
-00007fca48000000  43772K rw---   [ anon ]
-00007fca4aabf000  21764K -----   [ anon ]
+00007fca48000000  51512K rw---   [ anon ]
+00007fca4b24e000  14024K -----   [ anon ]

So the memory leak should be somewhere within the code related to pipewire-based capture methods (pipewire.cpp/portalgrab.cpp/kwingrab.cpp) and yet another separate issue.

…lkan)

On Linux with the Vulkan encoder, reinit triggered by display switching
or mode changes can crash Sunshine due to packets in flight after encoder
teardown.

With extra debug logging, this pattern was occurring:

Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.625]: Warning: [crash] encode_avcodec session=0x7fd8c89ad480 thread=140569594554048 avctx=0x7fd8c8c7f980 hw_frames=0x7fd8c883a940 FFmpeg frames ctx=0x7fd8c8a6b200
Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: PACKET DESTROY 0x7fd8c8b76d00
Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: [crash] SESSION DESTROY START 0x7fd8c89ad480
Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: PACKET DESTROY 0x7fd8e8bfd490
Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: [crash] Calling avcodec_ctx.reset()
Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: [crash] SESSION DESTROY AFTER RESET 0x7fd8c89ad480
Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.628]: Warning: [crash] Calling device.reset()
Jun 26 23:57:21 archlinux sunshine[263621]: [2026-06-26 23:57:21.629]: Warning: PACKET DESTROY 0x7fd8c882de40
Jun 26 23:57:21 archlinux kernel: rtsp::handler[263877]: segfault at 7fd8a0af7e20 ip 00007fd8a0af7e20 sp 00007fd8ebffd638 error 14 likely on CPU 11 (core 3, socket 0)
Jun 26 23:57:21 archlinux kernel: Code: Unable to access opcode bytes at 0x7fd8a0af7df6.
Jun 26 23:57:21 archlinux systemd-coredump[263973]: Process 263621 (sunshine) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Jun 26 23:57:21 archlinux systemd[1]: Started Process Core Dump (PID 263973/UID 0).
Jun 26 23:57:21 archlinux systemd[1]: Started Pass systemd-coredump journal entries to relevant user for potential DrKonqi handling.
Jun 26 23:57:22 archlinux systemd-coredump[263974]: [🡕] Process 263621 (sunshine) of user 1000 dumped core.

                                                    Stack trace of thread 263877:
                                                    #0  0x00007fd8a0af7e20 n/a (libvulkan_radeon.so + 0xf7e20)
                                                    #1  0x00007fd8a0bcd8cf n/a (libvulkan_radeon.so + 0x1cd8cf)
                                                    #2  0x00005636d70c0ea4 ff_vk_unmap_buffers (sunshine + 0x45dea4)
                                                    #3  0x00005636d70c100b ff_vk_unmap_buffer (sunshine + 0x45e00b)
                                                    #4  0x00005636d70c102d free_data_buf (sunshine + 0x45e02d)
                                                    #5  0x00005636d7198a17 buffer_pool_flush (sunshine + 0x535a17)
                                                    #6  0x00005636d7198c26 buffer_replace (sunshine + 0x535c26)
                                                    #7  0x00005636d704596e av_packet_unref (sunshine + 0x3e296e)
                                                    #8  0x00005636d70459da av_packet_free (sunshine + 0x3e29da)
                                                    #9  0x00005636d6eb51a8 _ZNSt10unique_ptrIN5video12packet_raw_tESt14default_deleteIS1_EED2Ev.lto_priv.0 (sunshine + 0x2521a8)
                                                    #10 0x00005636d6ea6b69 _ZN6stream20videoBroadcastThreadERN5boost4asio21basic_datagram_socketINS1_2ip3udpENS1_15any_io_executorEEE (sunshine + 0x243b69)
                                                    #11 0x00005636d7f4f749 execute_native_thread_routine (sunshine + 0x12ec749)
                                                    #12 0x00007fd938a97739 n/a (libc.so.6 + 0x97739)
                                                    #13 0x00007fd938b1bedc n/a (libc.so.6 + 0x11bedc)

Since an in-flight packet's packet_raw_avcodec destructor was calling av_packet_free(..) after device.reset(), a UAF-type SEGFAULT would manifest. Moving the breakout check
of the encoding loop to check immediately before encode() resolves the issue on my system via repeated stress testing. It may be possible that in-flight packets can still
be active, which may necessitate future refcounting of packets in flight and waiting for it to drop to zero before breaking out of the encode loop, but for now, this minimal change
fully resolves the issue on my system.
@codecov

codecov Bot commented Jun 28, 2026

Copy link
Copy Markdown

Bundle Report

Bundle size has no change ✅

@codecov

codecov Bot commented Jun 28, 2026 •

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 50.00000% with 1 line in your changes missing coverage. Please review.
✅ Project coverage is 27.53%. Comparing base (fcc4395) to head (64fcac3).
✅ All tests successful. No failed tests found.

Files with missing lines Patch % Lines
src/video.cpp 50.00% 1 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #5346      +/-   ##
==========================================
+ Coverage   27.51%   27.53%   +0.01%     
==========================================
  Files         113      113              
  Lines       25593    25593              
  Branches    11237    11237              
==========================================
+ Hits         7043     7048       +5     
- Misses      14599    15513     +914     
+ Partials     3951     3032     -919     
Flag Coverage Δ
Archlinux 0.00% <0.00%> (ø)
FreeBSD-amd64 13.31% <0.00%> (+<0.01%) ⬆️
Homebrew-macos-14 21.02% <0.00%> (ø)
Homebrew-macos-15 21.19% <0.00%> (+<0.01%) ⬆️
Homebrew-macos-26 21.30% <0.00%> (ø)
Homebrew-ubuntu-24.04 13.06% <0.00%> (ø)
Linux-AppImage 12.39% <0.00%> (ø)
Windows-AMD64 15.26% <0.00%> (ø)
Windows-ARM64 13.29% <0.00%> (ø)
macOS-arm64 19.25% <0.00%> (ø)
macOS-x86_64 18.71% <0.00%> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/video.cpp 52.68% <50.00%> (ø)

... and 30 files with indirect coverage changes


Continue to review full report in Codecov by Harness.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update fcc4395...64fcac3. Read the comment docs.

@ReenigneArcher
ReenigneArcher merged commit 7ecd028 into LizardByte:master Jun 28, 2026
63 of 64 checks passed
@sonarqubecloud

Copy link
Copy Markdown

eball added a commit to Above-Os/Sunshine that referenced this pull request Sep 20, 2026
* build(homebrew): force cuda on Linux (LizardByte#5345)

* chore(deps): update vmactions/freebsd-vm action to v1.4.9 (LizardByte#5348)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/cache action to v6.1.0 (LizardByte#5349)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5347)

* chore(deps): update vmactions/freebsd-vm action to v1.5.0 (LizardByte#5352)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(video): avoid UAF crashes during video reinit (reproducible on Vulkan) (LizardByte#5346)

* build(FreeBSD): adjust CI Python dependency groups (LizardByte#5355)

* fix(video): avoid nullptr deref segfault on encode session teardown (LizardByte#5257)

* fix(flatpak): system tray permission (LizardByte#5354)

* feat(linux): pace capture at exact fractional NTSC framerates (LizardByte#5282)

* chore: use lizardbyte-common in c++ (LizardByte#5356)

Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.22.0 (LizardByte#5358)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5359)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(linux): avoid network for appstream cli & add missing deps (LizardByte#5363)

* fix(linux/pipewire): avoid memory leaks (LizardByte#5360)

Co-authored-by: Psyke83 <psyke83@users.noreply.github.com>

* feat(macOS): libdispalydevice integration (LizardByte#5338)

Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* perf(deps): switch to upstream nanors runtime dispatching (LizardByte#5369)

* chore(deps): update dependency @lucide/vue to v1.23.0 (LizardByte#5365)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `99c45d3` to `1f76427` (LizardByte#5375)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `99c45d3` to `1f76427`.
- [Commits](moonlight-stream/moonlight-common-c@99c45d3...1f76427)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 1f764276e848ae2ec7815ef90d1c1748272e074a
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump third-party/nanors from `57ee5e9` to `c3529fd` (LizardByte#5376)

Bumps [third-party/nanors](https://github.com/sleepybishop/nanors) from `57ee5e9` to `c3529fd`.
- [Commits](sleepybishop/nanors@57ee5e9...c3529fd)

---
updated-dependencies:
- dependency-name: third-party/nanors
  dependency-version: c3529fda520f53cd007328ba30b6ad3f89947722
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update astral-sh/setup-uv action to v8.3.0 (LizardByte#5379)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(Linux): Allow building with Vulkan but without Wayland (LizardByte#5377)

Signed-off-by: James Le Cuirot <chewi@gentoo.org>

* chore(deps): lock file maintenance (LizardByte#5383)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: revise bug report template for clarity and rules (LizardByte#5387)

* chore(sonar): ignore submodules (LizardByte#5390)

* ci: fix PR checkouts on arch and flatpak (LizardByte#5391)

* chore: Remove setuptools from glad dependencies (LizardByte#5392)

* build(deps): bump third-party/moonlight-common-c from `1f76427` to `2ea4775` (LizardByte#5382)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `1f76427` to `2ea4775`.
- [Commits](moonlight-stream/moonlight-common-c@1f76427...2ea4775)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 2ea47752c3051d72a64bcca190024e8b354fa1ef
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: move nanors to moonlight-common-c submodule (LizardByte#5393)

* chore(l10n): update translations (LizardByte#5386)

* chore(deps): update astral-sh/setup-uv action to v8.3.2 (LizardByte#5389)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux): drop implicit DRM master for card fds (LizardByte#5286)

Co-authored-by: Kishi85 <41839133+Kishi85@users.noreply.github.com>

* refactor(sonar): migrate worker threads to std::jthread (LizardByte#5398)

* chore(packaging): Drop Windows NSIS builds and rename ZIP to lite (LizardByte#5405)

* chore(l10n): update translations (LizardByte#5403)

chore(l10n): update translations sunshine.json (Spanish)

* build(deps): bump third-party/moonlight-common-c from `2ea4775` to `82e2514` (LizardByte#5402)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `2ea4775` to `82e2514`.
- [Commits](moonlight-stream/moonlight-common-c@2ea4775...82e2514)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 82e25148549d249a80aaf4afc68e2abb07072edf
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.24.0 (LizardByte#5396)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.6 (LizardByte#5395)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux): avoid memory leak from unnecessary encoder re-probing (LizardByte#5404)

* chore(deps): Update build-deps to v2026.713.132551 (LizardByte#5409)

* chore(sonar): change NOSONAR comment style (LizardByte#5410)

* chore(deps): update actions/setup-node action to v7 (LizardByte#5413)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(linux/vaapi): VAAPI encoder improvements (LizardByte#5388)

* chore(deps): update dependency @vitejs/plugin-vue to v6.0.8 (LizardByte#5418)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(docs/linux): add Portal and EGL context tips (LizardByte#5419)

* fix(packaging/windows): Allow WiX installer downgrades (LizardByte#5435)

* feat(linux): use connector name as default display name on linux (LizardByte#5423)

* chore(deps): update actions/checkout action to v7.0.1 (LizardByte#5412)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/setup-dotnet action to v6 (LizardByte#5422)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.1 (LizardByte#5426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.7 (LizardByte#5433)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.25.0 (LizardByte#5424)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.7 (LizardByte#5434)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5431)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `82e2514` to `703a069` (LizardByte#5428)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `82e2514` to `703a069`.
- [Commits](moonlight-stream/moonlight-common-c@82e2514...703a069)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 703a06946861ff82cd33e5e13c59c1b017f7ded9
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.40 (LizardByte#5421)

* chore(deps): update dependency vue to v3.5.40

* Add @vue/server-renderer lock entry

Updates package-lock.json to include @vue/server-renderer@3.5.40 and its Vue SSR runtime dependencies, keeping the lockfile in sync with the installed dependency graph.

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.2 (LizardByte#5436)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/setup-python action to v7 (LizardByte#5437)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update astral-sh/setup-uv action to v9 (LizardByte#5438)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5420)

* build(deps): bump third-party/moonlight-common-c from `703a069` to `e41355e` (LizardByte#5439)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `703a069` to `e41355e`.
- [Commits](moonlight-stream/moonlight-common-c@703a069...e41355e)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: e41355ea01670fd4c830b384009d31dd0339a705
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.26.0 (LizardByte#5440)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* refactor: clients section to dynamically fetch from app-directory (LizardByte#5380)

* fix(amf): wire h264_amf coder and profile mapping (LizardByte#5442)

Co-authored-by: k4idyn <252943111+k4idyn@users.noreply.github.com>

* chore: bump FreeBSD version from 14.4 to 15.1 (LizardByte#5445)

* chore: move nv-codec-headers to build-deps submodule (LizardByte#5449)

* fix(linux/kms): use same methodology for display name matching and list generation (LizardByte#5448)

* chore(l10n): update translations (LizardByte#5450)

* fix(nvenc): dynamic nv codec sdk selection (LizardByte#5451)

* chore(deps): update dependency @lucide/vue to v1.27.0 (LizardByte#5452)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.8 (LizardByte#5453)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): Update build-deps to v2026.724.203728 (LizardByte#5446)

* build(deps): bump third-party/lizardbyte-common from `06cd442` to `011ad2b` (LizardByte#5457)

* build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `06cd442` to `011ad2b`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@06cd442...011ad2b)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: 011ad2bb139083dcf4ec21f9c09f07470891a668
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* style: run clang-format across C++ sources

Reformatted conditionals, loops, and long function calls across core, platform, NVENC, and test helper code to match updated formatting rules, including minor spacing normalization in type declarations. These are style-only edits with no intended behavior changes.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5455)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: migrate to qt tray for all platforms (LizardByte#5260)

* fix(FreeBSD): Qt6 tray dependency package (LizardByte#5458)

* chore(deps): update lizardbyte/actions action to v2026.728.214955 (LizardByte#5459)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* test(tray): add system tray tests (LizardByte#4221)

* fix(web-ui): Welcome page styling (LizardByte#5466)

* chore(deps): update vmactions/freebsd-vm action to v1.5.3 (LizardByte#5478)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.28.0 (LizardByte#5463)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5470)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.9 (LizardByte#5473)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.41 (LizardByte#5475)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5479)

* chore(docker): fix hadolint SC3014 (LizardByte#5482)

* build(macOS): fix macOS framework signing glob (LizardByte#5483)

* build(macOS): sign only valid framework bundles (LizardByte#5484)

* feat(logging): rotating log files (LizardByte#5485)

* chore(l10n): update translations (LizardByte#5487)

* chore(deps): update dependency @lucide/vue to v1.30.0 (LizardByte#5486)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(unix): add nv-codec-headers include path (LizardByte#5488)

* ci: add workflow to publish PR artifacts (LizardByte#5491)

* chore(deps): update dependency @lucide/vue to v1.31.0 (LizardByte#5493)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux/kms)!: Use connector type index from KMS instead of self calculation (LizardByte#5489)

* build(windows): default to qt6-static (LizardByte#5497)

* feat(input): implement libvirtualhid adding new gamepad styles (LizardByte#5368)

* ci(FreeBSD): remove aarch64 (LizardByte#5516)

* chore(deps): lock file maintenance (LizardByte#5514)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(virtual-hid): remove license expiration (LizardByte#5517)

* build(homebrew): normalize remapped LCOV source paths (LizardByte#5518)

* chore(l10n): update translations (LizardByte#5507)

* fix(macOS): update build script and ci with explicit Qt6 paths (LizardByte#5502)

* chore(deps): update astral-sh/setup-uv action to v10 (LizardByte#5501)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.10 (LizardByte#5521)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux/pipewire): restore dummy buffer for software encoders and fix buffer ownership (LizardByte#5495)

Co-authored-by: luanweslley77 <luanweslley77@users.noreply.github.com>

* fix(linux/freebsd): truncate thread names to 15 characters (LizardByte#5527)

* chore(deps): update dependency @lucide/vue to v1.32.0 (LizardByte#5528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update global workflows (LizardByte#5525)

* chore(deps): update dependency @lucide/vue to v1.33.0 (LizardByte#5533)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(macOS): System tray icon disappears when restarting Sunshine (LizardByte#5504)

* fix(input): preserve aux gamepad data and bump libvirtualhid (LizardByte#5531)

* chore(l10n): update translations (LizardByte#5535)

* fix(wayland): use the current wl_output mode (LizardByte#5150)

Signed-off-by: Zach Denton <z@chdenton.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* feat(amf): add amd_max_au_size option (LizardByte#4926)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5539)

* chore: update Virtual HID requirements and mouse refresh (LizardByte#5547)

* chore(deps): update vmactions/freebsd-vm action to v1.5.4 (LizardByte#5540)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `e41355e` to `874ac95` (LizardByte#5541)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `e41355e` to `874ac95`.
- [Commits](moonlight-stream/moonlight-common-c@e41355e...874ac95)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 874ac9548f1bd6f095ef2b435c42cdde460e7821
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.9 (LizardByte#5546)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5543)

* fix(linux/publish): release the Avahi client when the poll loop stops (LizardByte#5545)

* chore(l10n): update translations (LizardByte#5548)

* build(deps): bump third-party/lizardbyte-common from `011ad2b` to `ffc027d` (LizardByte#5550)

build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `011ad2b` to `ffc027d`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@011ad2b...ffc027d)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: ffc027d7b582b8a552c9028ebc18d18ecd919d72
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5551)

chore(l10n): update translations sunshine.json (Bulgarian)

* chore: add branding images (LizardByte#5552)

* fix(pipewire): gate variable rate capture and fix fractional framerates (LizardByte#5538)

Co-authored-by: Kishi85 <41839133+Kishi85@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.11 (LizardByte#5555)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.10 (LizardByte#5556)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5557)

* feat(input): update libvirtualhid integration (LizardByte#5563)

* chore(deps): update vmactions/freebsd-vm action to v1.5.5 (LizardByte#5561)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.42 (LizardByte#5560)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.35.0 (LizardByte#5565)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5559)

* chore(deps): add vite override for codecov plugin (LizardByte#5576)

* chore(deps): update lizardbyte/actions action to v2026.829.140353 (LizardByte#5577)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): update dependency vite to v8 (LizardByte#5578)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5579)

* fix(linux/pipewire): try variable rate for non-KWin compositors (LizardByte#5569)

* chore(deps): update dependency @lucide/vue to v1.37.0 (LizardByte#5581)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5582)

* feat(session): add SUNSHINE_CLIENT_NAME environment variable (LizardByte#5465)

* fix(windows/installer): PATH update reg add /f option ordering (LizardByte#5584)

* chore(deps): lock file maintenance (LizardByte#5588)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.38.0 (LizardByte#5587)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(video): fall back to SDR when HDR isn't supported (LizardByte#5429)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix(windows): capture the configured audio sink instead of the default device (LizardByte#5408)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix(input): track/release client keycode for modifiers (LizardByte#5558)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* ci: sonar fixes (LizardByte#5594)

* chore(l10n): update translations (LizardByte#5583)

* docs: fix typo automaticaly -> automatically (LizardByte#5573)

Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>

* fix: iterator/stat utility edge cases and add tests (LizardByte#5308)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* build(Linux): use compiler-selected libgcov for coverage (LizardByte#5597)

* build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from `ac5a296` to `1fc3219` (LizardByte#5595)

build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools

Bumps [packaging/linux/flatpak/deps/flatpak-builder-tools](https://github.com/flatpak/flatpak-builder-tools) from `ac5a296` to `1fc3219`.
- [Commits](flatpak/flatpak-builder-tools@ac5a296...1fc3219)

---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
  dependency-version: 1fc32195e3e60fe5c97f0af646dec7a99df5962b
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.39.0 (LizardByte#5596)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Merge commit from fork

* Merge commit from fork

* Merge commit from fork

* Merge commit from fork

* build(Windows): resolve system Node.js package (LizardByte#5599)

* refactor: pairing flow, pairing tests, and inline struct comments (LizardByte#5602)

* chore(deps): update dependency @lucide/vue to v1.40.0 (LizardByte#5606)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5600)

* build(docker): add bake config (LizardByte#5607)

* chore(deps): update dependency @lucide/vue to v1.41.0 (LizardByte#5609)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(flatpak): drop imagemagick dep (LizardByte#5610)

* ci: add Cloudsmith packaging support (LizardByte#5611)

* ci(release): avoid workflow concurrency deadlock (LizardByte#5612)

* chore(deps): update lizardbyte/actions action to v2026.905.43751 (LizardByte#5614)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update global workflows (LizardByte#5616)

* style(homebrew): fix homebrew validation (LizardByte#5620)

* build(deps): bump third-party/lizardbyte-common from `ffc027d` to `f9d91e1` (LizardByte#5624)

* build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `ffc027d` to `f9d91e1`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@ffc027d...f9d91e1)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: f9d91e1d29b7473f58e43acde4579da4e56c4abe
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump clang-format to 23.1.0

Update the lockfile and dependency metadata to use clang-format 23.1.0 for the lint-c and dev extras. This refreshes the resolved package artifacts and version constraints in uv.lock.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): bump libvirtualhid (LizardByte#5585)

* fix(macOS): enable microphone permission flow (LizardByte#5621)

* build(deps): bump third-party/tray from `1d0d696` to `c329d9f` (LizardByte#5630)

* build(deps): bump third-party/tray from `1d0d696` to `c329d9f`

Bumps [third-party/tray](https://github.com/LizardByte/tray) from `1d0d696` to `c329d9f`.
- [Release notes](https://github.com/LizardByte/tray/releases)
- [Commits](LizardByte/tray@1d0d696...c329d9f)

---
updated-dependencies:
- dependency-name: third-party/tray
  dependency-version: c329d9fd0d39dfb47f0f2fb5467e1db2e8a1d623
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* test(tray): enable tray test hooks

Gate `TRAY_ENABLE_TEST_HOOKS` behind `BUILD_TESTS` in dependency setup and propagate the same definition to test targets when tray tests are enabled. This keeps production tray builds unchanged while allowing tray-specific test hook code to be compiled consistently for supported platforms.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* build(Linux): add aarch64 AppImage (LizardByte#5627)

* chore(l10n): update translations (LizardByte#5626)

* ci(FreeBSD): enable docs (LizardByte#5631)

* feat(linux/pipewire): add support for unpaced capture when appropriate (LizardByte#5629)

* chore(deps): update dependency @lucide/vue to v1.42.0 (LizardByte#5636)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5634)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): Update build-deps to v2026.905.170812 (LizardByte#5637)

* build(Linux): enable openSUSE Leap 16.0 and Tumbleweed (LizardByte#5633)

* chore(flatpak): update org.kde.Platform runtime to 6.11 (LizardByte#5639)

* feat(config): add gamepad_driver option (LizardByte#5653)

* chore(l10n): update translations (LizardByte#5632)

* chore(deps): update dependency marked to v18.0.12 (LizardByte#5648)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `874ac95` to `62e0663` (LizardByte#5657)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `874ac95` to `62e0663`.
- [Commits](moonlight-stream/moonlight-common-c@874ac95...62e0663)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 62e066388f1a1b133e0bee947b9a374311a3354b
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update lizardbyte/actions action to v2026.909.30231 (LizardByte#5664)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ubuntu docker tag to v26 (LizardByte#5666)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.6 (LizardByte#5665)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.43.0 (LizardByte#5655)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* ci(homebrew): run tests in separate step (LizardByte#5669)

* fix(deps): fix legacy nvenc presets and bump third-party/build-deps (LizardByte#5668)

* build(Linux): add Alpine packages (LizardByte#4987)

* fix(linux/vulkan): use vkGetDeviceQueue2 with FFmpeg 9.0 queue flags (LizardByte#5675)

* build(Linux): harden Qt6 dependency detection (LizardByte#5679)

* fix(av1,hevc): stop av1 probes from clobbering hevc results (LizardByte#5554)

* fix(api): return the final result of pairing (LizardByte#5680)

* fix(nvapi,nvenc): Load ARM64 DLLs on RTX Spark (LizardByte#5682)

* ci(homebrew): skip more_space action for release job (LizardByte#5683)

* chore(deps): update dependency @lucide/vue to v1.44.0 (LizardByte#5674)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(web-ui): localize config categories (LizardByte#5688)

* ci(homebrew): drop sonoma (LizardByte#5689)

* build(deps): bump third-party/plasma-wayland-protocols from `4c015e9` to `382dfab` (LizardByte#5687)

build(deps): bump third-party/plasma-wayland-protocols

Bumps [third-party/plasma-wayland-protocols](https://github.com/KDE/plasma-wayland-protocols) from `4c015e9` to `382dfab`.
- [Commits](KDE/plasma-wayland-protocols@4c015e9...382dfab)

---
updated-dependencies:
- dependency-name: third-party/plasma-wayland-protocols
  dependency-version: 382dfabda886d3f2f5c067b22e5a22376685ba78
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump third-party/doxyconfig from `b87f7e4` to `212e309` (LizardByte#5686)

* build(deps): bump third-party/doxyconfig from `b87f7e4` to `212e309`

Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `b87f7e4` to `212e309`.
- [Release notes](https://github.com/LizardByte/doxyconfig/releases)
- [Commits](LizardByte/doxyconfig@b87f7e4...212e309)

---
updated-dependencies:
- dependency-name: third-party/doxyconfig
  dependency-version: 212e3094fe6a09848d8ae058956faab27557c65c
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): install doxygen from msys2

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix: missing initializers and incorrect default for native_pen_touch (LizardByte#5693)

* build(Linux): add Ubuntu 26.10 Docker bake target (LizardByte#5622)

* fix(linux): handle NVENC in builds without CUDA (LizardByte#5698)

* fix(network): respect configured bind address (LizardByte#5700)

* fix(web-ui): add XDG Portal token reset (LizardByte#5701)

* fix(linux): export all Wayland DMA-BUF planes (LizardByte#5699)

* chore(deps): update dependency @lucide/vue to v1.45.0 (LizardByte#5694)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/doxyconfig from `212e309` to `419127b` (LizardByte#5703)

Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `212e309` to `419127b`.
- [Release notes](https://github.com/LizardByte/doxyconfig/releases)
- [Commits](LizardByte/doxyconfig@212e309...419127b)

---
updated-dependencies:
- dependency-name: third-party/doxyconfig
  dependency-version: 419127bad87f49b2d45fa957ea7302abbb49c01f
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from `1fc3219` to `de2225a` (LizardByte#5702)

build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools

Bumps [packaging/linux/flatpak/deps/flatpak-builder-tools](https://github.com/flatpak/flatpak-builder-tools) from `1fc3219` to `de2225a`.
- [Commits](flatpak/flatpak-builder-tools@1fc3219...de2225a)

---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
  dependency-version: de2225a6dee4818c1339b3cdbf29f90c471fcb7e
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(pipewire): extend KWin version check to handle 6.8 beta/RC versions (LizardByte#5704)

* Merge commit from fork

Sanitize GUI loader and plugin environment variables before privileged initialization, failing closed when the environment cannot be cleaned.

Retain CAP_SYS_ADMIN only on a dedicated DRM worker, route KMS and CUDA DRM access through it, reject queued work safely during overflow or shutdown, and drop the worker privileges when DRM access is no longer needed.

Add Linux regression coverage for the sanitizer and document the new privileged-worker interfaces.

Co-authored-by: Conn O'Griofa <749000+psyke83@users.noreply.github.com>
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>

* fix(linux): repair privileged DRM worker build (LizardByte#5706)

* fix(pipewire): gate variable rate to KWin 5.x.x - 6.7.79 (up to stable 6.7 series) (LizardByte#5705)

* test: PowerShell tests with Pester and Sonar fixes (LizardByte#5708)

* test(linux): synchronize environment sanitizer tests (LizardByte#5710)

* build(copr): use cuda redistributatle for Fedora builds (LizardByte#5719)

* build(linux): fix ubuntu 26.10 aarch64 artifact extraction (LizardByte#5720)

* chore(deps): update dependency @lucide/vue to v1.46.0 (LizardByte#5715)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5714)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v8.3.0 (LizardByte#5711)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency windows to v2025 (LizardByte#5712)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* feat(linux): use privileged EGL worker thread (LizardByte#5709)

* chore(deps): update astral-sh/setup-uv action to v10.1.0 (LizardByte#5684)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5654)

* chore(deps): bump libvirtualhid (LizardByte#5722)

* fix(flatpak): remove need to prefix commands (LizardByte#5723)

* chore(deps): update codecov/codecov-action action to v7.1.0 (LizardByte#5724)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): move boost to CPM and bump to 1.92 (LizardByte#5730)

* refactor(web-ui): single page application (LizardByte#5731)

* test(web-ui): add tests and coverage (LizardByte#5736)

* refactor(web): sonar fixes (LizardByte#5740)

* fix(pairing): replace duplicate client certificates (LizardByte#5737)

* chore(deps): update codecov/codecov-action action to v7.1.1 (LizardByte#5741)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.43 (LizardByte#5742)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5735)

* build(deps): bump third-party/nvapi from `cd6918f` to `87dca62` (LizardByte#5618)

Bumps [third-party/nvapi](https://github.com/NVIDIA/nvapi) from `cd6918f` to `87dca62`.
- [Commits](NVIDIA/nvapi@cd6918f...87dca62)

---
updated-dependencies:
- dependency-name: third-party/nvapi
  dependency-version: 87dca625e83fd89a983e19b904e5f3a580da90d2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(macOS): remove zero-initialization (LizardByte#5744)

Co-authored-by: Andy Grundman <105828+andygrundman@users.noreply.github.com>

* build(deps): bump third-party/tray from `c329d9f` to `c1f2a8a` (LizardByte#5747)

Bumps [third-party/tray](https://github.com/LizardByte/tray) from `c329d9f` to `c1f2a8a`.
- [Release notes](https://github.com/LizardByte/tray/releases)
- [Commits](LizardByte/tray@c329d9f...c1f2a8a)

---
updated-dependencies:
- dependency-name: third-party/tray
  dependency-version: c1f2a8ab56dd399b881fb7aeab4fe4fc9c58188d
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.12 (LizardByte#5745)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-router to v4.6.4 (LizardByte#5746)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(tray): move tray icon ownership to vite config (LizardByte#5761)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Signed-off-by: Zach Denton <z@chdenton.com>
Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: LizardByte-bot <108553330+LizardByte-bot@users.noreply.github.com>
Co-authored-by: Conn O'Griofa <connogriofa@gmail.com>
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>
Co-authored-by: Harold <harold@mrtz.fr>
Co-authored-by: Aliaksei Dziadziuk <djadjka.by@gmail.com>
Co-authored-by: HurricanePootis <53066639+HurricanePootis@users.noreply.github.com>
Co-authored-by: Psyke83 <psyke83@users.noreply.github.com>
Co-authored-by: martona <marton@anka.me>
Co-authored-by: Cameron Gutman <aicommander@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James Le Cuirot <chewi@gentoo.org>
Co-authored-by: 盼兮 <63710193+panxi39@users.noreply.github.com>
Co-authored-by: neatnoise <neatnoise@gmail.com>
Co-authored-by: Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com>
Co-authored-by: k4idyn <252943111+k4idyn@users.noreply.github.com>
Co-authored-by: Noklef <281545466+Noklef@users.noreply.github.com>
Co-authored-by: luanweslley77 <luanweslley77@gmail.com>
Co-authored-by: luanweslley77 <luanweslley77@users.noreply.github.com>
Co-authored-by: Zach Denton <z@chdenton.com>
Co-authored-by: pollopopo <61017252+pollopopo@users.noreply.github.com>
Co-authored-by: nikzasel <nikzasel@users.noreply.github.com>
Co-authored-by: Justin E. Oryschak <justin@oryschak.net>
Co-authored-by: matix753 <33520765+matix753@users.noreply.github.com>
Co-authored-by: tonyctalope <95322229+tonyctalope@users.noreply.github.com>
Co-authored-by: Seth Moore <sethdmoore@users.noreply.github.com>
Co-authored-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
Co-authored-by: dasepmoch <108404480+dasepmoch@users.noreply.github.com>
Co-authored-by: solidv <pedroclaro2@gmail.com>
Co-authored-by: bitness <lars_damerow@pixar.com>
Co-authored-by: Conn O'Griofa <749000+psyke83@users.noreply.github.com>
Co-authored-by: Andy Grundman <105828+andygrundman@users.noreply.github.com>
eball added a commit to Above-Os/Sunshine that referenced this pull request Sep 20, 2026
* build(homebrew): force cuda on Linux (LizardByte#5345)

* chore(deps): update vmactions/freebsd-vm action to v1.4.9 (LizardByte#5348)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/cache action to v6.1.0 (LizardByte#5349)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5347)

* chore(deps): update vmactions/freebsd-vm action to v1.5.0 (LizardByte#5352)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(video): avoid UAF crashes during video reinit (reproducible on Vulkan) (LizardByte#5346)

* build(FreeBSD): adjust CI Python dependency groups (LizardByte#5355)

* fix(video): avoid nullptr deref segfault on encode session teardown (LizardByte#5257)

* fix(flatpak): system tray permission (LizardByte#5354)

* feat(linux): pace capture at exact fractional NTSC framerates (LizardByte#5282)

* chore: use lizardbyte-common in c++ (LizardByte#5356)

Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.22.0 (LizardByte#5358)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5359)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(linux): avoid network for appstream cli & add missing deps (LizardByte#5363)

* fix(linux/pipewire): avoid memory leaks (LizardByte#5360)

Co-authored-by: Psyke83 <psyke83@users.noreply.github.com>

* feat(macOS): libdispalydevice integration (LizardByte#5338)

Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* perf(deps): switch to upstream nanors runtime dispatching (LizardByte#5369)

* chore(deps): update dependency @lucide/vue to v1.23.0 (LizardByte#5365)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `99c45d3` to `1f76427` (LizardByte#5375)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `99c45d3` to `1f76427`.
- [Commits](moonlight-stream/moonlight-common-c@99c45d3...1f76427)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 1f764276e848ae2ec7815ef90d1c1748272e074a
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump third-party/nanors from `57ee5e9` to `c3529fd` (LizardByte#5376)

Bumps [third-party/nanors](https://github.com/sleepybishop/nanors) from `57ee5e9` to `c3529fd`.
- [Commits](sleepybishop/nanors@57ee5e9...c3529fd)

---
updated-dependencies:
- dependency-name: third-party/nanors
  dependency-version: c3529fda520f53cd007328ba30b6ad3f89947722
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update astral-sh/setup-uv action to v8.3.0 (LizardByte#5379)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(Linux): Allow building with Vulkan but without Wayland (LizardByte#5377)

Signed-off-by: James Le Cuirot <chewi@gentoo.org>

* chore(deps): lock file maintenance (LizardByte#5383)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: revise bug report template for clarity and rules (LizardByte#5387)

* chore(sonar): ignore submodules (LizardByte#5390)

* ci: fix PR checkouts on arch and flatpak (LizardByte#5391)

* chore: Remove setuptools from glad dependencies (LizardByte#5392)

* build(deps): bump third-party/moonlight-common-c from `1f76427` to `2ea4775` (LizardByte#5382)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `1f76427` to `2ea4775`.
- [Commits](moonlight-stream/moonlight-common-c@1f76427...2ea4775)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 2ea47752c3051d72a64bcca190024e8b354fa1ef
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: move nanors to moonlight-common-c submodule (LizardByte#5393)

* chore(l10n): update translations (LizardByte#5386)

* chore(deps): update astral-sh/setup-uv action to v8.3.2 (LizardByte#5389)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux): drop implicit DRM master for card fds (LizardByte#5286)

Co-authored-by: Kishi85 <41839133+Kishi85@users.noreply.github.com>

* refactor(sonar): migrate worker threads to std::jthread (LizardByte#5398)

* chore(packaging): Drop Windows NSIS builds and rename ZIP to lite (LizardByte#5405)

* chore(l10n): update translations (LizardByte#5403)

chore(l10n): update translations sunshine.json (Spanish)

* build(deps): bump third-party/moonlight-common-c from `2ea4775` to `82e2514` (LizardByte#5402)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `2ea4775` to `82e2514`.
- [Commits](moonlight-stream/moonlight-common-c@2ea4775...82e2514)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 82e25148549d249a80aaf4afc68e2abb07072edf
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.24.0 (LizardByte#5396)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.6 (LizardByte#5395)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux): avoid memory leak from unnecessary encoder re-probing (LizardByte#5404)

* chore(deps): Update build-deps to v2026.713.132551 (LizardByte#5409)

* chore(sonar): change NOSONAR comment style (LizardByte#5410)

* chore(deps): update actions/setup-node action to v7 (LizardByte#5413)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(linux/vaapi): VAAPI encoder improvements (LizardByte#5388)

* chore(deps): update dependency @vitejs/plugin-vue to v6.0.8 (LizardByte#5418)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(docs/linux): add Portal and EGL context tips (LizardByte#5419)

* fix(packaging/windows): Allow WiX installer downgrades (LizardByte#5435)

* feat(linux): use connector name as default display name on linux (LizardByte#5423)

* chore(deps): update actions/checkout action to v7.0.1 (LizardByte#5412)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/setup-dotnet action to v6 (LizardByte#5422)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.1 (LizardByte#5426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.7 (LizardByte#5433)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.25.0 (LizardByte#5424)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.7 (LizardByte#5434)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5431)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `82e2514` to `703a069` (LizardByte#5428)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `82e2514` to `703a069`.
- [Commits](moonlight-stream/moonlight-common-c@82e2514...703a069)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 703a06946861ff82cd33e5e13c59c1b017f7ded9
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.40 (LizardByte#5421)

* chore(deps): update dependency vue to v3.5.40

* Add @vue/server-renderer lock entry

Updates package-lock.json to include @vue/server-renderer@3.5.40 and its Vue SSR runtime dependencies, keeping the lockfile in sync with the installed dependency graph.

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.2 (LizardByte#5436)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/setup-python action to v7 (LizardByte#5437)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update astral-sh/setup-uv action to v9 (LizardByte#5438)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5420)

* build(deps): bump third-party/moonlight-common-c from `703a069` to `e41355e` (LizardByte#5439)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `703a069` to `e41355e`.
- [Commits](moonlight-stream/moonlight-common-c@703a069...e41355e)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: e41355ea01670fd4c830b384009d31dd0339a705
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.26.0 (LizardByte#5440)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* refactor: clients section to dynamically fetch from app-directory (LizardByte#5380)

* fix(amf): wire h264_amf coder and profile mapping (LizardByte#5442)

Co-authored-by: k4idyn <252943111+k4idyn@users.noreply.github.com>

* chore: bump FreeBSD version from 14.4 to 15.1 (LizardByte#5445)

* chore: move nv-codec-headers to build-deps submodule (LizardByte#5449)

* fix(linux/kms): use same methodology for display name matching and list generation (LizardByte#5448)

* chore(l10n): update translations (LizardByte#5450)

* fix(nvenc): dynamic nv codec sdk selection (LizardByte#5451)

* chore(deps): update dependency @lucide/vue to v1.27.0 (LizardByte#5452)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.8 (LizardByte#5453)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): Update build-deps to v2026.724.203728 (LizardByte#5446)

* build(deps): bump third-party/lizardbyte-common from `06cd442` to `011ad2b` (LizardByte#5457)

* build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `06cd442` to `011ad2b`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@06cd442...011ad2b)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: 011ad2bb139083dcf4ec21f9c09f07470891a668
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* style: run clang-format across C++ sources

Reformatted conditionals, loops, and long function calls across core, platform, NVENC, and test helper code to match updated formatting rules, including minor spacing normalization in type declarations. These are style-only edits with no intended behavior changes.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5455)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: migrate to qt tray for all platforms (LizardByte#5260)

* fix(FreeBSD): Qt6 tray dependency package (LizardByte#5458)

* chore(deps): update lizardbyte/actions action to v2026.728.214955 (LizardByte#5459)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* test(tray): add system tray tests (LizardByte#4221)

* fix(web-ui): Welcome page styling (LizardByte#5466)

* chore(deps): update vmactions/freebsd-vm action to v1.5.3 (LizardByte#5478)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.28.0 (LizardByte#5463)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5470)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.9 (LizardByte#5473)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.41 (LizardByte#5475)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5479)

* chore(docker): fix hadolint SC3014 (LizardByte#5482)

* build(macOS): fix macOS framework signing glob (LizardByte#5483)

* build(macOS): sign only valid framework bundles (LizardByte#5484)

* feat(logging): rotating log files (LizardByte#5485)

* chore(l10n): update translations (LizardByte#5487)

* chore(deps): update dependency @lucide/vue to v1.30.0 (LizardByte#5486)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(unix): add nv-codec-headers include path (LizardByte#5488)

* ci: add workflow to publish PR artifacts (LizardByte#5491)

* chore(deps): update dependency @lucide/vue to v1.31.0 (LizardByte#5493)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux/kms)!: Use connector type index from KMS instead of self calculation (LizardByte#5489)

* build(windows): default to qt6-static (LizardByte#5497)

* feat(input): implement libvirtualhid adding new gamepad styles (LizardByte#5368)

* ci(FreeBSD): remove aarch64 (LizardByte#5516)

* chore(deps): lock file maintenance (LizardByte#5514)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(virtual-hid): remove license expiration (LizardByte#5517)

* build(homebrew): normalize remapped LCOV source paths (LizardByte#5518)

* chore(l10n): update translations (LizardByte#5507)

* fix(macOS): update build script and ci with explicit Qt6 paths (LizardByte#5502)

* chore(deps): update astral-sh/setup-uv action to v10 (LizardByte#5501)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.10 (LizardByte#5521)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux/pipewire): restore dummy buffer for software encoders and fix buffer ownership (LizardByte#5495)

Co-authored-by: luanweslley77 <luanweslley77@users.noreply.github.com>

* fix(linux/freebsd): truncate thread names to 15 characters (LizardByte#5527)

* chore(deps): update dependency @lucide/vue to v1.32.0 (LizardByte#5528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update global workflows (LizardByte#5525)

* chore(deps): update dependency @lucide/vue to v1.33.0 (LizardByte#5533)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(macOS): System tray icon disappears when restarting Sunshine (LizardByte#5504)

* fix(input): preserve aux gamepad data and bump libvirtualhid (LizardByte#5531)

* chore(l10n): update translations (LizardByte#5535)

* fix(wayland): use the current wl_output mode (LizardByte#5150)

Signed-off-by: Zach Denton <z@chdenton.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* feat(amf): add amd_max_au_size option (LizardByte#4926)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5539)

* chore: update Virtual HID requirements and mouse refresh (LizardByte#5547)

* chore(deps): update vmactions/freebsd-vm action to v1.5.4 (LizardByte#5540)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `e41355e` to `874ac95` (LizardByte#5541)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `e41355e` to `874ac95`.
- [Commits](moonlight-stream/moonlight-common-c@e41355e...874ac95)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 874ac9548f1bd6f095ef2b435c42cdde460e7821
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.9 (LizardByte#5546)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5543)

* fix(linux/publish): release the Avahi client when the poll loop stops (LizardByte#5545)

* chore(l10n): update translations (LizardByte#5548)

* build(deps): bump third-party/lizardbyte-common from `011ad2b` to `ffc027d` (LizardByte#5550)

build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `011ad2b` to `ffc027d`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@011ad2b...ffc027d)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: ffc027d7b582b8a552c9028ebc18d18ecd919d72
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5551)

chore(l10n): update translations sunshine.json (Bulgarian)

* chore: add branding images (LizardByte#5552)

* fix(pipewire): gate variable rate capture and fix fractional framerates (LizardByte#5538)

Co-authored-by: Kishi85 <41839133+Kishi85@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.11 (LizardByte#5555)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.10 (LizardByte#5556)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5557)

* feat(input): update libvirtualhid integration (LizardByte#5563)

* chore(deps): update vmactions/freebsd-vm action to v1.5.5 (LizardByte#5561)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.42 (LizardByte#5560)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.35.0 (LizardByte#5565)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5559)

* chore(deps): add vite override for codecov plugin (LizardByte#5576)

* chore(deps): update lizardbyte/actions action to v2026.829.140353 (LizardByte#5577)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): update dependency vite to v8 (LizardByte#5578)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5579)

* fix(linux/pipewire): try variable rate for non-KWin compositors (LizardByte#5569)

* chore(deps): update dependency @lucide/vue to v1.37.0 (LizardByte#5581)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5582)

* feat(session): add SUNSHINE_CLIENT_NAME environment variable (LizardByte#5465)

* fix(windows/installer): PATH update reg add /f option ordering (LizardByte#5584)

* chore(deps): lock file maintenance (LizardByte#5588)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.38.0 (LizardByte#5587)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(video): fall back to SDR when HDR isn't supported (LizardByte#5429)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix(windows): capture the configured audio sink instead of the default device (LizardByte#5408)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix(input): track/release client keycode for modifiers (LizardByte#5558)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* ci: sonar fixes (LizardByte#5594)

* chore(l10n): update translations (LizardByte#5583)

* docs: fix typo automaticaly -> automatically (LizardByte#5573)

Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>

* fix: iterator/stat utility edge cases and add tests (LizardByte#5308)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* build(Linux): use compiler-selected libgcov for coverage (LizardByte#5597)

* build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from `ac5a296` to `1fc3219` (LizardByte#5595)

build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools

Bumps [packaging/linux/flatpak/deps/flatpak-builder-tools](https://github.com/flatpak/flatpak-builder-tools) from `ac5a296` to `1fc3219`.
- [Commits](flatpak/flatpak-builder-tools@ac5a296...1fc3219)

---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
  dependency-version: 1fc32195e3e60fe5c97f0af646dec7a99df5962b
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.39.0 (LizardByte#5596)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Merge commit from fork

* Merge commit from fork

* Merge commit from fork

* Merge commit from fork

* build(Windows): resolve system Node.js package (LizardByte#5599)

* refactor: pairing flow, pairing tests, and inline struct comments (LizardByte#5602)

* chore(deps): update dependency @lucide/vue to v1.40.0 (LizardByte#5606)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5600)

* build(docker): add bake config (LizardByte#5607)

* chore(deps): update dependency @lucide/vue to v1.41.0 (LizardByte#5609)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(flatpak): drop imagemagick dep (LizardByte#5610)

* ci: add Cloudsmith packaging support (LizardByte#5611)

* ci(release): avoid workflow concurrency deadlock (LizardByte#5612)

* chore(deps): update lizardbyte/actions action to v2026.905.43751 (LizardByte#5614)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update global workflows (LizardByte#5616)

* style(homebrew): fix homebrew validation (LizardByte#5620)

* build(deps): bump third-party/lizardbyte-common from `ffc027d` to `f9d91e1` (LizardByte#5624)

* build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `ffc027d` to `f9d91e1`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@ffc027d...f9d91e1)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: f9d91e1d29b7473f58e43acde4579da4e56c4abe
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump clang-format to 23.1.0

Update the lockfile and dependency metadata to use clang-format 23.1.0 for the lint-c and dev extras. This refreshes the resolved package artifacts and version constraints in uv.lock.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): bump libvirtualhid (LizardByte#5585)

* fix(macOS): enable microphone permission flow (LizardByte#5621)

* build(deps): bump third-party/tray from `1d0d696` to `c329d9f` (LizardByte#5630)

* build(deps): bump third-party/tray from `1d0d696` to `c329d9f`

Bumps [third-party/tray](https://github.com/LizardByte/tray) from `1d0d696` to `c329d9f`.
- [Release notes](https://github.com/LizardByte/tray/releases)
- [Commits](LizardByte/tray@1d0d696...c329d9f)

---
updated-dependencies:
- dependency-name: third-party/tray
  dependency-version: c329d9fd0d39dfb47f0f2fb5467e1db2e8a1d623
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* test(tray): enable tray test hooks

Gate `TRAY_ENABLE_TEST_HOOKS` behind `BUILD_TESTS` in dependency setup and propagate the same definition to test targets when tray tests are enabled. This keeps production tray builds unchanged while allowing tray-specific test hook code to be compiled consistently for supported platforms.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* build(Linux): add aarch64 AppImage (LizardByte#5627)

* chore(l10n): update translations (LizardByte#5626)

* ci(FreeBSD): enable docs (LizardByte#5631)

* feat(linux/pipewire): add support for unpaced capture when appropriate (LizardByte#5629)

* chore(deps): update dependency @lucide/vue to v1.42.0 (LizardByte#5636)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5634)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): Update build-deps to v2026.905.170812 (LizardByte#5637)

* build(Linux): enable openSUSE Leap 16.0 and Tumbleweed (LizardByte#5633)

* chore(flatpak): update org.kde.Platform runtime to 6.11 (LizardByte#5639)

* feat(config): add gamepad_driver option (LizardByte#5653)

* chore(l10n): update translations (LizardByte#5632)

* chore(deps): update dependency marked to v18.0.12 (LizardByte#5648)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `874ac95` to `62e0663` (LizardByte#5657)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `874ac95` to `62e0663`.
- [Commits](moonlight-stream/moonlight-common-c@874ac95...62e0663)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 62e066388f1a1b133e0bee947b9a374311a3354b
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update lizardbyte/actions action to v2026.909.30231 (LizardByte#5664)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ubuntu docker tag to v26 (LizardByte#5666)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.6 (LizardByte#5665)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.43.0 (LizardByte#5655)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* ci(homebrew): run tests in separate step (LizardByte#5669)

* fix(deps): fix legacy nvenc presets and bump third-party/build-deps (LizardByte#5668)

* build(Linux): add Alpine packages (LizardByte#4987)

* fix(linux/vulkan): use vkGetDeviceQueue2 with FFmpeg 9.0 queue flags (LizardByte#5675)

* build(Linux): harden Qt6 dependency detection (LizardByte#5679)

* fix(av1,hevc): stop av1 probes from clobbering hevc results (LizardByte#5554)

* fix(api): return the final result of pairing (LizardByte#5680)

* fix(nvapi,nvenc): Load ARM64 DLLs on RTX Spark (LizardByte#5682)

* ci(homebrew): skip more_space action for release job (LizardByte#5683)

* chore(deps): update dependency @lucide/vue to v1.44.0 (LizardByte#5674)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(web-ui): localize config categories (LizardByte#5688)

* ci(homebrew): drop sonoma (LizardByte#5689)

* build(deps): bump third-party/plasma-wayland-protocols from `4c015e9` to `382dfab` (LizardByte#5687)

build(deps): bump third-party/plasma-wayland-protocols

Bumps [third-party/plasma-wayland-protocols](https://github.com/KDE/plasma-wayland-protocols) from `4c015e9` to `382dfab`.
- [Commits](KDE/plasma-wayland-protocols@4c015e9...382dfab)

---
updated-dependencies:
- dependency-name: third-party/plasma-wayland-protocols
  dependency-version: 382dfabda886d3f2f5c067b22e5a22376685ba78
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump third-party/doxyconfig from `b87f7e4` to `212e309` (LizardByte#5686)

* build(deps): bump third-party/doxyconfig from `b87f7e4` to `212e309`

Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `b87f7e4` to `212e309`.
- [Release notes](https://github.com/LizardByte/doxyconfig/releases)
- [Commits](LizardByte/doxyconfig@b87f7e4...212e309)

---
updated-dependencies:
- dependency-name: third-party/doxyconfig
  dependency-version: 212e3094fe6a09848d8ae058956faab27557c65c
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): install doxygen from msys2

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix: missing initializers and incorrect default for native_pen_touch (LizardByte#5693)

* build(Linux): add Ubuntu 26.10 Docker bake target (LizardByte#5622)

* fix(linux): handle NVENC in builds without CUDA (LizardByte#5698)

* fix(network): respect configured bind address (LizardByte#5700)

* fix(web-ui): add XDG Portal token reset (LizardByte#5701)

* fix(linux): export all Wayland DMA-BUF planes (LizardByte#5699)

* chore(deps): update dependency @lucide/vue to v1.45.0 (LizardByte#5694)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/doxyconfig from `212e309` to `419127b` (LizardByte#5703)

Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `212e309` to `419127b`.
- [Release notes](https://github.com/LizardByte/doxyconfig/releases)
- [Commits](LizardByte/doxyconfig@212e309...419127b)

---
updated-dependencies:
- dependency-name: third-party/doxyconfig
  dependency-version: 419127bad87f49b2d45fa957ea7302abbb49c01f
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from `1fc3219` to `de2225a` (LizardByte#5702)

build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools

Bumps [packaging/linux/flatpak/deps/flatpak-builder-tools](https://github.com/flatpak/flatpak-builder-tools) from `1fc3219` to `de2225a`.
- [Commits](flatpak/flatpak-builder-tools@1fc3219...de2225a)

---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
  dependency-version: de2225a6dee4818c1339b3cdbf29f90c471fcb7e
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(pipewire): extend KWin version check to handle 6.8 beta/RC versions (LizardByte#5704)

* Merge commit from fork

Sanitize GUI loader and plugin environment variables before privileged initialization, failing closed when the environment cannot be cleaned.

Retain CAP_SYS_ADMIN only on a dedicated DRM worker, route KMS and CUDA DRM access through it, reject queued work safely during overflow or shutdown, and drop the worker privileges when DRM access is no longer needed.

Add Linux regression coverage for the sanitizer and document the new privileged-worker interfaces.

Co-authored-by: Conn O'Griofa <749000+psyke83@users.noreply.github.com>
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>

* fix(linux): repair privileged DRM worker build (LizardByte#5706)

* fix(pipewire): gate variable rate to KWin 5.x.x - 6.7.79 (up to stable 6.7 series) (LizardByte#5705)

* test: PowerShell tests with Pester and Sonar fixes (LizardByte#5708)

* test(linux): synchronize environment sanitizer tests (LizardByte#5710)

* build(copr): use cuda redistributatle for Fedora builds (LizardByte#5719)

* build(linux): fix ubuntu 26.10 aarch64 artifact extraction (LizardByte#5720)

* chore(deps): update dependency @lucide/vue to v1.46.0 (LizardByte#5715)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5714)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v8.3.0 (LizardByte#5711)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency windows to v2025 (LizardByte#5712)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* feat(linux): use privileged EGL worker thread (LizardByte#5709)

* chore(deps): update astral-sh/setup-uv action to v10.1.0 (LizardByte#5684)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5654)

* chore(deps): bump libvirtualhid (LizardByte#5722)

* fix(flatpak): remove need to prefix commands (LizardByte#5723)

* chore(deps): update codecov/codecov-action action to v7.1.0 (LizardByte#5724)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): move boost to CPM and bump to 1.92 (LizardByte#5730)

* refactor(web-ui): single page application (LizardByte#5731)

* test(web-ui): add tests and coverage (LizardByte#5736)

* refactor(web): sonar fixes (LizardByte#5740)

* fix(pairing): replace duplicate client certificates (LizardByte#5737)

* chore(deps): update codecov/codecov-action action to v7.1.1 (LizardByte#5741)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.43 (LizardByte#5742)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5735)

* build(deps): bump third-party/nvapi from `cd6918f` to `87dca62` (LizardByte#5618)

Bumps [third-party/nvapi](https://github.com/NVIDIA/nvapi) from `cd6918f` to `87dca62`.
- [Commits](NVIDIA/nvapi@cd6918f...87dca62)

---
updated-dependencies:
- dependency-name: third-party/nvapi
  dependency-version: 87dca625e83fd89a983e19b904e5f3a580da90d2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(macOS): remove zero-initialization (LizardByte#5744)

Co-authored-by: Andy Grundman <105828+andygrundman@users.noreply.github.com>

* build(deps): bump third-party/tray from `c329d9f` to `c1f2a8a` (LizardByte#5747)

Bumps [third-party/tray](https://github.com/LizardByte/tray) from `c329d9f` to `c1f2a8a`.
- [Release notes](https://github.com/LizardByte/tray/releases)
- [Commits](LizardByte/tray@c329d9f...c1f2a8a)

---
updated-dependencies:
- dependency-name: third-party/tray
  dependency-version: c1f2a8ab56dd399b881fb7aeab4fe4fc9c58188d
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.12 (LizardByte#5745)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-router to v4.6.4 (LizardByte#5746)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(tray): move tray icon ownership to vite config (LizardByte#5761)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Signed-off-by: Zach Denton <z@chdenton.com>
Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: LizardByte-bot <108553330+LizardByte-bot@users.noreply.github.com>
Co-authored-by: Conn O'Griofa <connogriofa@gmail.com>
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>
Co-authored-by: Harold <harold@mrtz.fr>
Co-authored-by: Aliaksei Dziadziuk <djadjka.by@gmail.com>
Co-authored-by: HurricanePootis <53066639+HurricanePootis@users.noreply.github.com>
Co-authored-by: Psyke83 <psyke83@users.noreply.github.com>
Co-authored-by: martona <marton@anka.me>
Co-authored-by: Cameron Gutman <aicommander@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James Le Cuirot <chewi@gentoo.org>
Co-authored-by: 盼兮 <63710193+panxi39@users.noreply.github.com>
Co-authored-by: neatnoise <neatnoise@gmail.com>
Co-authored-by: Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com>
Co-authored-by: k4idyn <252943111+k4idyn@users.noreply.github.com>
Co-authored-by: Noklef <281545466+Noklef@users.noreply.github.com>
Co-authored-by: luanweslley77 <luanweslley77@gmail.com>
Co-authored-by: luanweslley77 <luanweslley77@users.noreply.github.com>
Co-authored-by: Zach Denton <z@chdenton.com>
Co-authored-by: pollopopo <61017252+pollopopo@users.noreply.github.com>
Co-authored-by: nikzasel <nikzasel@users.noreply.github.com>
Co-authored-by: Justin E. Oryschak <justin@oryschak.net>
Co-authored-by: matix753 <33520765+matix753@users.noreply.github.com>
Co-authored-by: tonyctalope <95322229+tonyctalope@users.noreply.github.com>
Co-authored-by: Seth Moore <sethdmoore@users.noreply.github.com>
Co-authored-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
Co-authored-by: dasepmoch <108404480+dasepmoch@users.noreply.github.com>
Co-authored-by: solidv <pedroclaro2@gmail.com>
Co-authored-by: bitness <lars_damerow@pixar.com>
Co-authored-by: Conn O'Griofa <749000+psyke83@users.noreply.github.com>
Co-authored-by: Andy Grundman <105828+andygrundman@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants