<feed xmlns='http://www.w3.org/2005/Atom'>
<title>jellyfin/Emby.Server.Implementations/Library, branch v12.0-rc5</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<id>https://git.b0n.dev/jellyfin/atom?h=v12.0-rc5</id>
<link rel='self' href='https://git.b0n.dev/jellyfin/atom?h=v12.0-rc5'/>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/'/>
<updated>2026-08-10T22:28:22Z</updated>
<entry>
<title>Merge pull request #17579 from Shadowghost/fix-removal-notification</title>
<updated>2026-08-10T22:28:22Z</updated>
<author>
<name>Cody Robibero</name>
<email>cody@robibe.ro</email>
</author>
<published>2026-08-10T22:28:22Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=2a8d168796907f3946098d90d7cebc8bbac45ca8'/>
<id>urn:sha1:2a8d168796907f3946098d90d7cebc8bbac45ca8</id>
<content type='text'>
Fix missing ItemRemoved events and search fallback after access filtering</content>
</entry>
<entry>
<title>Merge pull request #17576 from obiwantoby/perf/batch-mediasourcecount-dto</title>
<updated>2026-08-10T20:15:54Z</updated>
<author>
<name>Cody Robibero</name>
<email>cody@robibe.ro</email>
</author>
<published>2026-08-10T20:15:54Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=35e86416af32adaa220a241f756544cd316bd866'/>
<id>urn:sha1:35e86416af32adaa220a241f756544cd316bd866</id>
<content type='text'>
Bugfix: #17547 | Batching MediaSourceCount into one call</content>
</entry>
<entry>
<title>fix: bound remote provider pagination</title>
<updated>2026-08-09T15:18:54Z</updated>
<author>
<name>TOomaAh</name>
<email>tbrunet72@gmail.com</email>
</author>
<published>2026-08-09T15:18:54Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=5f3e938d09e72fbb6afd346f949866d5c843dd49'/>
<id>urn:sha1:5f3e938d09e72fbb6afd346f949866d5c843dd49</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Address review on MediaSourceCount batching</title>
<updated>2026-08-08T16:33:11Z</updated>
<author>
<name>brandon</name>
<email>brandon@clinger.dev</email>
</author>
<published>2026-08-08T16:33:11Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=10d108a1f453c0972b3059e10bb9b13bbcb34f63'/>
<id>urn:sha1:10d108a1f453c0972b3059e10bb9b13bbcb34f63</id>
<content type='text'>
Rename GetItemsWithAlternateVersions to GetItemIdsWithAlternateVersions
across the interfaces and implementations since it returns ids. Return
the hashset straight from the query instead of materializing an array
first. Rename the DtoService guard to mayHaveAlternateVersions and
invert it so the computed path is the explicit case. Assert the media
source count value in the batch skip test and add a test covering an
item that is in the returned set still resolving to the correct count.
</content>
</entry>
<entry>
<title>Fix missing ItemRemoved events and search fallback after access filtering</title>
<updated>2026-08-08T08:59:37Z</updated>
<author>
<name>Shadowghost</name>
<email>Ghost_of_Stone@web.de</email>
</author>
<published>2026-08-08T08:59:37Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=e63c05137a236acc9fc09d69ebe3862449c43759'/>
<id>urn:sha1:e63c05137a236acc9fc09d69ebe3862449c43759</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Batch alternate version detection in DtoService to remove MediaSourceCount N+1</title>
<updated>2026-08-08T02:51:45Z</updated>
<author>
<name>brandon</name>
<email>brandon@clinger.dev</email>
</author>
<published>2026-08-08T02:51:45Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=c091ffdc6b2d8d4dd6f439d056c561bae7bd9a18'/>
<id>urn:sha1:c091ffdc6b2d8d4dd6f439d056c561bae7bd9a18</id>
<content type='text'>
Browsing a page of videos with the MediaSourceCount field ran one alternate
version query per item, each opening a fresh DbContext. On a large library that
turned a single page into hundreds of sequential round trips and made the Items
endpoint take tens of seconds while holding a request thread the whole time.

Detect which videos own alternate versions once per page with a single query,
mirroring the existing people batch. Videos absent from that set have a single
media source, so the per item lookups are skipped for the common case. Behavior
is unchanged: a video with no alternates already resolved to a count of one.

Adds a regression test asserting the count resolves from the batch and the per
item lookups are never called.
</content>
</entry>
<entry>
<title>Batch people lookups when building item DTOs</title>
<updated>2026-08-07T15:59:17Z</updated>
<author>
<name>brandon</name>
<email>brandon@clinger.dev</email>
</author>
<published>2026-08-07T15:59:17Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=d6da6906a4b3426f05c5bf4ffe8bab4b2bc78ce8'/>
<id>urn:sha1:d6da6906a4b3426f05c5bf4ffe8bab4b2bc78ce8</id>
<content type='text'>
GetBaseItemDtos already batch fetches user data, child counts, played counts
and artists before its per item loop, but AttachPeople still ran one GetPeople
query per item. Rendering a page of items (for example a large playlist) fired
one extra query per row.

Add GetPeopleByItems to IPeopleRepository, which reads every requested item in a
single query over the people mapping table and returns full PersonInfo (role,
type and sort order) grouped by item id. GetBaseItemDtos prefetches this once
when the People field is requested and passes it into AttachPeople, which reads
from the batch instead of querying per item. The single item GetBaseItemDto path
keeps its existing per item behaviour when no batch is supplied.

Adds a DtoService test asserting people resolve from the batch and the per item
GetPeople is never called.
</content>
</entry>
<entry>
<title>Merge pull request #17466 from Shadowghost/fix-byname-queries</title>
<updated>2026-08-05T22:39:55Z</updated>
<author>
<name>Cody Robibero</name>
<email>cody@robibe.ro</email>
</author>
<published>2026-08-05T22:39:55Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=17b0453cfb4176157b234795ba5ac94fdc1c86a0'/>
<id>urn:sha1:17b0453cfb4176157b234795ba5ac94fdc1c86a0</id>
<content type='text'>
Improve People deduplication, fix search and restrict ItemByName responses</content>
</entry>
<entry>
<title>Keep folder extras with the item that owns the folder</title>
<updated>2026-08-03T08:50:33Z</updated>
<author>
<name>Shadowghost</name>
<email>Ghost_of_Stone@web.de</email>
</author>
<published>2026-08-03T08:50:33Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=4e2089b6a18c323c6c3d158aeba87098ff400450'/>
<id>urn:sha1:4e2089b6a18c323c6c3d158aeba87098ff400450</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/master' into fix-byname-queries</title>
<updated>2026-08-02T20:12:57Z</updated>
<author>
<name>Shadowghost</name>
<email>Ghost_of_Stone@web.de</email>
</author>
<published>2026-08-02T20:12:57Z</published>
<link rel='alternate' type='text/html' href='https://git.b0n.dev/jellyfin/commit/?id=80445347740955f0121fec5d1bf649212da3c63b'/>
<id>urn:sha1:80445347740955f0121fec5d1bf649212da3c63b</id>
<content type='text'>
</content>
</entry>
</feed>
