Merge pull request #6710 from pixelfed/staging

Staging
pull/6752/head v0.12.9
dansup 4 weeks ago committed by GitHub
commit 0dc12f23ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

@ -1,12 +1,9 @@
FROM serversideup/php:8.4-fpm-nginx
FROM serversideup/php:8.5-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

@ -23,7 +23,7 @@ return [
| This value is the version of your Pixelfed instance.
|
*/
'version' => '0.12.8',
'version' => '0.12.9',
/*
|--------------------------------------------------------------------------

Loading…
Cancel
Save