-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Laravel 8 upgrade #285
Merged
Laravel 8 upgrade #285
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
5565b16
Start updating to Laravel 8
supertassu 1731bf3
Fix tests, update laravel-socialite-mediawiki
supertassu 577f1ed
Only search oldappeals table if it exists in AppealController::appeal()
supertassu f8be9fa
Merge branch 'appeal-oldappeal-check' into laravel-8
supertassu 474325a
Properly throw exception
supertassu ac2a2b7
Merge branch 'appeal-oldappeal-check' into laravel-8
supertassu ed42869
Fix class name in test
supertassu 6f2b90d
Apply non-model-moving changes made between L6 and 8
supertassu 3b42cf5
Rename database/seeds/ to database/seeders/
supertassu 0aca5a4
Manually apply namespace to routes, comments on variable seem wrong
supertassu 6f4bef0
Update dependencies again
supertassu a796cb1
Class name fixes
supertassu 01b866e
Merge branch 'master' into laravel-8
dqwiki c3f40dd
Push latest updates
dqwiki 31845be
Upgrade Guzzle to 6.5.5 to avoid https://github.com/guzzle/guzzle/iss…
dqwiki be55f8a
factory helper is no longer available in laravel 8
dqwiki 129d04e
Disable buttons that haven't worked in ages
dqwiki bee4015
Modify per be55f8a comments
dqwiki f5487c0
Upgrade Factory changes in Laravel 8
dqwiki 1a9bfbf
Upgrade factory for dusk
dqwiki 64670ce
Fix System comments via old appeal comments causing 404
dqwiki c0b741e
Cleanup DQ's fix
supertassu 4b7958d
Clean up even more
supertassu 36ee22d
Re-add missing middleware, run composer update, fix ip ban factory
supertassu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace App\Http\Middleware; | ||
|
||
use Illuminate\Http\Middleware\TrustHosts as Middleware; | ||
|
||
class TrustHosts extends Middleware | ||
{ | ||
/** | ||
* Get the host patterns that should be trusted. | ||
* | ||
* @return array | ||
*/ | ||
public function hosts() | ||
{ | ||
return [ | ||
$this->allSubdomainsOfApplicationUrl(), | ||
]; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
use Illuminate\Database\Eloquent\Model; | ||
|
||
class oldcomment extends Model | ||
class Oldcomment extends Model | ||
{ | ||
// | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not a sufficient catch. With Oldappeals, Oldcomments has a zero equivalency being the system. Uploading a patch.