[PR #712] [MERGED] Update all dependencies #920

Closed
opened 2026-02-04 19:02:00 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/pelican-dev/panel/pull/712
Author: @Boy132
Created: 11/15/2024
Status: Merged
Merged: 11/22/2024
Merged by: @Boy132

Base: mainHead: update/dependencies


📝 Commits (8)

📊 Changes

124 files changed (+977 additions, -1426 deletions)

View changed files

📝 app/Console/Commands/Server/BulkPowerActionCommand.php (+1 -0)
📝 app/Events/ActivityLogged.php (+1 -3)
📝 app/Events/Auth/DirectLogin.php (+1 -3)
📝 app/Events/Auth/FailedCaptcha.php (+1 -3)
📝 app/Events/Auth/FailedPasswordReset.php (+1 -3)
📝 app/Events/Auth/ProvidedAuthenticationToken.php (+1 -3)
📝 app/Events/Event.php (+1 -3)
📝 app/Events/Server/Installed.php (+1 -3)
📝 app/Exceptions/Http/Base/InvalidPasswordProvidedException.php (+1 -3)
📝 app/Exceptions/PanelException.php (+1 -3)
📝 app/Exceptions/Repository/DuplicateDatabaseNameException.php (+1 -3)
📝 app/Exceptions/Service/Allocation/ServerUsingAllocationException.php (+1 -3)
📝 app/Exceptions/Service/Deployment/NoViableAllocationException.php (+1 -3)
📝 app/Exceptions/Service/Egg/HasChildrenException.php (+1 -3)
📝 app/Exceptions/Service/Egg/Variable/BadValidationRuleException.php (+1 -3)
📝 app/Exceptions/Service/Egg/Variable/ReservedVariableNameException.php (+1 -3)
📝 app/Exceptions/Service/InvalidFileUploadException.php (+1 -3)
📝 app/Exceptions/Service/Node/ConfigurationNotPersistedException.php (+1 -3)
📝 app/Exceptions/Service/Subuser/ServerSubuserExistsException.php (+1 -3)
📝 app/Exceptions/Service/Subuser/UserIsServerOwnerException.php (+1 -3)

...and 80 more files

📄 Description

Updates all dependencies.

Also updates migrations: Laravel 11.15 added some enhancements to migrations, especially when using sqlite.
Among other things, this means dropForeign now actually works. YAY!
It also added support for older sqlite versions. Support was extended to 3.26+ (previously 3.35+) which means older OS should work out of the box with sqlite. YAY²!

Needs some more throughout testing! Especially regarding foreign keys!


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/pelican-dev/panel/pull/712 **Author:** [@Boy132](https://github.com/Boy132) **Created:** 11/15/2024 **Status:** ✅ Merged **Merged:** 11/22/2024 **Merged by:** [@Boy132](https://github.com/Boy132) **Base:** `main` ← **Head:** `update/dependencies` --- ### 📝 Commits (8) - [`9f7bc85`](https://github.com/pelican-dev/panel/commit/9f7bc856bbd47782dcaafe7427ddf20b40ac5190) update composer.lock - [`22131cc`](https://github.com/pelican-dev/panel/commit/22131cc4fc3f53dd31859fb934c48c4b5505d0d1) run pint - [`4b9b898`](https://github.com/pelican-dev/panel/commit/4b9b89873f2f49391ef58040502958ac3ddbfd5f) fix phpstan - [`d52bb87`](https://github.com/pelican-dev/panel/commit/d52bb874084868e29a03061aa50ec8f111dd7c70) update migrations (sqlite `dropForeign`) - [`51477d1`](https://github.com/pelican-dev/panel/commit/51477d13be52498e6549535b61edd52d9ddfc69e) fix migrations - [`a0e31f2`](https://github.com/pelican-dev/panel/commit/a0e31f20c40b34689cb35af43fc4b13ee6359e9b) Reset these back for now - [`824c0fe`](https://github.com/pelican-dev/panel/commit/824c0fe5c0b623b0c194fb17890dc757a6c4c88d) Alphabetize the rules - [`bc4c1cd`](https://github.com/pelican-dev/panel/commit/bc4c1cd0381e114935ed17244abc8f6d82f52cf7) run `php artisan filament:upgrade` ### 📊 Changes **124 files changed** (+977 additions, -1426 deletions) <details> <summary>View changed files</summary> 📝 `app/Console/Commands/Server/BulkPowerActionCommand.php` (+1 -0) 📝 `app/Events/ActivityLogged.php` (+1 -3) 📝 `app/Events/Auth/DirectLogin.php` (+1 -3) 📝 `app/Events/Auth/FailedCaptcha.php` (+1 -3) 📝 `app/Events/Auth/FailedPasswordReset.php` (+1 -3) 📝 `app/Events/Auth/ProvidedAuthenticationToken.php` (+1 -3) 📝 `app/Events/Event.php` (+1 -3) 📝 `app/Events/Server/Installed.php` (+1 -3) 📝 `app/Exceptions/Http/Base/InvalidPasswordProvidedException.php` (+1 -3) 📝 `app/Exceptions/PanelException.php` (+1 -3) 📝 `app/Exceptions/Repository/DuplicateDatabaseNameException.php` (+1 -3) 📝 `app/Exceptions/Service/Allocation/ServerUsingAllocationException.php` (+1 -3) 📝 `app/Exceptions/Service/Deployment/NoViableAllocationException.php` (+1 -3) 📝 `app/Exceptions/Service/Egg/HasChildrenException.php` (+1 -3) 📝 `app/Exceptions/Service/Egg/Variable/BadValidationRuleException.php` (+1 -3) 📝 `app/Exceptions/Service/Egg/Variable/ReservedVariableNameException.php` (+1 -3) 📝 `app/Exceptions/Service/InvalidFileUploadException.php` (+1 -3) 📝 `app/Exceptions/Service/Node/ConfigurationNotPersistedException.php` (+1 -3) 📝 `app/Exceptions/Service/Subuser/ServerSubuserExistsException.php` (+1 -3) 📝 `app/Exceptions/Service/Subuser/UserIsServerOwnerException.php` (+1 -3) _...and 80 more files_ </details> ### 📄 Description Updates all dependencies. Also updates migrations: [Laravel 11.15](https://github.com/laravel/framework/releases/tag/v11.15.0) added some enhancements to migrations, especially when using sqlite. Among other things, this means `dropForeign` now actually works. YAY! It also added support for older sqlite versions. Support was extended to 3.26+ (previously 3.35+) which means older OS should work out of the box with sqlite. YAY²! **Needs some more throughout testing! Especially regarding foreign keys!** --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-04 19:02:00 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/panel#920