Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
pull_request:

env:
PHP_VERSION: 8.4
PHP_VERSION: 8.5
CYPRESS_PROJECT_ID: w8t3fx

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-locales.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- cron: "0 * * * *"

env:
PHP_VERSION: 8.4
PHP_VERSION: 8.5

jobs:
pull-locales:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-locales.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- "develop"

env:
PHP_VERSION: 8.4
PHP_VERSION: 8.5

jobs:
pull-locales:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Bump base PHP image to 8.5 ([#2814])

## [v4.12.0] - 2026-02-09

### Added
Expand Down Expand Up @@ -680,6 +684,7 @@ You can find the changelog for older versions there [here](https://github.com/TH
[#2789]: https://github.com/THM-Health/PILOS/pull/2789
[#2798]: https://github.com/THM-Health/PILOS/pull/2798
[#2809]: https://github.com/THM-Health/PILOS/pull/2809
[#2814]: https://github.com/THM-Health/PILOS/pull/2814
[unreleased]: https://github.com/THM-Health/PILOS/compare/v4.12.0...develop
[v3.0.0]: https://github.com/THM-Health/PILOS/releases/tag/v3.0.0
[v3.0.1]: https://github.com/THM-Health/PILOS/releases/tag/v3.0.1
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"license": "MIT",
"require": {
"php": "^8.4",
"php": "^8.5",
"ext-curl": "*",
"ext-json": "*",
"ext-redis": "*",
Expand Down
2 changes: 1 addition & 1 deletion docker/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4-fpm-alpine
FROM php:8.5-fpm-alpine

LABEL maintainer="Samuel Weirich"
LABEL description="Development and production container for PILOS, compatible with laravel sail; heavily inspired by offical image"
Expand Down
Loading