[PR #116] [MERGED] Laravel 11.x Shift #118

Closed
opened 2026-02-26 17:31:31 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ConvoyPanel/panel/pull/116
Author: @ericwang401
Created: 10/15/2024
Status: Merged
Merged: 11/8/2024
Merged by: @ericwang401

Base: nextHead: shift-130906


📝 Commits (10+)

📊 Changes

317 files changed (+3254 additions, -4429 deletions)

View changed files

📝 .env.ci (+1 -1)
📝 .env.example (+4 -4)
.env.full_example (+50 -0)
📝 .github/workflows/release.yml (+1 -0)
📝 app/Actions/Fortify/CreateNewUser.php (+1 -1)
📝 app/Actions/Fortify/UpdateUserProfileInformation.php (+2 -2)
📝 app/Casts/NullableEncrypter.php (+4 -4)
📝 app/Console/Commands/Maintenance/PruneOrphanedBackupsCommand.php (+2 -2)
📝 app/Console/Commands/Maintenance/PruneUsersCommand.php (+1 -1)
📝 app/Console/Commands/Server/UpdateRateLimitsCommand.php (+1 -1)
📝 app/Console/Commands/Server/UpdateUsagesCommand.php (+1 -1)
📝 app/Console/Commands/User/MakeUserCommand.php (+2 -2)
app/Console/Kernel.php (+0 -48)
📝 app/Contracts/Repository/ActivityRepositoryInterface.php (+1 -1)
📝 app/Contracts/Repository/RepositoryInterface.php (+3 -3)
📝 app/Contracts/Repository/ServerRepositoryInterface.php (+1 -1)
📝 app/Data/Helpers/ChecksumData.php (+2 -2)
📝 app/Data/Node/Access/CreateUserData.php (+9 -9)
📝 app/Data/Node/Access/UserCredentialsData.php (+5 -6)
📝 app/Data/Node/Access/UserData.php (+9 -9)

...and 80 more files

📄 Description

This pull request includes the changes for upgrading to Laravel 11.x. Feel free to commit any additional changes to the shift-130906 branch.

Before merging, you need to:

  • Checkout the shift-130906 branch
  • Review all pull request comments for additional changes
  • Run composer update (if the scripts fail, try with --no-scripts)
  • Clear any config, route, or view cache
  • Thoroughly test your application (no tests?, no CI?)

If you need help with your upgrade, check out the Human Shifts.


🔄 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/ConvoyPanel/panel/pull/116 **Author:** [@ericwang401](https://github.com/ericwang401) **Created:** 10/15/2024 **Status:** ✅ Merged **Merged:** 11/8/2024 **Merged by:** [@ericwang401](https://github.com/ericwang401) **Base:** `next` ← **Head:** `shift-130906` --- ### 📝 Commits (10+) - [`669b536`](https://github.com/ConvoyPanel/panel/commit/669b536c65502d1cd97832e2382400d80dd13b4a) Apply code style - [`efd2776`](https://github.com/ConvoyPanel/panel/commit/efd277608d435bc8667d3bd9c9527d209f11568f) Use Faker methods - [`f76e21f`](https://github.com/ConvoyPanel/panel/commit/f76e21f278d2dc28afeedd28d2ac808f520557b6) Remove unnecessary `$model` property - [`e309038`](https://github.com/ConvoyPanel/panel/commit/e309038e0f5027e6a859bf4cf305cf0445a8940e) Convert route options to fluent methods - [`0679acd`](https://github.com/ConvoyPanel/panel/commit/0679acd7f3be0482d37c9c76f9cc7f7874409e32) Remove default `app` files - [`299e52b`](https://github.com/ConvoyPanel/panel/commit/299e52b8da90718e312ffe8f9ee3672498752073) Shift core files - [`822bd42`](https://github.com/ConvoyPanel/panel/commit/822bd4274855af2822cd2bdce245687d0c85bab5) Streamline config files - [`6be445c`](https://github.com/ConvoyPanel/panel/commit/6be445c7dca059f140d062fd376ebf86f90b18a8) Set new `ENV` variables - [`0b6715b`](https://github.com/ConvoyPanel/panel/commit/0b6715b9d6d6524cface15264adda7ea29db82e0) Default new `bootstrap/app.php` - [`e780f87`](https://github.com/ConvoyPanel/panel/commit/e780f8778efaacbb6a5c4fbae1c2f5d7ed26c5c2) Re-register HTTP middleware ### 📊 Changes **317 files changed** (+3254 additions, -4429 deletions) <details> <summary>View changed files</summary> 📝 `.env.ci` (+1 -1) 📝 `.env.example` (+4 -4) ➕ `.env.full_example` (+50 -0) 📝 `.github/workflows/release.yml` (+1 -0) 📝 `app/Actions/Fortify/CreateNewUser.php` (+1 -1) 📝 `app/Actions/Fortify/UpdateUserProfileInformation.php` (+2 -2) 📝 `app/Casts/NullableEncrypter.php` (+4 -4) 📝 `app/Console/Commands/Maintenance/PruneOrphanedBackupsCommand.php` (+2 -2) 📝 `app/Console/Commands/Maintenance/PruneUsersCommand.php` (+1 -1) 📝 `app/Console/Commands/Server/UpdateRateLimitsCommand.php` (+1 -1) 📝 `app/Console/Commands/Server/UpdateUsagesCommand.php` (+1 -1) 📝 `app/Console/Commands/User/MakeUserCommand.php` (+2 -2) ➖ `app/Console/Kernel.php` (+0 -48) 📝 `app/Contracts/Repository/ActivityRepositoryInterface.php` (+1 -1) 📝 `app/Contracts/Repository/RepositoryInterface.php` (+3 -3) 📝 `app/Contracts/Repository/ServerRepositoryInterface.php` (+1 -1) 📝 `app/Data/Helpers/ChecksumData.php` (+2 -2) 📝 `app/Data/Node/Access/CreateUserData.php` (+9 -9) 📝 `app/Data/Node/Access/UserCredentialsData.php` (+5 -6) 📝 `app/Data/Node/Access/UserData.php` (+9 -9) _...and 80 more files_ </details> ### 📄 Description This pull request includes the changes for upgrading to Laravel 11.x. Feel free to commit any additional changes to the `shift-130906` branch. **Before merging**, you need to: - Checkout the `shift-130906` branch - Review **all** pull request comments for additional changes - Run `composer update` (if the scripts fail, try with `--no-scripts`) - Clear any config, route, or view cache - Thoroughly test your application ([no tests?](https://laravelshift.com/laravel-test-generator), [no CI?](https://laravelshift.com/ci-generator)) If you need help with your upgrade, check out the [Human Shifts](https://laravelshift.com/human-shifts). --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 17:31:31 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/panel#118
No description provided.