Skip to content

Commit 3fab438

Browse files
committed
version 7.5.2
1 parent ade09bf commit 3fab438

3 files changed

Lines changed: 41 additions & 4 deletions

File tree

docs/releases.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,41 @@
3030

3131
## Version 7
3232

33+
### v7.5.2
34+
35+
Released on Mar 22nd, 2026
36+
37+
#### Support camera capture and hotfix
38+
39+
In addition to loading pictures from memory, we now also our front-end to support the camera view. This allows to take pictures directly and instantly upload them to Lychee, a feature that will be welcomed by our mobile users.
40+
41+
* `new` #4213 : feat: add Camera Capture feature (Feature 029) by @mitpjones.
42+
* `fix` #4214 : Fix dns-resolving to localip by @ildyria.
43+
> Fixes SSRF bypass via DNS rebinding. Read more [here](https://github.com/LycheeOrg/Lychee/security/advisories/GHSA-5245-4p8c-jwff)
44+
45+
Thanks to @morimori-dev for reporting the SSRF issue.
46+
47+
#### New Contributors
48+
49+
@mitpjones made their first contribution in https://github.com/LycheeOrg/Lychee/pull/4209
50+
51+
52+
### v7.5.1
53+
54+
Released on Mar 21st, 2026
55+
56+
#### Hotfixes
57+
58+
* `fix` #4208 : Make ldap optional by @ildyria.
59+
> Due to popular demand, we made the ldap extension optional. If you do not have it installed, the ldap features will be disabled, but the rest of the app will work as expected. This is especially useful for users who do not need ldap support and want to avoid installing the extension.
60+
* `fix` #4207 : Fix tag album ordering by @ildyria.
61+
> Photos in Tag albums were not ordered. Fixed.
62+
* `fix` #4205 : Fix ssrf lookback edge case by @ildyria.
63+
> Read more [here](https://github.com/LycheeOrg/Lychee/security/advisories/GHSA-vq6w-prpf-h287)
64+
65+
Thanks to @offensiveee for reporting the SSRF issue.
66+
67+
3368
### v7.5.0
3469

3570
Released on Mar 16th, 2026

src/components/widgets/Announcement.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
>NEW</span
1111
>
1212
<a
13-
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.5.0"
14-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.5.0 is now available! »</a
13+
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.5.2"
14+
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.5.2 is now available! »</a
1515
>
1616
<!-- <a
1717
href="https://github.com/LycheeOrg/Lychee/releases/tag/v6.10.4"

src/pages/roadmap.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const metadata = {
88
99
// Release data extracted from releases.md
1010
const releases = [
11+
{ version: 'v7.5.2', date: 'Mar 22, 2026', title: 'Camera support & hotfix', type: 'minor', highlights: ['Upload from camera support from Frontend', 'Fix SSRF on name resolution to reserved ip space'] },
12+
{ version: 'v7.5.1', date: 'Mar 21, 2026', title: 'Hotfix', type: 'bugfix', highlights: ['Fix SSRF on localhost aliases', 'Support php wihout ldap extension'] },
1113
{ version: 'v7.5.0', date: 'Mar 16, 2026', title: 'Search revamped', type: 'major', highlights: ['New search UI & UX', 'Tag filters in albums'] },
1214
{ version: 'v7.4.2', date: 'Mar 12, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Fixes to the CSP policy'] },
1315
{ version: 'v7.4.1', date: 'Mar 8, 2026', title: 'Fixes and minor improvements', type: 'bugfix', highlights: ['Fixed potential crash related to missing configurations', 'Added error message for missing ldap extension', 'Allow passing individual file paths to lychee:sync command'] },
@@ -167,11 +169,11 @@ const getReleaseTypeBadge = (type: string) => {
167169
<div class="mx-auto max-w-3xl pt-12 px-4 sm:px-6">
168170
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
169171
<div class="space-y-2">
170-
<div class="text-4xl font-bold text-primary">7.5.0</div>
172+
<div class="text-4xl font-bold text-primary">7.5.2</div>
171173
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Latest Version</div>
172174
</div>
173175
<div class="space-y-2">
174-
<div class="text-4xl font-bold text-primary">118</div>
176+
<div class="text-4xl font-bold text-primary">120</div>
175177
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Total Releases</div>
176178
</div>
177179
<div class="space-y-2">

0 commit comments

Comments
 (0)