6536 Commits

Author SHA1 Message Date
Dries Vints
2460441818
Merge branch '7.x'
# Conflicts:
#	CHANGELOG.md
#	composer.json
2020-10-29 14:32:54 +01:00
Dries Vints
482d68a182
Update CHANGELOG.md v7.29.0 2020-10-29 14:26:10 +01:00
Dries Vints
02ca853809
Nump minimum Laravel version 2020-10-29 14:23:59 +01:00
Dries Vints
056a9e8f90
Merge branch '6.x' into 7.x
# Conflicts:
#	CHANGELOG.md
#	composer.json
2020-10-29 14:23:32 +01:00
Dries Vints
aef279a6cf
Update CHANGELOG.md v6.19.0 2020-10-29 14:17:39 +01:00
Dries Vints
b8d582581a
Update minimum Laravel version 2020-10-29 14:16:58 +01:00
Dries Vints
a4d45e6940
Update CHANGELOG.md 2020-10-29 14:15:43 +01:00
Taylor Otwell
5396be6ef2 update welcome view 2020-10-27 15:15:00 -05:00
Dries Vints
b322096379
Merge branch '7.x'
# Conflicts:
#	composer.json
2020-10-27 16:18:44 +01:00
Dries Vints
9b21125e31
Merge branch '6.x' into 7.x
# Conflicts:
#	composer.json
2020-10-27 16:18:17 +01:00
Dries Vints
4c25cb953a
Allow for PHP 8 2020-10-27 16:17:46 +01:00
Dries Vints
8bfecacf8c
Merge branch '7.x'
# Conflicts:
#	composer.json
#	resources/views/welcome.blade.php
2020-10-27 15:02:56 +01:00
Dries Vints
533f130f14
Merge branch '6.x' into 7.x 2020-10-27 15:01:36 +01:00
Dries Vints
3d46fc355d
Update Faker (#5461) 2020-10-27 08:54:45 -05:00
Dries Vints
22fa816fdf
Delete removed webpack flag (#5460) 2020-10-27 08:11:46 -05:00
Taylor Otwell
bec982b0a3 update by 2020-10-22 16:01:59 -05:00
Viktor Szépe
453d7286f3
Revert per user API rate limit
It was changed from per user to per application in ced3e50bca279f5a499a6d513fcdfd2a020c28ce
2020-10-22 22:41:03 +02:00
Dries Vints
aeec665b75
Update composer.json (#5452) 2020-10-22 07:31:01 -05:00
Dries Vints
d82d7505a1
Update CHANGELOG.md v8.2.0 2020-10-20 20:34:02 +02:00
Tim MacDonald
8d3ca07c4c
add 'multiple_of' translation (#5449) 2020-10-16 08:25:48 -05:00
Ali Shaikh
6bfe68365d
[8.x] Added 'LOG_LEVEL' env variable in .env.example (#5445)
* Added 'LOG_LEVEL' env variable in .env.example

Added 'LOG_LEVEL' env variable in .env.example to be consistant with the change in [#5442](https://github.com/laravel/laravel/pull/5442)

* Update .env.example

Co-authored-by: Dries Vints <dries@vints.io>
2020-10-09 07:40:20 -05:00
Dries Vints
c66546e75f
Update CHANGELOG.md v8.1.0 2020-10-06 18:11:27 +02:00
Dries Vints
f5161080d4
Update CHANGELOG.md 2020-10-06 18:08:05 +02:00
Norgul
f12fd98414
Update logging.php (#5442)
Added `LOG_LEVEL` env variable
2020-10-05 15:11:23 -05:00
Pataar
7b958b5d15
[8.x] Update the badges to use shields.io (#5441)
* Update the badges to use shields.io

Shields.io works a lot better than the old pugx.org.

* Target `/framework` instead of `/laravel`
2020-10-05 07:45:05 -05:00
Andrew Brown
38bc9119eb
type hint the middleware Request (#5438)
stemming from https://github.com/laravel/framework/pull/34224
2020-10-02 08:31:13 -05:00
Taylor Otwell
a6ca577839 add comment v8.0.3 2020-09-22 14:17:27 -05:00
Ricardo Gobbo de Souza
d3353c9e9a
Fix route when uncomment $namespace (#5424) v8.0.2 2020-09-22 09:23:40 -05:00
Dries Vints
6a9d5e0da1
Merge branch '7.x' into master
# Conflicts:
#	CHANGELOG.md
2020-09-21 18:12:33 +02:00
Dries Vints
4eeb29ee12
Update changelog 2020-09-21 17:59:16 +02:00
Alex Mayer
f1a51f7c62
[8.x] Update User Model to Match Jetstream Formatting (#5422)
* Update User Model to Match Jetstream Formatting

* Update User.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2020-09-20 20:35:48 -05:00
Taylor Otwell
69d0c504e3 add commented code 2020-09-20 11:39:57 -05:00
Wojciech Gabryś
c62a7c13bf Update model path in AuthServiceProvider's policies.
Due to the change of default model location in Laravel 8.x from /App to /App/Models, the initial policy comment shoud also reflect this change.
2020-09-15 09:53:40 +02:00
Graham Campbell
c6c41f11b8
Revert "Fix PHPUnit bool server consts result in null (#5409)" (#5411)
This reverts commit 1c4af33b8f55b47ccf9be7a416a98f36cd961802.
2020-09-14 11:16:11 -05:00
Graham Campbell
7cd15dbad6
Avoid deprecated StyleCI fixer name (#5410) 2020-09-14 08:18:04 -05:00
Martin Hettiger
1c4af33b8f
Fix PHPUnit bool server consts result in null (#5409)
After updating to Laravel 8 I suddenly had my test suite failing because telescope would not be disabled properly by `phpunit.xml` anymore.
This changes fixed my test suite.

I've also created a clean Laravel 8 project and added some tests to demonstrate the issue:
908d3405b8

Maybe this needs to be addressed in PHPUnit. However I'm adding this workaround here because it's a viable solution IMHO.
Maybe should add a note on this in the docs and be done with it…?
2020-09-14 08:04:03 -05:00
Salim Djerbouh
ca30159cab
fully qualified user model in seeder (#5406)
makes it easy to just uncomment when tinkering around
2020-09-13 09:17:54 -05:00
Taylor Otwell
292a5b26a9 swap route order 2020-09-11 08:29:38 -05:00
Taylor Otwell
b33852ecac remove property 2020-09-10 14:28:44 -05:00
Taylor Otwell
9cbc3819f7 add property to route service provider v8.0.1 2020-09-09 21:00:21 -05:00
Can Vural
94e7945517
Fix docblock for variadic parameter (#5401) 2020-09-09 07:20:20 -05:00
Youri Wijnands
b9b282a719
Use the new Google Fonts API (#5396)
https://developers.google.com/fonts/docs/css2
2020-09-08 07:50:51 -05:00
Youri Wijnands
c64061629e
Use the new Google Fonts API (#5398)
https://developers.google.com/fonts/docs/css2
v8.0.0
2020-09-08 07:50:22 -05:00
Dries Vints
151e11cacc
Merge branch 'master' into develop
# Conflicts:
#	app/Exceptions/Handler.php
2020-09-08 13:28:32 +02:00
Dries Vints
a7a40d7744
Merge branch '6.x' into master v7.28.0 2020-09-08 13:28:00 +02:00
Dries Vints
179e52bdd7
Fix logo 2020-09-08 13:27:47 +02:00
Mark van den Broek
7895cd3a5f
Update docblock (#5392) 2020-09-04 21:07:55 -05:00
Dries Vints
dc5817bbf2
Update Handler.php 2020-09-04 10:39:28 +02:00
Taylor Otwell
cfd428bfcb add dontReport property 2020-08-28 10:06:23 -05:00
Taylor Otwell
ced3e50bca use new rate limiting 2020-08-27 13:36:32 -05:00