From f5052e0715ef4660c2e3fcac8f602c088bae7df9 Mon Sep 17 00:00:00 2001 From: ildyria Date: Fri, 19 Sep 2025 08:50:08 +0200 Subject: [PATCH 1/3] version 6.9.2 --- docs/releases.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/docs/releases.md b/docs/releases.md index ed9a95c7..808ed419 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -30,6 +30,36 @@ ## Version 6 +### v6.9.2 + +Released on Sep 19th, 2025 + +#### Minor fixes + +Small release that should improve the handling of using Lychee in a "subfolder" setup (e.g. `example.com/lychee`). +Note that this is **not a recommended setup** for security reasons as you will likely be leaking your logs _et al._ +without further hardening your installation. + +**We strongly recommend you use a subdomain instead (e.g. `photos.example.com`).** + +* `new` #3673 : Add documentation on how to had Oauth providers by @ildyria. + > We added a small section in our repository to explain how to add Oauth providers. + > This is not something that is visible to our users, but more of a developer/contributor documentation. +* `new` #3684 : Add move to S3 command by @ildyria. + > A small request but with big impact. If you decide to move your photos to a S3 compatible storage, + > you no longer need to re-upload all your photos/create a new Lychee instance or other work around. + > You can now use the command `php artisan lychee:s3_migrate`, it will move your photos to the set up S3 storage. + > Note that we do not recommend doing this if you use "live photos" as those have slightly different handling and won't be handled properly. +* `new` #3694 : Allow to disable import from server from server side by @ildyria. + > This is a security measure. If you do not want your users (admin & owner included) to be able to use the import from server feature, + > you can now disable it via the `.env` file by setting `DISABLE_IMPORT_FROM_SERVER=true`. To preserve backward behaviour, this is set to `false` by default. +* `fix` #3696 : Fix subfolder duplicate path behaviour by @ildyria. + > When using Lychee in a subfolder setup (e.g. `example.com/lychee`), we had feedback that the setup was no longer working as expected. + > While we do not recommend this setup, we still aim to help our users. This fix should improve the handling of this setup. + > As a reminder, you will need to set the `.env` variables `APP_DIR` and `APP_URL` accordingly: for `example.com/lychee/public`, it should be + > `APP_DIR=/lychee/public` and `APP_URL=https://example.com`. + + ### v6.9.1 Released on Aug 31, 2025 From bf0947563b8bf3b6164ea8e172c74772fa488724 Mon Sep 17 00:00:00 2001 From: ildyria Date: Fri, 19 Sep 2025 08:50:15 +0200 Subject: [PATCH 2/3] version 6.9.2 --- src/components/widgets/Announcement.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/widgets/Announcement.astro b/src/components/widgets/Announcement.astro index 2f2b7d13..5a7db343 100644 --- a/src/components/widgets/Announcement.astro +++ b/src/components/widgets/Announcement.astro @@ -10,11 +10,11 @@ >NEW Lychee 6.9.1 is now available! »Lychee 6.9.2 is now available! » Date: Fri, 19 Sep 2025 09:21:46 +0200 Subject: [PATCH 3/3] Update docs/releases.md Co-authored-by: Martin Stone <1611702+d7415@users.noreply.github.com> --- docs/releases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/releases.md b/docs/releases.md index 808ed419..5b7b87cb 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -42,7 +42,7 @@ without further hardening your installation. **We strongly recommend you use a subdomain instead (e.g. `photos.example.com`).** -* `new` #3673 : Add documentation on how to had Oauth providers by @ildyria. +* `new` #3673 : Add documentation on how to add Oauth providers by @ildyria. > We added a small section in our repository to explain how to add Oauth providers. > This is not something that is visible to our users, but more of a developer/contributor documentation. * `new` #3684 : Add move to S3 command by @ildyria.