Skip to content

Commit 5771a1d

Browse files
authored
version 6.8.1 (#232)
1 parent 67a16c9 commit 5771a1d

File tree

2 files changed

+36
-14
lines changed

2 files changed

+36
-14
lines changed

docs/releases.md

Lines changed: 34 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,28 @@
3030

3131
## Version 6
3232

33+
### v6.8.1
34+
35+
Release on Aug 18, 2025
36+
37+
#### Migration fix and Goodies
38+
39+
Update 6.8.0 came with a nasty small issue in one of the database migration. In the event your database is using a large amount of tags, the migration would fail due to duplicates conditions. We updated the migration file to handle this case and such that if you ended up in an incomplete database migration state, you could still get back up and running.
40+
41+
With this short notice, we also added a few small features that were nearly ready for version 6.8.0 but didn't make the cut.
42+
43+
* `new` #3500 : feat: Sync uses jobs instead of direct import. by @ildyria
44+
> This change allows the sync process to be run with parallel processing using jobs and queues.
45+
* `new` #3624 : Add support for and/or in tag albums by @ildyria
46+
> This change allows you to specify if you want the photos showed in a Tag album to match all the tags, or any of the tag.
47+
* `new` #3504 : feat: Drag & select is back! by @ildyria
48+
> One of the missing feature since version 4 was the ability to drag and select photos in the album view. This is now back.
49+
> We tried to also make it more obvious what can and cannot be selected in such way on the album view.
50+
* `fixes` #3626 : Fix migration when large amounts of tags are used by @ildyria
51+
> The migration that was introduced in version 6.8.0 was failing when a large amount of tags were used. We fixed this by
52+
> formatting the tags, and chunking at insert time to avoid large insert queries.
53+
54+
3355
### v6.8.0
3456

3557
Released on Aug 17, 2025
@@ -80,19 +102,19 @@ We also fixed a few bugs that were reported by our users.
80102
> This is a security measure to avoid brute-force attacks.
81103
* `new` #3382 : Add .env variable to disable basic login and WebAuthn login by @ildyria.
82104
* `new` #3521 : feat: Add a small module for links by @ildyria.
83-
* `fix` #3567 : fix "command" or "a" independently selecting all items by @cdzombak.
105+
* `fixes` #3567 : fix "command" or "a" independently selecting all items by @cdzombak.
84106
> This fixes an issue where pressing "command" on mac would select all items in the album view.
85-
* `fix` #3575 : Mark placeholder as NOT downloadable by @ildyria.
107+
* `fixes` #3575 : Mark placeholder as NOT downloadable by @ildyria.
86108
> Placeholder photos are base64 encoded images in the database. They are not meant to be downloaded.
87-
* `fix` #3573 : On small screen, remove padding on left & right padding by @ildyria.
109+
* `fixes` #3573 : On small screen, remove padding on left & right padding by @ildyria.
88110
> Small QoL change to remove the padding on the left and right on the photo view.
89-
* `fix` #3574 : Fix icon showing up in details even when taken-at is null by @ildyria.
90-
* `fix` #3581 : fix header on album view when search is active by @ildyria.
111+
* `fixes` #3574 : Fix icon showing up in details even when taken-at is null by @ildyria.
112+
* `fixes` #3581 : fix header on album view when search is active by @ildyria.
91113
> Weird padding appearing when search made available in album view.
92-
* `fix` #3533 : While processing in CLI, do not crash on large photos by @ildyria.
114+
* `fixes` #3533 : While processing in CLI, do not crash on large photos by @ildyria.
93115
> Large photos could crash the processing by exceeding the memory limits of Imagick.
94116
> We gracefully handle this case now and do not crash the CLI.
95-
* `fix` #3597 : Fix: access rights failing due to relationship missing by @ildyria.
117+
* `fixes` #3597 : Fix: access rights failing due to relationship missing by @ildyria.
96118
> When moving a photo not as the owner of the photo, the access rights check would crash
97119
> because the albums relationship was not loaded.
98120
@@ -140,7 +162,7 @@ Released on Jul 1, 2025
140162

141163
This is a significant release that brings 3 new features: Flow, a social-friendly, feed-like display of albums; Lychee:sync has been revamped and is now faster while also works in reverse; and finally our Supporter Edition users can now add multiple admins to their instance.
142164

143-
* `fix` #3508 : Fix photo copy modal not working after a copy by @ildyria.
165+
* `fixes` #3508 : Fix photo copy modal not working after a copy by @ildyria.
144166
> Small fix of a bug that has been reported to us. When copying a photo the
145167
> second time, the target album was visibly selected in the modal but the id
146168
> was not set. This is now fixed.
@@ -165,7 +187,7 @@ Released on Jun 27, 2025
165187

166188
This is a small patch which fixes a cosmetic issue on the gallery page.
167189

168-
* `fix` #3499 : fix header always showing up by @ildyria.
190+
* `fixes` #3499 : fix header always showing up by @ildyria.
169191

170192
### v6.6.13
171193

@@ -201,10 +223,10 @@ All of them are enabled by default and can be disabled in the expert admin setti
201223

202224
#### Other changes
203225

204-
* `fix` #3498 : Fix SSRF + bump version by @ildyria.
226+
* `fixes` #3498 : Fix SSRF + bump version by @ildyria.
205227
* `new` #3491 : Add optional gallery header image by @ildyria.
206228
> We added the option to have a header image on top of the gallery page. You will find the configuration in the *Landing page* settings.
207-
* `fix` #3497 : add some missing RTL support on timeline photo display by @ildyria.
229+
* `fixes` #3497 : add some missing RTL support on timeline photo display by @ildyria.
208230
> Improvement of the RTL support on timeline photo display.
209231
210232
#### Credits
@@ -467,7 +489,7 @@ Released on May 17, 2025
467489
This version fixes the hotlinking prevention that was broken since version 6.6.0.
468490
We also added a few tests to make sure that this bug does not happen again.
469491

470-
* `fix` #3348 : Fix secure link missing route by @ildyria.
492+
* `fixes` #3348 : Fix secure link missing route by @ildyria.
471493

472494

473495
### v6.6.2

src/components/widgets/Announcement.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 6.6.14 is now available! »</a
1515
> -->
1616
<a
17-
href="https://github.com/LycheeOrg/Lychee/releases/tag/v6.8.0"
18-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium"><span class="text-red-500 font-bold">CVSS 7.5 in Lychee [6.6.6 to 6.6.9], update as soon as possible!</span> Lychee v6.8.0 is now available! »</a
17+
href="https://github.com/LycheeOrg/Lychee/releases/tag/v6.8.1"
18+
class="text-slate-200 hover:underline dark:text-slate-200 font-medium"><span class="text-red-500 font-bold">CVSS 7.5 in Lychee [6.6.6 to 6.6.9], update as soon as possible!</span> Lychee v6.8.1 is now available! »</a
1919
>
2020
<a
2121
target="_blank"

0 commit comments

Comments
 (0)