6526 Commits

Author SHA1 Message Date
Dries Vints
507d499577
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-05-18 17:38:28 +02:00
Dries Vints
afa06fac2a
Update CHANGELOG.md v8.5.18 2021-05-18 17:37:20 +02:00
Hiren Keraliya
d3efbaab58
[8.x] Fixed grammar mistake (#5611)
* Grammar mistakes

* Update session.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2021-05-17 08:15:26 -05:00
Taylor Otwell
637c85d624 wip 2021-05-14 10:09:46 -05:00
Seyed Morteza Ebadi
3131f789ae
Add Octane cache store (#5610) 2021-05-14 10:09:09 -05:00
Dries Vints
72c6aaa8df
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
#	composer.json
2021-05-11 22:50:27 +02:00
Dries Vints
b1b28a6bb1
Update CHANGELOG.md v8.5.17 2021-05-11 22:49:31 +02:00
Dries Vints
4ce641d571
Apply fixes from StyleCI (#5607) 2021-05-07 05:54:25 -05:00
Sarwar Ahmed
eb484ce7ed Laracasts contains 2000 video tutorials 2021-05-07 12:53:34 +02:00
Umar
ca7f386666
[8.x] Grammatical omission of 'of' on line 14 (#5603)
* [FIX] grammatical omission of 'of' on line 14

* Update artisan

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2021-04-30 07:45:35 -05:00
netpok
5bd72e7805
Bump framework version (#5601)
to include SQL server security fix for GHSA-4mg9-vhxq-vm7j
2021-04-29 07:55:46 -05:00
Dries Vints
dd8111a32d
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
#	tests/Feature/ExampleTest.php
#	tests/Unit/ExampleTest.php
2021-04-20 18:14:47 +02:00
Dries Vints
a6ffdbdf41
Update CHANGELOG.md v8.5.16 2021-04-20 18:13:08 +02:00
Roger Vilà
e109ac9022
Update .gitignore (#5593) 2021-04-16 08:13:56 -05:00
Dries Vints
6746f4ec12
[9.x] Implement anonymous migrations (#5590)
* Implement anonymous migrations

* Apply fixes from StyleCI (#5589)
2021-04-15 06:53:35 -05:00
JuanDMeGon
0e8e9a0727
[8.x] Using faker method instead of properties (#5583)
After Faker PHP 1.14 using properties is deprecated and is recommended to use methods instead.
2021-04-13 07:28:01 -05:00
Taylor Otwell
5474127548
Update README.md 2021-04-08 13:45:57 -05:00
Dries Vints
5808129a1f
Rename test methods (#5574) 2021-03-26 07:47:26 -07:00
Dries Vints
9e920323de
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-03-23 18:26:04 +01:00
Dries Vints
6bc0b1cfcb
Update CHANGELOG.md v8.5.15 2021-03-23 18:25:11 +01:00
Dries Vints
f5cac881c9
Re-order composer.json (#5570) 2021-03-21 08:38:50 -05:00
Philo Hermans
e464182760
Add prohibited validation rule (#5569) 2021-03-19 09:53:34 -05:00
Reza Amini
2b4d7c8799
[9.x] Change default disk env key (#5568) 2021-03-19 09:03:08 -05:00
Dries Vints
f51adc5b53
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-03-16 17:26:56 +01:00
Dries Vints
57ddc0ebbb
Update CHANGELOG.md v8.5.14 2021-03-16 17:26:11 +01:00
Taylor Otwell
9c5e6f9757 update wording 2021-03-15 08:41:28 -05:00
Matthew Setter
e95a675e43 Minor update to check if application is under maintenance documentation
While reading through the documentation in public/index.php, the initial
sentence documenting checking if the application is under maintenance
didn't quite read properly to me, nor did the section's header. So, I'm
submitting this small patch to correct it.
2021-03-14 21:04:22 +01:00
Dries Vints
471195d743
Fix footer on mobile (#5561) 2021-03-12 07:55:27 -06:00
Jesper Noordsij
177e05beec
Add log level config value to stderr channel (#5558) 2021-03-10 08:52:57 -06:00
Tim MacDonald
89b15441a9
add date facade alias (#5556) 2021-03-10 08:13:17 -06:00
Jess Archer
3a62cfb4fe
Add language for prohibited_if and prohibited_unless validation rules (#5557) 2021-03-10 08:12:57 -06:00
Dries Vints
38207d610d
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-03-09 20:10:21 +01:00
Dries Vints
a315767e09
Update CHANGELOG.md v8.5.13 2021-03-09 20:09:48 +01:00
Brandon Surowiec
5cfd28df2d
Add missing 'after_commit' attribute (#5554)
There's a new `after_commit` config option that isn't in the default config: 
https://laravel.com/docs/8.x/queues#jobs-and-database-transactions

For new projects it may be better to have these defaulted to `true`, but I left it as `false` for now.
2021-03-09 08:51:56 -06:00
Tim MacDonald
c988335502
Standarise "must" and "may" language in validation (#5552)
Majority of the messages are in the format ":attribute must
{conditions_to_be_met}", however a few inconsistently use "may" instead
of "must".

This PR fixes that and has them all use "must" instead.

To highlight the inconsistency:

```php
// "may"
'max' => [
    'numeric' => 'The :attribute may not be greater than :max.',
    'file' => 'The :attribute may not be greater than :max kilobytes.',
    'string' => 'The :attribute may not be greater than :max characters.',
    'array' => 'The :attribute may not have more than :max items.',
],
// "must"
'min' => [
    'numeric' => 'The :attribute must be at least :min.',
    'file' => 'The :attribute must be at least :min kilobytes.',
    'string' => 'The :attribute must be at least :min characters.',
    'array' => 'The :attribute must have at least :min items.',
],
```
2021-03-09 07:23:56 -06:00
Karel Faille
2b8f3aa506
Use same default queue name for all drivers (#5549) 2021-03-02 13:35:52 -06:00
Dries Vints
941bd32ea8
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-03-02 17:37:08 +01:00
Dries Vints
20455c6f5f
Update CHANGELOG.md v8.5.12 2021-03-02 17:36:09 +01:00
Rodrigo Pedra Brum
03be0afb44
Don't trim current_password (#5546)
Inspired by https://github.com/laravel/framework/pull/36415

As JetStream/Fortify uses a `current_password` field when allowing a user to change their password, and as JetStream is one of the starter kits listed on the docs, this PR adds `current_password` in the `$except` option of the `TrimStrings` middleware.
2021-03-01 07:38:37 -06:00
Martin Eiber
16f531e646
[8.x] Added sans-serif as Fallback Font (#5543)
* Added sans-serif as Fallback Font

Added sans-serif as Fallback Font to the Welcome Page

* Update welcome.blade.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2021-02-26 07:19:45 -06:00
Dries Vints
b2ac03183b
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-02-23 21:43:40 +01:00
Dries Vints
06d967a4c7
Update CHANGELOG.md v8.5.11 2021-02-23 21:43:02 +01:00
Hugo Clarke-Wing
f0de9fd996
Don't flash 'current_password' input (#5541)
* Don't flash `current_password` input

With starter packs like Jetstream, the `current_password` input is used.

I believe that adding `current_password` to the `$dontFlash` list by default would help to ensure new projects follow security best practices from the get-go.

* Update Handler.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2021-02-19 09:09:51 -06:00
Dries Vints
828f2d4401
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-02-16 17:59:48 +01:00
Taylor Otwell
ebf2646c34 wip v8.5.10 2021-02-16 10:58:35 -06:00
Dries Vints
689c0e5a23
Update CHANGELOG.md 2021-02-16 17:57:31 +01:00
Taylor Otwell
698a61d025 Merge branch '8.x' of github.com:laravel/laravel into 8.x 2021-02-16 08:02:15 -06:00
Taylor Otwell
9a56a60cc9 update wording 2021-02-16 08:02:06 -06:00
Taylor Otwell
22626b5701
Revert "Change "Login" text to "Log in" (#5536)" (#5537)
This reverts commit cbddb27c7e63eb1942efcdd95c8bd5bdf5be940f.
2021-02-15 15:06:50 -06:00
Mark Jaquith
cbddb27c7e
Change "Login" text to "Log in" (#5536)
As this is used as a verb, like its friend "Register", the verb form should be used.

http://notaverb.com/login
2021-02-15 15:06:24 -06:00