Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions src/content/docs/docs/getting-started/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,34 @@ sidebar:

## Version 7

### v7.7.4

Released on August 19nd, 2026
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

#### Fixes

A quick release containing mainly a security fix and a few minor new additions.
As we are currently working towards the next major version, we are collecting feedback and bug reports
from our canary users. If you are interested in joining the beta, please reach out to us on our discord.

* `new` #4625 : Improve feedback on mail notification command by @ildyria.
> When running the mail notification command, if there are no mails to be sent, we no longer
> return silently.
* `new` #4624 : Fix wrong frame detection by @ildyria.
> The frame detection was not using the correct value to select the frame, this is now fixed.
> Additionally we added a configuration option which allows the admin to chose at which time
> the frame should be picted: beginning, middle or custom.
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
* `fix` #4630 : Add failsafe on wrong version style from advisories by @ildyria.
> In the case of advisories using a wrong version style, we now have a failsafe to avoid
> computing the wrong ranges.
* `fix` #4629 : Fix sneaky guest users by @ildyria.
> A guest user could trick the server into returning the basket of another user.
> This was reported by @d3do-23 and is now fixed.

First we would like to thank @d3do-23 for reporting the guest user bypass vulnerability.
As we are working towards the next major version, we also would like to extend our gratitude to
@skeletonsec for their audit of the code base, catching a vulnerability before it made it live.

### v7.7.3

Released on August 15th, 2026
Expand Down
3 changes: 2 additions & 1 deletion src/data/releases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export interface Release {

// Release data extracted from releases.md
export const releases: Release[] = [
{ version: 'v7.7.3', date: 'Aug 15, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Small QoL improvements', 'Minor bug fixes'] },
{ version: 'v7.7.4', date: 'Aug 19, 2026', title: 'Fixes', type: 'security', highlights: ['Fix video frame detection', 'Fix security issue'] },
{ version: 'v7.7.3', date: 'Aug 15, 2026', title: 'Fixes', type: 'security', highlights: ['Small QoL improvements', 'Minor bug fixes'] },
Comment thread
ildyria marked this conversation as resolved.
{ version: 'v7.7.2', date: 'Aug 6, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Improved translations', 'Minor bug fixes'] },
{ version: 'v7.7.1', date: 'Jul 13, 2026', title: 'Hotfix', type: 'security', highlights: ['Fixes a major vulnerability in the webshop', 'minor sqlite fix'] },
{ version: 'v7.7.0', date: 'Jul 13, 2026', title: 'Album thumbs, and RSS feed customization', type: 'feature', highlights: ['Add cover to tag albums', 'Add option to disable the second line on album thumbs', 'Allow customizing RSS feed title & description', 'Fixes access rights with multiple groups', 'Fixes webshop bypass vulnerability (8.3)'] },
Expand Down
15 changes: 15 additions & 0 deletions src/pages/support.astro
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,22 @@ const metadata = {
src: 'https://avatars.githubusercontent.com/u/93777011?v=4',
alt: 'Alpastx',
},
},
{
title: 'd3do-23 (Wu Wenhao)',
image: {
src: 'https://avatars.githubusercontent.com/u/73107878?v=4',
alt: 'd3do-23',
},
},
{
title: 'skeletonsec',
image: {
src: 'https://avatars.githubusercontent.com/u/298925831?v=4',
alt: 'skeletonsec',
},
}

Comment thread
ildyria marked this conversation as resolved.
]}
/>

Expand Down
Loading