You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/releases.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,41 @@
30
30
31
31
## Version 7
32
32
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.
Copy file name to clipboardExpand all lines: src/pages/roadmap.astro
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ const metadata = {
8
8
9
9
// Release data extracted from releases.md
10
10
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'] },
0 commit comments