From f2db3fcf02318ca29c59331e46c50fe1d4d91625 Mon Sep 17 00:00:00 2001 From: Shlee Date: Mon, 1 Jun 2026 00:26:33 +0930 Subject: [PATCH 1/3] Update Dockerfile --- Dockerfile | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c1dc7605..996d0d688 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,9 @@ -FROM serversideup/php:8.4-fpm-nginx +FROM serversideup/php:8.4-frankenphp -# Set working directory WORKDIR /var/www/html -# Switch to root to install packages USER root -# Install system dependencies and PHP extensions RUN apt-get update && apt-get install -y \ ffmpeg \ unzip \ @@ -20,7 +17,6 @@ RUN apt-get update && apt-get install -y \ curl \ && rm -rf /var/lib/apt/lists/* -# Install PHP extensions using the built-in helper RUN install-php-extensions \ bcmath \ curl \ @@ -36,20 +32,16 @@ RUN install-php-extensions \ vips \ ffi -# Copy application files COPY --chown=www-data:www-data . /var/www/html -# Set proper permissions RUN chown -R www-data:www-data /var/www/html \ && find /var/www/html -type f -exec chmod 644 {} \; \ && find /var/www/html -type d -exec chmod 755 {} \; \ && chmod -R ug+rwx /var/www/html/storage /var/www/html/bootstrap/cache -# Install composer dependencies RUN composer install --no-ansi --no-interaction --optimize-autoloader -# Switch back to www-data user USER www-data -# Expose port 8080 (default for serversideup/php) EXPOSE 8080 +EXPOSE 8443 From df8606ee566241cbda71ac6035b9c2068a7940a2 Mon Sep 17 00:00:00 2001 From: Shlee Date: Mon, 24 Aug 2026 21:40:24 +0930 Subject: [PATCH 2/3] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 996d0d688..a016b3746 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM serversideup/php:8.4-frankenphp +FROM serversideup/php:8.5-frankenphp WORKDIR /var/www/html From 16a413aa8b2e561c1fb7db979f964cc413c06ae4 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 24 Aug 2026 09:03:42 -0600 Subject: [PATCH 3/3] Bump version --- CHANGELOG.md | 9 ++++++++- config/pixelfed.php | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3345f6dd3..72c04fee9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ # Release Notes -## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.12.8...dev) +## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.12.10...dev) - ([](https://github.com/pixelfed/pixelfed/commit/)) +## [v0.12.9 (2026-08-25)](https://github.com/pixelfed/pixelfed/compare/v0.12.9...dev) + +- Account Migration fix ([2fd3162f404](https://github.com/pixelfed/pixelfed/commit/2fd3162f4041bf82a51018ffbe3e1509b6576e33)) +- Fix post likes modal ([d1b11e2a8](https://github.com/pixelfed/pixelfed/commit/d1b11e2a8f61f87a36bd1d3bee43f9c7507ab19a)) +- Refactor UserFilterService ([ecb04f3ab3](https://github.com/pixelfed/pixelfed/commit/ecb04f3ab3bd64d694747f929cfb9beeb9a76021)) +- Add alt tag to avatars ([5e79dbd3321](https://github.com/pixelfed/pixelfed/commit/5e79dbd33216f702f798d3c76a49188e69b5fa47)) + ## [v0.12.8 (2026-08-24)](https://github.com/pixelfed/pixelfed/compare/v0.12.8...dev) - Several security fixes diff --git a/config/pixelfed.php b/config/pixelfed.php index 6a85154c5..3cbaf24e4 100644 --- a/config/pixelfed.php +++ b/config/pixelfed.php @@ -23,7 +23,7 @@ return [ | This value is the version of your Pixelfed instance. | */ - 'version' => '0.12.8', + 'version' => '0.12.9', /* |--------------------------------------------------------------------------