I’m serious, there’s so much lazy posting on Lemmy regarding software releases.
- no mention of what the software is or does ✔️
- no mention of what’s interesting about the software is this release. ✔️
Jellyfin is quite a big name, but still, the pattern is clear.
exu@feditown.com 4 days ago
This is the database rework that’s been in progress for a while to remove all the bad inherited database code from when the forked Emby. No more SQL statements in code or plugins, any DB access now goes through the core library. There are a few blog posts in their website with more details.
timbuck2themoon@sh.itjust.works 4 days ago
I’ll be honest, Im not sure why theyre not releasing this as 11.x.
This seems to be a major update. From what I can tell there are API changes, plugins might not work, your entire db is converted to another format, etc.
I’m excited for it and thankful for all the work- just seems so big that it should be tagged 11.0.0
stevestevesteve@lemmy.world 4 days ago
I kinda agree here. jellyfin.org/docs/general/…/release-procedure/
Claims to follow semantic versioning, explicitly mentioning changes to plugin APIs as reasoning for a new major version.
exu@feditown.com 4 days ago
Their reasoning is literally the second sentence on that page.
Any 10.Y.Z release is cleanup and can include breaking changes. That’s been the case for 10.9 and 10.10 already btw.
ShortN0te@lemmy.ml 4 days ago
Its right there at the link you posted.
victorz@lemmy.world 4 days ago
Out of curiosity, this is better because of encapsulation? Protection from bad plugins?
stevestevesteve@lemmy.world 4 days ago
Basically, yes. Forces plugins not to use potentially database-engine-specific SQL so that server admins don’t have to select their DB based on plugins for jellyfin being compatible.
victorz@lemmy.world 4 days ago
Brilliant. 👍
ShortN0te@lemmy.ml 4 days ago
Also for internal use. The original emby source used not within the code base standardized database access.
Basically changes to the database were not possible since finding references across the code base which part uses which values was impossible.
victorz@lemmy.world 4 days ago
Ew. Yeah, good changes coming in that case. Glad they ironed that out!