mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
3.9 KiB
3.9 KiB
Changelog
All notable changes to this project will be documented in this file.
[5.0.0-alpha.1] - 2026-XX-XX
Release Highlights
Added
- v4 to v5 upgrade migration
- Added Coolify v4 database as
old_pgsqlconnection
- Added Coolify v4 database as
Changed
- Upgraded all Composer and Node dependencies, most notably: PHP to 8.5 (from 8.4), TailwindCSS to v4.0 (from v3) and Laravel to v12 (from v10)
- Docker:
- Upgraded all Docker dependencies, most notably: Postgres to v18 (from v15) and Redis to v8 (from v7)
- Laravel Configurations:
- Changed hashing algorithm from
bcrypttoargon2idfor enhanced security - Use Redis for sessions and expire inactive sessions after 24h
- Encrypt user sessions data
- Redirect Laravel logs to
stderrso they can be viewed in docker logs - Configured production logging to rotate automatically and keep only the last 10 days of logs to reduce disk usage
- Changed production log level from
debugtowarningto reduce disk usage and avoid logging sensitive information - Configured separate Redis connections for cache, jobs and sessions for easier debugging and separation
- Updated all Laravel config files to the latest version and removed all unused config options
- Changed hashing algorithm from
- Changed license from
Apache-2.0toAGPL-3.0
Deprecated
Removed
- Session cleanup job as we now use Redis for sessions with a TTL
- A lot of legacy code, outdated configs and dependencies
Fixed
laravel.logfile growing indefinitely and consuming excessive disk space
Security
Performance
Maintenance
- Testing:
- Added custom Architecture test that enforces Laravel & PHP best practices to ensure security and consistency across the codebase
- Tooling:
- Added Rector & Rector Laravel with a strict configuration for automatic refactoring of the codebase
- Added a strict custom Laravel Pint preset for consistent PHP formatting across the codebase
- Added Larastan (PHPStan) Level
maxfor code analysis and type checking - Added custom composer scripts to run refactors, formatting, linting, tests and type-coverage
- Added strict
AppServiceProvider.php:- Optionally enforce HTTPS for the Coolify dashboard
- Enforce strong password validation rules in production
- Disable destructive artisan commands in production
- Automatically eager load all relationships to prevent N+1 queries
- Configure models and enforce morph map for polymorphic relationships
- Enforce immutable dates globally
- Fake sleeps and prevent stray HTTP requests in testing
- Prevent exception truncation in development
- Use aggressive Vite prefetching for better performance
- Only install Ray in development and remove all
ray()calls from production code via Rector - Switched Node package manager from
NPMtoBunfor improved security and performance - Added
$schematocomposer.jsonandpackage.json
- Coolify GitHub Repository:
- Pinned all GitHub actions to full length git SHAs to minimize the risk of supply chain attacks
- Set permissions explicitly on each GitHub workflow to only give the minimum required permissions
- Renamed all GitHub action workflows for improved clarity
- Cancel in-progress action runs when a new run is triggered
- Improved
SECURITY.mdformatting and wording and added the support policy forv5.x - Refactored the GitHub issue templates to use issue types and improved formatting and wording
- Moved
README.mdassets into.github/assets/to easier exclude them from the core repository code - Removed the
chore-remove-labels-and-assignees-on-close.ymlworkflow as labels and assignees are now kept when closing Issues and PRs
Refactored
- Completely refactored all database migrations for a cleaner, more consistent and optimized schema