diff --git a/src/content/docs/docs/getting-started/releases.md b/src/content/docs/docs/getting-started/releases.md index ee7fd69c..12fe6adc 100644 --- a/src/content/docs/docs/getting-started/releases.md +++ b/src/content/docs/docs/getting-started/releases.md @@ -9,9 +9,30 @@ sidebar: `SE` refers to functionalities that are aimed at the Supporter Edition. `Pro` refers to functionalities that are aimed at the Pro Edition. +## Version 7 +### v7.7.5 + +Released on August 23rd, 2026 + +#### Fixes + +A small release, with small quality of life fixes. + +* `fix` #4641 : Fix display the warning-misconfiguration.blade.php by @jphuguet. + > On slower connection, the warning about misconfiguration was flashing to the visitor, + > creating confusion. +* `fix` #4646 : Fix time always changing when editing pictures. by @ildyria. + > When updating the time of a photo, there was some timezone conversion which was not properly handled, + > resulting in the time being changed to a different value. +* `fix` #4647 : Fix missing support for livekit by @ildyria. + > When using the livephoto features, they were not displayed properly, this should be fixed. +* `fix` #4658 : Mitigate crashes when the album sizes is larger than 2GB by @ildyria. + > When album sizes are larger than 2GB, the server was crashing due to an overflow. + > We were not able to reproduce the bug, but added mitigations and logs which should handle this error. +* `fix` #4642 : Fix bug on unreleased feature by @jphuguet. + > Secret stuff that are in testing for the next version were a bit broken. Not anymore. -## Version 7 ### v7.7.4 diff --git a/src/data/releases.ts b/src/data/releases.ts index a92d0e1e..ed4f29b5 100644 --- a/src/data/releases.ts +++ b/src/data/releases.ts @@ -8,6 +8,7 @@ export interface Release { // Release data extracted from releases.md export const releases: Release[] = [ + { version: 'v7.7.5', date: 'Aug 23, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Fixes overflow on album size computation', 'fixes timezone confusion while saving dates'] }, { 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'] }, { version: 'v7.7.2', date: 'Aug 6, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Improved translations', 'Minor bug fixes'] },