Skip to content
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

[7.x] Added queue suffix for SQS driver #31784

Merged
merged 1 commit into from
Mar 6, 2020

Conversation

scrubmx
Copy link
Contributor

@scrubmx scrubmx commented Mar 5, 2020

When using multiple queues and environments it is hard to use different queues per environment (especially when using laravel vapor).

This PR allows suffixing the queue names by optionally adding a suffix entry to the SQS config in queue.php.

So, by adding a suffix to the config/queue.php file:

// config/queue.php

'sqs' => [
	'driver' => 'sqs',
	...
	'queue' => env('SQS_QUEUE', 'your-queue-name'),
+	'suffix' => env('SQS_SUFFIX'),
	'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],

A job using the "imports" queue will yield distinct suffixed queue url's based on the SQS_SUFFIX environment variable, ie:

Omitting the suffix config will yield the current (expected) behaviour:

Other references:

When using multiple queues and environments it is hard to use different
queues per environment (especially when using laravel vapor).

This PR allows suffixing the queue names by optionally adding a suffix
entry to the SQS config in queue.php.
@GrahamCampbell
Copy link
Member

Laravel 6.x is closed for new features now. It is accepting only bug fixes, as part of the LTS process. I will re-target this PR at the current stable: 7.x.

@GrahamCampbell GrahamCampbell changed the base branch from 6.x to 7.x March 6, 2020 10:07
@GrahamCampbell GrahamCampbell changed the title [6.x] Added queue suffix for SQS driver [7.x] Added queue suffix for SQS driver Mar 6, 2020
@taylorotwell
Copy link
Member

taylorotwell commented Mar 6, 2020

This is really confusing to me. Why would you not just add your suffix onto SQS_QUEUE directly? Why would you define it separately only to have the framework eventually concatenate it anyways?

@roberto-aguilar
Copy link
Contributor

I can elaborate on that using what i think would be a common scenario in Vapor.

If you have one project deployed in two environments with multiple queues, your vapor file will look like this:

environments:
    production:
        queues:
            - emails-production
            - imports-production
    staging:
        queues:
            - emails-staging
            - imports-staging

That suffix definition ensures that production queue jobs doesn't get processed on staging and vice-versa because both environments are active at the same time.

The goal in code would be to able to do this without having to think about the environments:

dispatch(new SendWelcomeEmail($user))->onQueue('emails');
dispatch(new ImportEmailsCsv($path))->onQueue('imports');

But currently that's not possible and requires the override of Illuminate\Bus\Queueable::onQueue which is not that bad, but with this PR we can avoid that and also be able to even use the $queue property right in the job definition:

class SendWelcomeEmail implements ShouldQueue
{
    /**
     * The name of the queue the job should be sent to.
     *
     * @var string|null
     */
    public $queue = 'emails';
}

All that it would take is just to define the SQS_SUFFIX environment variable in each environment and that's it! Vapor will handle this automagically 😃

What do you think, @taylorotwell? Would you be open to this with this use case in mind?

@scrubmx
Copy link
Contributor Author

scrubmx commented Mar 6, 2020

@taylorotwell

This is really confusing to me. Why would you not just add your suffix onto SQS_QUEUE directly? Why would you define it separately only to have the framework eventually concatenate it anyways?

Our application has 7 different queues and two different environments (staging and production):

  • automation-production
  • automation-staging
  • broadcasts-production
  • broadcasts-staging
  • contacts-production
  • contacts-staging
  • default-production
  • default-staging
  • emails-production
  • emails-staging
  • imports-production
  • imports-staging
  • messages-production
  • messages-staging

We are on laravel vapor and have to use SQS for both environments since it's cheaper for us.

As @roberto-aguilar mentioned we want to be able to define the queue name in the job class but currently is not possible. We looked into changing the prefix per environment but that does not work since we end up with an URL that looks like this:

sqs.someregion.amazonaws.com/account-id/staging-/broadcasts

Which is not correct. We also attempted to run the queues in different regions but AWS_DEFAULT_REGION is reserved in vapor and also does some magic (https://github.com/laravel/vapor-core/blob/2.0/src/ConfiguresSqs.php).

If merged this will make running multiple queues in different environments (not just in vapor but any application) easier.

Since our knowledge of AWS Lambda and Vapor, in general, is limited we are also hoping that there is an even easier approach that we are not aware of.

Thanks for your help :)

@taylorotwell taylorotwell merged commit 738a1d9 into laravel:7.x Mar 6, 2020
@taylorotwell
Copy link
Member

You may want to PR laravel/laravel to add this option.

taylorotwell pushed a commit to laravel/laravel that referenced this pull request Mar 6, 2020
As described in laravel/framework#31784, this option will allow to
define a queue name suffix.
roberto-aguilar added a commit to roberto-aguilar/vapor-core that referenced this pull request Mar 10, 2020
This ensures that the vapor connector receives the new suffix option
that was added in laravel/framework#31784
gomasy pushed a commit to gomasy/bookshelf that referenced this pull request Apr 10, 2020
As described in laravel/framework#31784, this option will allow to
define a queue name suffix.
comu2e pushed a commit to comu2e/GearLab that referenced this pull request Dec 12, 2021
As described in laravel/framework#31784, this option will allow to
define a queue name suffix.
jofernando added a commit to jofernando/Solicita that referenced this pull request Jan 5, 2022
commit 0266f487df7a10837c03b766206ddb9fb96224b5
Author: Edgarvital <[email protected]>
Date:   Mon Nov 15 16:29:13 2021 -0300

    Primeiro Commit - Atualização do Laravel 5 para o Laravel 8

commit c112d149c4778d2eb75f0b514fe73f653f8f9ac6
Author: Nicklas Kevin Frank <[email protected]>
Date:   Thu Nov 11 15:20:34 2021 +0100

    Added declined and declined_if validation rules (#5723)

commit bad350d1999cbaf2036db9646ddef63d77537e80
Author: Dries Vints <[email protected]>
Date:   Tue Nov 9 18:29:24 2021 +0100

    Update CHANGELOG.md

commit 399d435c4f0b41a5b6d3e14894195f9196d36bb8
Author: Taylor Otwell <[email protected]>
Date:   Tue Nov 9 09:56:23 2021 -0600

    add facade

commit 79249c920b45943ecdddb5d968d0a05d0a4bf3d6
Author: Braden Keith <[email protected]>
Date:   Fri Nov 5 10:45:57 2021 -0400

    Added Romega Software to Sponsorships (#5721)

commit ca8e5d65da361d070e637d0d82a8eb49b6a41afb
Author: Adam Mospan <[email protected]>
Date:   Fri Nov 5 15:00:12 2021 +0200

    Remove redundant tap() helper in index.php (#5719)

commit 5d22b2464c9d64443ecf60d5788d753430eff7fa
Author: Dries Vints <[email protected]>
Date:   Tue Oct 26 17:20:51 2021 +0200

    Update CHANGELOG.md

commit 15427830022447443e63991c0e9fc0e3099dbcb9
Author: Can Vural <[email protected]>
Date:   Mon Oct 25 20:16:13 2021 +0200

    PHPDoc types should be covariant with the parent type (#5714)

commit 9915831d22c150d68e562f443aca303151d70a4d
Author: Nuno Maduro <[email protected]>
Date:   Fri Oct 22 19:11:06 2021 +0100

    Guess database factory model by default (#5713)

commit 8f63479d4487915b6dc62cb2f576289ed4cd0b96
Author: Dries Vints <[email protected]>
Date:   Wed Oct 20 15:15:52 2021 +0200

    Update CHANGELOG.md

commit bf2a67c6a287d16c1926c4e6a3f4fe2e173fabaa
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 19 10:20:44 2021 -0500

    wip

commit 1980ca13eae79cd6f8a5a2f8dc018c289d26e954
Author: Nuno Maduro <[email protected]>
Date:   Tue Oct 19 14:42:24 2021 +0100

    [8.x] Logs deprecations instead of treating them as exceptions (#5711)

    * Logs deprecations instead of treating them as exceptions

    * formatting

    Co-authored-by: Taylor Otwell <[email protected]>

commit 196a27593b288f7e4d3ce30585ebd881933726b4
Author: Mohamed ELIDRISSI <[email protected]>
Date:   Mon Oct 11 14:58:39 2021 +0100

    Remove additional `}` from welcome view inline css (#5702)

commit a3b76dbeb71518f3b82d50983d039a20bf49ce8e
Author: Dries Vints <[email protected]>
Date:   Tue Oct 5 20:40:50 2021 +0200

    Update CHANGELOG.md

commit 6a68092228844b1793bbcf4f0bf7c5ba2c9bd16c
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 5 09:23:35 2021 -0500

    Revert "Uses `LazilyRefreshDatabase` by default (#5696)" (#5700)

    This reverts commit 4578193d52f148c79b16a552db65e29a65fee209.

commit 78e1d56c4285392f96fd90b445fef2faa7a8b9c7
Author: Alex Elkins <[email protected]>
Date:   Wed Sep 29 16:29:27 2021 -0400

    Update validation.php (#5699)

    modify the grammar for lte and gte validation to have a parallel structure

commit 4578193d52f148c79b16a552db65e29a65fee209
Author: Nuno Maduro <[email protected]>
Date:   Wed Sep 29 14:20:24 2021 +0100

    Uses `LazilyRefreshDatabase` by default (#5696)

commit ef9d0e4c78a097fb61218b38dd4e4c55a2278178
Author: Nuno Maduro <[email protected]>
Date:   Wed Sep 29 14:17:58 2021 +0100

    Ensures downloaded version of Collision supports PHP 8.1 (#5697)

    Co-authored-by: Taylor Otwell <[email protected]>

commit aa9cb884d2caef6d1e606ffbb61e92c90f9bd6de
Author: Dries Vints <[email protected]>
Date:   Wed Sep 29 11:51:32 2021 +0200

    Bump Mockery and PHPUnit

commit 5f7395b289f32e5e5f5ece1dddb7d4ecf7ddadcc
Author: JuanDMeGon <[email protected]>
Date:   Tue Sep 28 08:03:31 2021 -0500

    Keeping access tokens migration id consistent (#5691)

    This is just a tiny "fix," using id(); to be consistent with the other migrations already included in the framework.

commit 1e5b9989c3d789e7ed4269c88e45ed0c1c2b8ce9
Author: Surajit Basak <[email protected]>
Date:   Tue Sep 28 18:29:24 2021 +0530

    [8.x] Add failover in supported mail configurations comment section (#5692)

    Co-authored-by: Surajit Basak <[email protected]>

commit 4f8a0f35fabd8603fb756122bf820719a259ac9b
Author: Dries Vints <[email protected]>
Date:   Tue Sep 7 16:33:40 2021 +0200

    Update CHANGELOG.md

commit 0bc525860ccb093f0d452b410b2549b3e01432e7
Author: Samuel Levy <[email protected]>
Date:   Wed Sep 1 07:08:19 2021 +1000

    [8.x] Added `prohibits` validation message (#5681)

    * Added `prohibits` validation

    * Update validation.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit a36f02c4f2c5617bfe355709ca1955884b11e2d3
Author: Roy van Veldhuizen <[email protected]>
Date:   Wed Aug 25 20:07:32 2021 +0200

    Dark mode auth links contrast (#5678)

    * Improved contrast ratio of auth links in dark mode.

    * Restored home link.

commit 75a7dba9c44ce3555cc57dd1826467839fd9774f
Author: Dries Vints <[email protected]>
Date:   Tue Aug 24 17:59:48 2021 +0200

    Update CHANGELOG.md

commit 7c993468018d950d549fae77241a53cb4f68e2ad
Author: Maarten Buis <[email protected]>
Date:   Mon Aug 23 15:47:37 2021 +0200

    [8.x] Use PHPDoc comments from base class in User model (#5676)

    * Use phpdoc comments from Model class

    * Update User.php

commit 8677c94a50f15dd0b21f938c799126efa5d1cc89
Author: Gabriel Pillet <[email protected]>
Date:   Mon Aug 23 15:42:15 2021 +0200

    Fixing "Line exceeds 120 characters" in TrustProxies (#5677)

    To comply with PSR-2

commit 52de5d84f6c309e93910e0d250b8c42fd656931b
Author: Taylor Otwell <[email protected]>
Date:   Fri Aug 20 07:59:36 2021 -0500

    wip

commit c512ba2b160d1e87205dd45b60d8c0cfab230025
Author: Dries Vints <[email protected]>
Date:   Thu Aug 19 16:03:02 2021 +0200

    Update app.php (#5674)

commit 3399464a7452ac8067cef8fb224b2413e8991a4b
Author: Dwight Watson <[email protected]>
Date:   Wed Aug 18 23:14:34 2021 +1000

    Add failover driver to default mail config file (#5672)

    * Add failover driver to default mail config file

    * Remove empty spaces

commit b55e3fbb14ab8806057f451fcbfeec8fca625793
Author: Dries Vints <[email protected]>
Date:   Tue Aug 17 17:56:01 2021 +0200

    Update CHANGELOG.md

commit 6e10e9653f5f2cd3b8bd6b9fe69df2dc002eede2
Author: Pradeep Kumar <[email protected]>
Date:   Tue Aug 17 18:40:33 2021 +0530

    Add WebReinvent as a Sponsor (#5668)

commit a199c3bcea13efb32cbd5755ab9588e8311bd19c
Author: Dries Vints <[email protected]>
Date:   Tue Aug 17 10:22:10 2021 +0200

    Update .styleci.yml

commit 226d1bfc3c774e24a79e68e9f1264b5ca359551f
Author: Taylor Otwell <[email protected]>
Date:   Wed Aug 11 13:44:34 2021 -0500

    [8.x] Sanctum (#5663)

    * initial sanctum poc

    * add files

    * remove token

commit 236b31872d193eaec8c5e00813e8e88dbab6dca3
Author: Dries Vints <[email protected]>
Date:   Tue Aug 10 19:27:09 2021 +0200

    Update CHANGELOG.md

commit b6f4ee7661d31ceab2f517a3273aaecfd8465e17
Author: Dries Vints <[email protected]>
Date:   Tue Aug 10 15:41:29 2021 +0200

    Use new TrustProxies middleware (#5662)

commit 59f33209d5afc2f9f1c6c3c38280ae9eb5b15aed
Merge: e5962266 ecf460a8
Author: Graham Campbell <[email protected]>
Date:   Sun Aug 8 20:15:22 2021 +0100

    Merge branch '6.x' into 8.x

commit e5962266d79ab4aa3b7e49d1d5cddb7f85c057e6
Author: Cristiano Fromagio <[email protected]>
Date:   Thu Aug 5 10:45:48 2021 -0300

    [8.x] Add accepted_if validation rule (#5658)

    * Add accepted_if validation rule

    * Update validation.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit 82b5135652f3172c6d4febf1a4da967a49345a79
Author: Dries Vints <[email protected]>
Date:   Tue Aug 3 20:12:15 2021 +0200

    Update CHANGELOG.md

commit d286a15b093d3b1c85c5cfe22e8b0bfb54f7a111
Author: Igor Finagin <[email protected]>
Date:   Thu Jul 29 16:04:43 2021 +0300

    [8.x] Unified asset publishing (#5654)

    * [8.x] Unified asset publishing

    * Update composer.json

    Co-authored-by: Taylor Otwell <[email protected]>

commit 54c0b5bc5268b4b3b2265b2dd9b52b80627cab0d
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 28 09:34:27 2021 -0500

    wip

commit 8e5510458e1a4c0bf4b78024d9b0cf56102c8207
Author: Dries Vints <[email protected]>
Date:   Tue Jul 13 16:12:18 2021 +0200

    Update CHANGELOG.md

commit c636fd0f678008caf30683833b740fb6f31d9de6
Author: Claas Augner <[email protected]>
Date:   Sat Jul 10 17:23:22 2021 +0200

    add RateLimiter facade alias (#5642)

commit 1e4312f20755302bb4d275d9385968e9b6e63eab
Author: Dries Vints <[email protected]>
Date:   Tue Jul 6 18:47:19 2021 +0200

    Update CHANGELOG.md

commit 866589128430c55385cb13ddae0061c628245be2
Author: Josh Salway <[email protected]>
Date:   Thu Jul 1 23:38:06 2021 +1000

    Update validation.php (#5636)

commit c5f6f6187c24e160309df372b98d20380b786784
Author: Josh Salway <[email protected]>
Date:   Thu Jul 1 23:37:19 2021 +1000

    Update validation.php (#5637)

commit c0363f626c1193aa5e1263dbb272784eeba2e554
Author: Igor Finagin <[email protected]>
Date:   Tue Jun 22 16:17:05 2021 +0300

    Fix editorconfig for laravel/sail's docker-compose (#5632)

    https://github.com/laravel/sail/pull/165#issuecomment-865190799

commit 99d5ca2845a7f1d24a28a6c1e756f1ede8641f96
Author: Dries Vints <[email protected]>
Date:   Tue Jun 15 17:48:56 2021 +0200

    Update CHANGELOG.md

commit c1587b52c98727f007340417458c5da42d5fbbdc
Author: netpok <[email protected]>
Date:   Sun Jun 13 17:46:57 2021 +0200

    Add translation for current_password rule (#5628)

commit 0296bb63e1d465bcfff1f84f00313aeb26a2c84b
Author: Dries Vints <[email protected]>
Date:   Tue Jun 1 17:49:26 2021 +0200

    Update CHANGELOG.md

commit 131a10260e73e83e6b1cd63788b8f6584dd3e98a
Author: Michael de Oliveira Ferreira <[email protected]>
Date:   Mon May 24 10:19:41 2021 -0300

    add .idea and .vscode to gitignore (#5615)

    Add folders to gitignore. The same exclusions exist in the laravel / framework gitignore.

commit c5d38d469a447d6831c3cf56d193be7941d6586f
Author: Taylor Otwell <[email protected]>
Date:   Tue May 18 17:01:26 2021 -0500

    update skeleton for filesystem tweaks to make sail usage easier

commit afa06fac2aa9a83ad843b9968a21bb013f015704
Author: Dries Vints <[email protected]>
Date:   Tue May 18 17:37:20 2021 +0200

    Update CHANGELOG.md

commit d3efbaab58945ee97c4719283b04632fe474c0e7
Author: Hiren Keraliya <[email protected]>
Date:   Mon May 17 18:45:26 2021 +0530

    [8.x] Fixed grammar mistake (#5611)

    * Grammar mistakes

    * Update session.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit 637c85d624bf19355025b68aaa90e6cadf8a2881
Author: Taylor Otwell <[email protected]>
Date:   Fri May 14 10:09:46 2021 -0500

    wip

commit 3131f789ae05bb727e8f8b65981f6957391a5e3d
Author: Seyed Morteza Ebadi <[email protected]>
Date:   Fri May 14 19:39:09 2021 +0430

    Add Octane cache store (#5610)

commit b1b28a6bb120a3d1bb3786ca47f66a95bcb292aa
Author: Dries Vints <[email protected]>
Date:   Tue May 11 22:49:31 2021 +0200

    Update CHANGELOG.md

commit ecf460a874e5943c1063ef9585bc7491ead15b0a
Author: Dries Vints <[email protected]>
Date:   Tue May 11 22:47:22 2021 +0200

    Update CHANGELOG.md

commit ca7f3866666d1ec724a4c72389d8f096201d788a
Author: Umar <[email protected]>
Date:   Fri Apr 30 13:45:35 2021 +0100

    [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 <[email protected]>

commit 5c137aae41315fea6b9201d23ddfef2502d3feda
Author: netpok <[email protected]>
Date:   Thu Apr 29 14:55:56 2021 +0200

    Bump framework version (#5602)

    to include SQL server security fix for GHSA-4mg9-vhxq-vm7j

commit 5bd72e78058f5b12977ce0917a3e55bdb9f3b233
Author: netpok <[email protected]>
Date:   Thu Apr 29 14:55:46 2021 +0200

    Bump framework version (#5601)

    to include SQL server security fix for GHSA-4mg9-vhxq-vm7j

commit a6ffdbdf416d60c38443725807a260a84dca5045
Author: Dries Vints <[email protected]>
Date:   Tue Apr 20 18:13:08 2021 +0200

    Update CHANGELOG.md

commit e109ac9022888ed86661ab57b7724e4bf1cf9a72
Author: Roger Vilà <[email protected]>
Date:   Fri Apr 16 15:13:56 2021 +0200

    Update .gitignore (#5593)

commit 0e8e9a0727afce37d6954a9763a86dde82eb99ee
Author: JuanDMeGon <[email protected]>
Date:   Tue Apr 13 07:28:01 2021 -0500

    [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.

commit 54741275481a44be350758d6556c32696844b1a8
Author: Taylor Otwell <[email protected]>
Date:   Thu Apr 8 13:45:57 2021 -0500

    Update README.md

commit 5808129a1f702f973c7c31203d16db2066bd9030
Author: Dries Vints <[email protected]>
Date:   Fri Mar 26 15:47:26 2021 +0100

    Rename test methods (#5574)

commit 6bc0b1cfcbc35d89b3e4ec31d83d7b409f9bf595
Author: Dries Vints <[email protected]>
Date:   Tue Mar 23 18:25:11 2021 +0100

    Update CHANGELOG.md

commit f5cac881c98df3a4b81588f97bb87a7dd062e725
Author: Dries Vints <[email protected]>
Date:   Sun Mar 21 14:38:50 2021 +0100

    Re-order composer.json (#5570)

commit e464182760dfae06f68347f3f56ec4baec6e0c60
Author: Philo Hermans <[email protected]>
Date:   Fri Mar 19 15:53:34 2021 +0100

    Add prohibited validation rule (#5569)

commit 57ddc0ebbb1cdc778e301016b643769d1f96e2e1
Author: Dries Vints <[email protected]>
Date:   Tue Mar 16 17:26:11 2021 +0100

    Update CHANGELOG.md

commit 9c5e6f9757dae6091b6239df6dcf4130ec5c3c46
Author: Taylor Otwell <[email protected]>
Date:   Mon Mar 15 08:41:28 2021 -0500

    update wording

commit e95a675e43aabc5c1c390302ec5c4f8b3fdf243d
Author: Matthew Setter <[email protected]>
Date:   Sun Mar 14 21:00:54 2021 +0100

    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.

commit 471195d743de883af0c239c46553da89179824b5
Author: Dries Vints <[email protected]>
Date:   Fri Mar 12 14:55:27 2021 +0100

    Fix footer on mobile (#5561)

commit 177e05beec2d1e35b48baad59441050644eecd2c
Author: Jesper Noordsij <[email protected]>
Date:   Wed Mar 10 15:52:57 2021 +0100

    Add log level config value to stderr channel (#5558)

commit 89b15441a92aa615de9198c54b5d973aa6b374e5
Author: Tim MacDonald <[email protected]>
Date:   Thu Mar 11 01:13:17 2021 +1100

    add date facade alias (#5556)

commit 3a62cfb4fe903b8a36bdbd56d2b4013ddb8d62d2
Author: Jess Archer <[email protected]>
Date:   Thu Mar 11 00:12:57 2021 +1000

    Add language for prohibited_if and prohibited_unless validation rules (#5557)

commit a315767e093ca2ba19ca7c60b02aa89467d81628
Author: Dries Vints <[email protected]>
Date:   Tue Mar 9 20:09:48 2021 +0100

    Update CHANGELOG.md

commit 5cfd28df2d550c4d63417ba54f31c96887cd345b
Author: Brandon Surowiec <[email protected]>
Date:   Tue Mar 9 09:51:56 2021 -0500

    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.

commit c9883355026d96703c27d1379e4c2cc27015eeb8
Author: Tim MacDonald <[email protected]>
Date:   Wed Mar 10 00:23:56 2021 +1100

    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.',
    ],
    ```

commit 2b8f3aa506f1f2463dfdb43b063d17674b86c8cd
Author: Karel Faille <[email protected]>
Date:   Tue Mar 2 20:35:52 2021 +0100

    Use same default queue name for all drivers (#5549)

commit 20455c6f5fdee67e445208b0fcc4a1a92d80ce24
Author: Dries Vints <[email protected]>
Date:   Tue Mar 2 17:36:09 2021 +0100

    Update CHANGELOG.md

commit 03be0afb442b96ebfb0091cc9c3a44a7ad907f4b
Author: Rodrigo Pedra Brum <[email protected]>
Date:   Mon Mar 1 10:38:37 2021 -0300

    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.

commit 8c7ccd3fe82b3723880e5f70d8aa02e30ac03f82
Author: Jonny Nott <[email protected]>
Date:   Fri Feb 26 17:17:30 2021 +0000

    target 1.16.15 of facade/ignition for Laravel 6.x (#5544)

    fixes CVE-2021-3129 vulnerability (Laravel 6)

commit 16f531e6460e1276bb02faaf2788b9c754af284d
Author: Martin Eiber <[email protected]>
Date:   Fri Feb 26 14:19:45 2021 +0100

    [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 <[email protected]>

commit 06d967a4c72be2ec71a0efd89cc2a3c113cf6da5
Author: Dries Vints <[email protected]>
Date:   Tue Feb 23 21:43:02 2021 +0100

    Update CHANGELOG.md

commit f0de9fd9967d4e1b4427d8458bf8983bc2cde201
Author: Hugo Clarke-Wing <[email protected]>
Date:   Fri Feb 19 16:09:51 2021 +0100

    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 <[email protected]>

commit ebf2646c347b941e63709f7e69ab79416f6d5124
Author: Taylor Otwell <[email protected]>
Date:   Tue Feb 16 10:58:28 2021 -0600

    wip

commit 689c0e5a230a27d421903439e0396a7339973759
Author: Dries Vints <[email protected]>
Date:   Tue Feb 16 17:57:31 2021 +0100

    Update CHANGELOG.md

commit 698a61d02528336936774385526317d1f4ce44ec
Merge: 9a56a60c 22626b57
Author: Taylor Otwell <[email protected]>
Date:   Tue Feb 16 08:02:15 2021 -0600

    Merge branch '8.x' of github.com:laravel/laravel into 8.x

commit 9a56a60cc9e3785683e256d511ee1fb533025a0a
Author: Taylor Otwell <[email protected]>
Date:   Tue Feb 16 08:02:06 2021 -0600

    update wording

commit 22626b5701cc7557d4bd45a6af5730027fc4a061
Author: Taylor Otwell <[email protected]>
Date:   Mon Feb 15 15:06:50 2021 -0600

    Revert "Change "Login" text to "Log in" (#5536)" (#5537)

    This reverts commit cbddb27c7e63eb1942efcdd95c8bd5bdf5be940f.

commit cbddb27c7e63eb1942efcdd95c8bd5bdf5be940f
Author: Mark Jaquith <[email protected]>
Date:   Mon Feb 15 16:06:24 2021 -0500

    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

commit eaf7289523b0730b3d0c5a7146ab0f078019a987
Author: Jared Lewis <[email protected]>
Date:   Tue Feb 9 15:52:23 2021 -0500

    Add unverified state to UserFactory (#5533)

commit 6d082c81e5bf226dfa6d1dc030e69a225349f535
Author: Khaled <[email protected]>
Date:   Sat Feb 6 17:35:22 2021 -0700

    add "ably" in comment as a broadcast connection (#5531)

    'ably' was added in the connections array, but the comment was not updated to reflect this fact.

commit c1b56831dfb96cfc1e87d40f44f7b2cca07c351c
Author: Govar Jabar <[email protected]>
Date:   Fri Jan 29 16:57:50 2021 +0300

    update web.config (#5528)

commit a96fe9320704cbf18856d1009b8cdeffca8a636d
Author: Dries Vints <[email protected]>
Date:   Tue Jan 19 16:20:53 2021 +0100

    Update CHANGELOG.md

commit b580fc1ef2b286c2f9e156755431abe45a1e61c7
Author: Dries Vints <[email protected]>
Date:   Fri Jan 15 17:24:56 2021 +0100

    Delete docker-compose.yml (#5522)

commit 21c0aed802a69838ba848d93228e725067a2e205
Author: Kacper Ziubryniewicz <[email protected]>
Date:   Thu Jan 14 23:27:55 2021 +0100

    Add a missing dot in translations (#5520)

commit 5dd08043a3a5bb3eeca0f070f0e7cb309e06f2be
Author: Taylor Otwell <[email protected]>
Date:   Tue Jan 12 14:02:00 2021 -0600

    wip

commit ea7de4f5a91c14c23bc038bc3a3ce65633f20701
Author: Gemma Black <[email protected]>
Date:   Tue Jan 12 18:51:19 2021 +0000

    Hide .env.bak as well as .env.backup in .gitignore (#5515)

commit cdd79ce5cf99be1963295c2d84da74e03afbeb95
Author: Dries Vints <[email protected]>
Date:   Tue Jan 12 18:39:43 2021 +0100

    Update CHANGELOG.md

commit f97e5510712e1fd1148c02cc435c97a281660fd1
Author: Dries Vints <[email protected]>
Date:   Tue Jan 12 18:18:35 2021 +0100

    Update TrustProxies.php (#5514)

commit f9f39ee7ac5d6abfe7c717fd331055daa24255f2
Author: Dries Vints <[email protected]>
Date:   Tue Jan 5 16:48:16 2021 +0100

    Update CHANGELOG.md

commit 4de728e78c91b496ce5de09983a56e229aa0ade1
Author: RobTables <[email protected]>
Date:   Tue Jan 5 01:02:11 2021 -0700

    Update to package.json - Axios Version

    Security Vulnerability: https://www.npmjs.com/advisories/1594

commit eeb91d4546ef7f86bcbfdb9b0772ee02c4df8630
Author: Jeffrey Way <[email protected]>
Date:   Mon Jan 4 09:44:16 2021 -0500

    Upgrade to Mix v6 (#5505)

    * Upgrade to Mix v6

    * Remove cross-env

commit 947df2ac7457e9cf3551a369bb0e539d635ebb6e
Author: Ustych Maksym <[email protected]>
Date:   Fri Jan 1 20:35:59 2021 +0200

    Update sail package in the composer.json (#5507)

commit 454f0e1abeeb22cb4af317b837777ad7f169e497
Author: Dries Vints <[email protected]>
Date:   Tue Dec 22 18:07:44 2020 +0100

    Update CHANGELOG.md

commit e8788a768899ff2a2ef1fe78e24b46e6e10175dc
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 16 15:51:18 2020 -0600

    update cache

commit bc339f712389cf536ad7e340453f35d1dd865777
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 16 08:44:41 2020 -0600

    add lock_connection

commit 0059fb91be7725c47ae2a6aa10d4f34ee5340c89
Author: Dries Vints <[email protected]>
Date:   Tue Dec 15 14:17:57 2020 +0100

    Update CHANGELOG.md

commit 3b2ed46e65c603ddc682753f1a9bb5472c4e12a8
Author: Taylor Otwell <[email protected]>
Date:   Sat Dec 12 08:47:22 2020 -0600

    update variables

commit ddb26fbc504cd64fb1b89511773aa8d03c758c6d
Author: Taylor Otwell <[email protected]>
Date:   Thu Dec 10 09:26:21 2020 -0600

    update env vars

commit 03ecf00f7a4e14c049e41bb111430877313449b9
Author: Attila Szeremi <[email protected]>
Date:   Thu Dec 10 14:32:49 2020 +0100

    Gitignore docker-compose.override.yml (#5487)

    Docker allows for you to override parts of `docker-compose.yml` locally with the help of a `docker-compose.override.yml` file: https://docs.docker.com/compose/extends/#understanding-multiple-compose-files

    I propose to have this file ignored by default for new projects, similarly to how `.env` is ignored to be able to override default configuration (locally).

    Example use case: Someone might want to use Laravel Sail, but would have multiple Laravel projects running in MySQL and would like to run a single MySQL server for each project and have a way to be able to override docker-compose to make that happen. Or maybe just in general they want to add a new service that they want to run only for themselves, and not for colleagues.

commit b7cde8b495e183f386da63ff7792e0dea9cfcf56
Author: Taylor Otwell <[email protected]>
Date:   Thu Dec 10 07:14:14 2020 -0600

    comment trust hosts

commit d80ff4d576eb4f47369e1f8481d3da8a9479347b
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 9 08:32:27 2020 -0600

    add sponsor

commit 17668beabe4cb489ad07abb8af0a9da01860601e
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 8 09:51:48 2020 -0600

    add sail

commit 34368a4fab61839c106efb1eea087cc270639619
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 8 09:45:05 2020 -0600

    revert change

commit bcd87e80ac7fa6a5daf0e549059ad7cb0b41ce75
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 8 09:38:54 2020 -0600

    add sail file

commit ad8210f3bb9e64c2002eeaaf3c5a07117369529d
Merge: a8957489 0717bb02
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 8 09:06:00 2020 -0600

    Merge branch '8.x' of github.com:laravel/laravel into 8.x

commit a895748980b3e055ffcb68b6bc1c2e5fad6ecb08
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 8 09:04:09 2020 -0600

    update env file for sail

commit 0717bb0291a51ab63dd220ce4db8b7fa82e23787
Author: Dries Vints <[email protected]>
Date:   Tue Dec 1 16:21:29 2020 +0100

    Update CHANGELOG.md

commit f6f772ba5490de48d8a79747b39540afe61eed24
Author: Daniel Coulbourne <[email protected]>
Date:   Thu Nov 26 09:38:56 2020 -0500

    Uncomment TrustHosts middleware to enable it by default. (#5477)

commit 82213fbf40fc4ec687781d0b93ff60a7de536913
Author: Taylor Otwell <[email protected]>
Date:   Wed Nov 25 10:24:16 2020 -0600

    remove cloud option

commit d218676d4cc7824f4e6c4f52d4afd893156431c9
Merge: 612d1660 86b1b3f2
Author: Taylor Otwell <[email protected]>
Date:   Tue Nov 24 16:10:45 2020 -0600

    Merge branch '8.x' of github.com:laravel/laravel into 8.x

commit 612d16600419265566d01a19c852ddb13b5e9f4b
Author: Taylor Otwell <[email protected]>
Date:   Tue Nov 24 16:10:36 2020 -0600

    comment out alias by default

commit 86b1b3f20a2fd120549f25bf7cf75bf467f5167b
Author: Dries Vints <[email protected]>
Date:   Tue Nov 24 18:18:56 2020 +0100

    Update CHANGELOG.md

commit 3c814aa8e2c842efacc3e2407abf1b58b3e92bce
Author: Paras Malhotra <[email protected]>
Date:   Wed Nov 18 19:15:08 2020 +0530

    [8.x] Add missing null cache driver in config/cache.php (#5472)

commit 5182e9c6de805e025fb4cfad63c210c3197002ab
Author: Taylor Otwell <[email protected]>
Date:   Tue Nov 17 17:07:32 2020 -0600

    add ably entry

commit e8498122a22745cf13e2d293e2160d914c04abbd
Author: Dries Vints <[email protected]>
Date:   Tue Nov 17 17:40:17 2020 +0100

    Update CHANGELOG.md

commit 9957559dc507a306ef42851abdb950f3c5c7af72
Author: A-Maged <[email protected]>
Date:   Tue Nov 17 16:57:20 2020 +0200

    closed @auth correctly (#5471)

commit 4931af14006610bf8fd1f860cea1117c68133e94
Author: Taylor Otwell <[email protected]>
Date:   Sat Nov 14 09:17:41 2020 -0600

    add stub handler

commit 3adc2196f79fa4d8470d41d5a7584f2b0432a6fc
Author: Iman <[email protected]>
Date:   Thu Nov 12 17:25:54 2020 +0330

    Modify the cache.php docblocks (#5468)

    In new versions of laravel we do not directly specify the "cache driver" anymore but rather a "cache store", so it does not make sense to mention the drivers up there since laravel supports any arbitrary values defined below it by the user.

commit 1ad5a8d6e0177d7998fa4ee19a43d135a16d2d42
Merge: aa6d3660 3d7a5075
Author: Taylor Otwell <[email protected]>
Date:   Tue Nov 10 14:19:01 2020 -0600

    Merge branch '8.x' of github.com:laravel/laravel into 8.x

commit aa6d3660114c93e537a52e0ba3c03071a7f3e67f
Author: Taylor Otwell <[email protected]>
Date:   Tue Nov 10 14:18:52 2020 -0600

    add sanctum cookie endpoint to default cors paths

commit 3d7a5075e7db93a7df89c983c95d9016f448d3f9
Author: Dries Vints <[email protected]>
Date:   Tue Nov 10 15:57:51 2020 +0100

    Update CHANGELOG.md

commit b54ef297b3c723c8438596c6e6afef93a7458b98
Author: Taylor Otwell <[email protected]>
Date:   Mon Nov 9 14:36:40 2020 -0600

    add auth line

commit d9e85605cbc491e710d9a2df1939ba2db773b404
Author: Dries Vints <[email protected]>
Date:   Tue Nov 3 20:02:19 2020 +0100

    Update CHANGELOG.md

commit efdde1e928d20dc8b2b511ef12f37d8d01249596
Merge: 3e9fd591 3923e7f7
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:21:07 2020 +0100

    Merge branch '7.x'

    # Conflicts:
    #	CHANGELOG.md

commit 3923e7f7c40368a5e78c1a33610191be8ad91e3b
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:17:45 2020 +0100

    Update CHANGELOG.md

commit ff355973475624d9dc9ed5fd157a0ba0bef84710
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:16:23 2020 +0100

    Lower ignition constraint

commit 3e9fd59156d3c4ea5a4f78b03c3a0a892d80cb20
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 16:07:53 2020 +0100

    Update CHANGELOG.md

commit 17778838a4345debc57e5bd46a2447b42e7a6c3b
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 16:06:24 2020 +0100

    Bump mockery

commit 8b947ba34ca5f21b82e941389466cc6d83c7cef5
Merge: fc79b8bb 509708c7
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 16:05:55 2020 +0100

    Merge branch '7.x'

    # Conflicts:
    #	CHANGELOG.md
    #	composer.json

commit 509708c7ee04dde4214edcf60fe3752f0d54d91d
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 16:03:50 2020 +0100

    Update CHANGELOG.md

commit 8ae2d8ec1e4b86c77e9352f3b32e79ebfa62ed82
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:53:46 2020 +0100

    Bump ignition and collision

commit 3c4eac92baaf98b7d42d7dcf713bbdc017a5c6ab
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:48:42 2020 +0100

    Bump Guzzle

commit 45fa128adbc2c36870f36bc9396a850508fb8c5b
Merge: 9af70cff d85be866
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:43:30 2020 +0100

    Merge branch '6.x' into 7.x

    # Conflicts:
    #	CHANGELOG.md
    #	composer.json

commit d85be8669880cce457eb5827afbedb6ad30bb629
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:40:46 2020 +0100

    Update CHANGELOG.md

commit 31fbf612efd8e6291453c14d1d8a5377a6870792
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:39:45 2020 +0100

    Bump fideloper/proxy

commit eb34def26a617cc48813d137dccab4994b555d61
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:38:43 2020 +0100

    Bump tinker

commit d906d7b86006d65b3ab74c890d2a23b24a7d7a18
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:27:02 2020 +0100

    Update phpunit constraints

commit f363bc30e18b60612ef77a40a4f169c633fd04ac
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 14:59:24 2020 +0100

    Bump ignition

commit fc79b8bb1130309278b462ea01cb6c067e3befb1
Merge: 4966dd9b 9af70cff
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:01:55 2020 +0100

    Merge branch '7.x'

    # Conflicts:
    #	composer.json

commit 9af70cffa4bdc5d5e4d7b96e9fa7fb98969b12c9
Merge: 482d68a1 27338d9a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:01:22 2020 +0100

    Merge branch '6.x' into 7.x

    # Conflicts:
    #	composer.json

commit 27338d9a99b63bb180c6c2ba6a9585ab1d10bf78
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:00:39 2020 +0100

    Allow PHPUnit 9

commit 4966dd9baf07cec4f7541c60310ace2b53ef41c9
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:33:50 2020 +0100

    Update CHANGELOG.md

commit 86d4ec095f1681df736d53206780d79f5857907c
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:33:24 2020 +0100

    Update minimum Laravel version

commit 24604418182f5d05e2142f17b4fec97e5fc2c053
Merge: 5396be6e 482d68a1
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:32:54 2020 +0100

    Merge branch '7.x'

    # Conflicts:
    #	CHANGELOG.md
    #	composer.json

commit 482d68a182bdd629e5d4d3c19d5d7d7623dd074a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:26:10 2020 +0100

    Update CHANGELOG.md

commit 02ca853809a97f372a3c6dc535c566efff9f6571
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:59 2020 +0100

    Nump minimum Laravel version

commit 056a9e8f903860a066190b6a45b56436d6c64531
Merge: 9b21125e aef279a6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:32 2020 +0100

    Merge branch '6.x' into 7.x

    # Conflicts:
    #	CHANGELOG.md
    #	composer.json

commit aef279a6cf04b47ac7aa279e37240a683bdcf5e6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:17:39 2020 +0100

    Update CHANGELOG.md

commit b8d582581a1067e3b1715cce477b22455acc3d36
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:16:58 2020 +0100

    Update minimum Laravel version

commit a4d45e6940ec6565ac1ea55cad117082876396ad
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:15:43 2020 +0100

    Update CHANGELOG.md

commit 5396be6ef26aebe99c1c5ac6ec944c349d13f371
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 27 15:15:00 2020 -0500

    update welcome view

commit b3220963795ec4c78051bcae3f1ad24add2c6fe7
Merge: 8bfecacf 9b21125e
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:18:44 2020 +0100

    Merge branch '7.x'

    # Conflicts:
    #	composer.json

commit 9b21125e31232d29231c60067c6df42e9554715b
Merge: 533f130f 4c25cb95
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:18:17 2020 +0100

    Merge branch '6.x' into 7.x

    # Conflicts:
    #	composer.json

commit 4c25cb953a0bbd4812bf92af71a13920998def1e
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:17:46 2020 +0100

    Allow for PHP 8

commit 8bfecacf8c58ac114cc95fd9a0f398a5eeb0af21
Merge: bec982b0 533f130f
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 15:02:56 2020 +0100

    Merge branch '7.x'

    # Conflicts:
    #	composer.json
    #	resources/views/welcome.blade.php

commit 533f130f1429986313966c39511690e23cc42431
Merge: 4eeb29ee 3d46fc35
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 15:01:36 2020 +0100

    Merge branch '6.x' into 7.x

commit 3d46fc355d70db2462815b62139f8b0a0f3a16c3
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:54:45 2020 +0100

    Update Faker (#5461)

commit 22fa816fdf80a0bd821a4249358dd921ed76fb1a
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:11:46 2020 +0100

    Delete removed webpack flag (#5460)

commit bec982b0a3962c8a3e1f665e987360bb8c056298
Author: Taylor Otwell <[email protected]>
Date:   Thu Oct 22 16:01:59 2020 -0500

    update by

commit 453d7286f3918e067b7a06707be1f22ef59815b8
Author: Viktor Szépe <[email protected]>
Date:   Thu Oct 22 22:41:03 2020 +0200

    Revert per user API rate limit

    It was changed from per user to per application in ced3e50bca279f5a499a6d513fcdfd2a020c28ce

commit aeec665b75258eea6cc03df1945e60f066183305
Author: Dries Vints <[email protected]>
Date:   Thu Oct 22 14:31:01 2020 +0200

    Update composer.json (#5452)

commit d82d7505a17355dfe09c6722cebd6274f11585eb
Author: Dries Vints <[email protected]>
Date:   Tue Oct 20 20:34:02 2020 +0200

    Update CHANGELOG.md

commit 8d3ca07c4cff6d36593625ee4b34e19ce2dba15b
Author: Tim MacDonald <[email protected]>
Date:   Sat Oct 17 00:25:48 2020 +1100

    add 'multiple_of' translation (#5449)

commit 6bfe68365d0ab1301dfae87867814048440d6a78
Author: Ali Shaikh <[email protected]>
Date:   Fri Oct 9 17:40:20 2020 +0500

    [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 <[email protected]>

commit c66546e75fcbf208d2884b5ac7a3a858137753a3
Author: Dries Vints <[email protected]>
Date:   Tue Oct 6 18:11:27 2020 +0200

    Update CHANGELOG.md

commit f5161080d4a62e5b88909d8f8e5b407c76750b2b
Author: Dries Vints <[email protected]>
Date:   Tue Oct 6 18:07:58 2020 +0200

    Update CHANGELOG.md

commit f12fd984142093287d4c1218b9f4581d977ddb52
Author: Norgul <[email protected]>
Date:   Mon Oct 5 22:11:23 2020 +0200

    Update logging.php (#5442)

    Added `LOG_LEVEL` env variable

commit 7b958b5d15d2cacb8cc5dcc80d1171c51622e5e9
Author: Pataar <[email protected]>
Date:   Mon Oct 5 14:45:05 2020 +0200

    [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`

commit 38bc9119eb369eed4d32adbc4132788177712b15
Author: Andrew Brown <[email protected]>
Date:   Fri Oct 2 08:31:13 2020 -0500

    type hint the middleware Request (#5438)

    stemming from https://github.com/laravel/framework/pull/34224

commit a6ca5778391b150102637459ac3b2a42d78d495b
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 22 14:17:27 2020 -0500

    add comment

commit d3353c9e9a06a044ec573cbf8b73a416e2f2a2ba
Author: Ricardo Gobbo de Souza <[email protected]>
Date:   Tue Sep 22 11:23:40 2020 -0300

    Fix route when uncomment $namespace (#5424)

commit 6a9d5e0da17936fb2e599c95b5567fc2e74419ae
Merge: f1a51f7c 4eeb29ee
Author: Dries Vints <[email protected]>
Date:   Mon Sep 21 18:12:33 2020 +0200

    Merge branch '7.x' into master

    # Conflicts:
    #	CHANGELOG.md

commit 4eeb29ee12e980969e8d9f2a1cd465e514a0f76e
Author: Dries Vints <[email protected]>
Date:   Mon Sep 21 17:59:16 2020 +0200

    Update changelog

commit f1a51f7c622783d98bf3916fc56c86755feb5426
Author: Alex Mayer <[email protected]>
Date:   Sun Sep 20 21:35:48 2020 -0400

    [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 <[email protected]>

commit 69d0c504e3ff01e0fd219e02ebac9b1c22151c2a
Author: Taylor Otwell <[email protected]>
Date:   Sun Sep 20 11:39:57 2020 -0500

    add commented code

commit c62a7c13bfa3840041ae01933d56b24e5ad2503d
Author: Wojciech Gabryś <[email protected]>
Date:   Tue Sep 15 06:35:19 2020 +0200

    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.

commit c6c41f11b8ea3065f035fbb6a6f570b7bfba0037
Author: Graham Campbell <[email protected]>
Date:   Mon Sep 14 17:16:11 2020 +0100

    Revert "Fix PHPUnit bool server consts result in null (#5409)" (#5411)

    This reverts commit 1c4af33b8f55b47ccf9be7a416a98f36cd961802.

commit 7cd15dbad654dde2ddb598a45511ff65800717ce
Author: Graham Campbell <[email protected]>
Date:   Mon Sep 14 14:18:04 2020 +0100

    Avoid deprecated StyleCI fixer name (#5410)

commit 1c4af33b8f55b47ccf9be7a416a98f36cd961802
Author: Martin Hettiger <[email protected]>
Date:   Mon Sep 14 15:04:03 2020 +0200

    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:
    https://github.com/hettiger/laravel-env-demo/commit/908d3405b84e769c12d296e98bef1ca567127254

    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…?

commit ca30159cabe05675fa268f49acdf93ef12480b01
Author: Salim Djerbouh <[email protected]>
Date:   Sun Sep 13 15:17:54 2020 +0100

    fully qualified user model in seeder (#5406)

    makes it easy to just uncomment when tinkering around

commit 292a5b26a9293d82ab5a7d0bb81bba02ea71758e
Author: Taylor Otwell <[email protected]>
Date:   Fri Sep 11 08:29:38 2020 -0500

    swap route order

commit b33852ecace72791f4bc28b8dd84c108166512bf
Author: Taylor Otwell <[email protected]>
Date:   Thu Sep 10 14:28:44 2020 -0500

    remove property

commit 9cbc3819f7b1c268447996d347a1733aa68e16d7
Author: Taylor Otwell <[email protected]>
Date:   Wed Sep 9 21:00:17 2020 -0500

    add property to route service provider

commit 94e7945517387b9bef0851a506436639e4fbbb5c
Author: Can Vural <[email protected]>
Date:   Wed Sep 9 14:20:20 2020 +0200

    Fix docblock for variadic parameter (#5401)

commit b9b282a71933e0279fea63fa0302e9a30a4c2efe
Author: Youri Wijnands <[email protected]>
Date:   Tue Sep 8 14:50:51 2020 +0200

    Use the new Google Fonts API (#5396)

    https://developers.google.com/fonts/docs/css2

commit c64061629eeb328e79d842051fa3506843c306cf
Author: Youri Wijnands <[email protected]>
Date:   Tue Sep 8 14:50:22 2020 +0200

    Use the new Google Fonts API (#5398)

    https://developers.google.com/fonts/docs/css2

commit 151e11caccc8704e49aaa7ab1e3319869a9062c4
Merge: 7895cd3a a7a40d77
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:28:32 2020 +0200

    Merge branch 'master' into develop

    # Conflicts:
    #	app/Exceptions/Handler.php

commit a7a40d77447358a57da02f202563c50344dc5a44
Merge: dc5817bb 179e52bd
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:28:00 2020 +0200

    Merge branch '6.x' into master

commit 179e52bdd719fb456ed49a2bf8e42f922a6f5da2
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:27:47 2020 +0200

    Fix logo

commit 7895cd3a5f3c0ac0e8d0c4b2197f06014dcf52d6
Author: Mark van den Broek <[email protected]>
Date:   Sat Sep 5 04:07:55 2020 +0200

    Update docblock (#5392)

commit dc5817bbf2552b48d93bde99688d56e99b7a7708
Author: Dries Vints <[email protected]>
Date:   Fri Sep 4 10:39:28 2020 +0200

    Update Handler.php

commit cfd428bfcb0d4117c9f2b1c201bceda96a906f20
Author: Taylor Otwell <[email protected]>
Date:   Fri Aug 28 10:06:23 2020 -0500

    add dontReport property

commit ced3e50bca279f5a499a6d513fcdfd2a020c28ce
Author: Taylor Otwell <[email protected]>
Date:   Thu Aug 27 13:36:32 2020 -0500

    use new rate limiting

commit 23205e270f2d599741185ca5f68cc26e0e6f367f
Author: Graham Campbell <[email protected]>
Date:   Wed Aug 26 09:41:46 2020 +0100

    Add back in ignition

commit 3a5f05ce80f09f1b02dd4b5169bbd5eb47a9df04
Merge: 48b7ba93 2c69ec98
Author: Graham Campbell <[email protected]>
Date:   Wed Aug 26 09:39:57 2020 +0100

    Merge branch 'master' into develop

commit 2c69ec987e2dca71008684fc80bbe56c55427dc3
Merge: fa43c0a3 921b14b9
Author: Graham Campbell <[email protected]>
Date:   Wed Aug 26 09:39:37 2020 +0100

    Merge branch '6.x' into master

commit 48b7ba938e71c13a697d18f2e6b4e6b0c49def06
Author: Dries Vints <[email protected]>
Date:   Tue Aug 25 15:27:25 2020 +0200

    [8.x] Bump Guzzle (#5381)

    * Bump Guzzle

    * Update composer.json

commit fd8a872b3b3c7e56886b781514fb5f27914627cf
Author: Taylor Otwell <[email protected]>
Date:   Thu Aug 20 15:32:30 2020 -0500

    update channel

commit 710d472d764983a0f8074b6b1a3c5cf57adce1e4
Author: Taylor Otwell <[email protected]>
Date:   Thu Aug 20 15:31:07 2020 -0500

    models directory

commit d6eda444a7daf19a0e27861d5e06cb43e71da497
Author: Taylor Otwell <[email protected]>
Date:   Wed Aug 19 09:32:50 2020 -0500

    update defaults

commit 57cc8990992c1bbe094d5186f5bb7737b60d6eaa
Merge: 53d14e51 fa43c0a3
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:45:48 2020 +0200

    Merge branch 'master' into develop

    # Conflicts:
    #	CHANGELOG.md
    #	composer.json

commit fa43c0a333d623a393fa33c27a1376f69ef3f301
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:44:47 2020 +0200

    Update CHANGELOG.md

commit 921b14b954d51125b8369299a6ba18d78735367d
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:16:01 2020 +0200

    Update CHANGELOG.md

commit 39a58710ba3e5aff0b3588fe748fa24e066d17b0
Merge: b3f60041 0512f006
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:08:41 2020 +0200

    Merge pull request #5370 from laravel/bump-7

    [7.x] Set framework version ^7.24

commit bbd36167158f29148095085fa81fed211ad676d2
Merge: 407b6b8b e96840e2
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:07:55 2020 +0200

    Merge pull request #5369 from laravel/bump-6

    [6.x] Set framework version ^6.18.35

commit 0512f00664445c452abbb470b9aaf4a0c7f78b26
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:29:43 2020 +0100

    Set framework version ^7.24

commit e96840e20673ed87e684b8ee814bdf02c1c8dfcc
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:28:47 2020 +0100

    Set framework version ^6.18.35

commit 53d14e51e012c79d8649198a3c1f0b8be52f1167
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 15:59:53 2020 +0100

    [8.x] PHPUnit 9.3+ style code coverage config (#5368)

    * PHPUnit 9.3+ style code coverage config

    * Bumped minimum PHPUnit

commit 5914e9ced5410eb50ebdd0e25ba28729c820cdb6
Merge: ca3b58cd b3f60041
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 11:10:26 2020 +0100

    Merge branch 'master' into develop

commit b3f600415d3d1eb35c3f0f66e40ffa32c4bc77f0
Merge: a7b70fcc 407b6b8b
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 11:09:47 2020 +0100

    Merge branch '6.x' into master

commit ca3b58cd21c21ae6c957b9b2932258eebf023ac1
Author: Taylor Otwell <[email protected]>
Date:   Sat Aug 1 09:50:05 2020 -0500

    change method

commit 407b6b8b04820a7fc0eb3143a8255abbeabb3eb9
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:52:00 2020 +0100

    Revert "Apply fixes from StyleCI (#5356)" (#5357)

    This reverts commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560.

commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:49:11 2020 +0100

    Apply fixes from StyleCI (#5356)

commit 0e7fd2beb18e6f5c0213b0f162611d5e75ce42f4
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:59:20 2020 +0200

    Fix version

commit a7b70fcc310fee9d78448e078fef9003150ee8aa
Author: Taylor Otwell <[email protected]>
Date:   Mon Jul 27 10:57:16 2020 -0500

    fix version

commit 074c3840ff6be2c562d97ec0d68a04b0699493a1
Merge: f465c511 b1277e2e
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:34:05 2020 +0200

    Merge pull request #5355 from laravel/bump

    [6.x] Bumped laravel 6 min version for new LTS users

commit b1277e2eb2e586b3cb09bbf545aa7fab0a4fd0ca
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 16:23:43 2020 +0100

    Bumped laravel 6 min version for new LTS users

commit e9e7c972661668f4a4c747e951c6e7ce8e3adf15
Author: rennokki <[email protected]>
Date:   Mon Jul 27 18:18:18 2020 +0300

    [7.x] Enforce ^7.22.1 due to security issues (#5354)

    * enforce ^7.22

    * Update composer.json

    Co-authored-by: Dries Vints <[email protected]>

commit 791c87a80d1c5eebd75e1bf499f86899d6b2b26f
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:11:30 2020 -0500

    Update README.md

commit 232995cac214bf1fdff4278aa7904d65df3ae899
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:07:41 2020 -0500

    Update README.md

commit 2053375853dd904c6ff31307b6f83c5a0b636555
Merge: db473189 6d9296c7
Author: Dries Vints <[email protected]>
Date:   Mon Jul 20 16:17:05 2020 +0200

    Merge branch 'master' into develop

commit f465c511c009235fc7bfa06bfcb41294e60e9b42
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 6d9296c71edc3def466d3cab501b7d1f9b6717d2
Merge: 311c3f82 5f462521
Author: Dries Vints <[email protected]>
Date:   Mon Jul 20 16:15:08 2020 +0200

    Merge pull request #5346 from ahinkle/patch-1

    Bump lodash from 4.17.13 to 4.17.19

commit 5f46252168977e8850b555da057406a835a9b1f9
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit db473189255913a92efc67e72354e9546327b216
Author: Taylor Otwell <[email protected]>
Date:   Fri Jul 17 08:07:12 2020 -0500

    update gitignores

commit 3b418421e783c2a68e1c0927c30c1552a24875db
Author: Taylor Otwell <[email protected]>
Date:   Fri Jul 17 08:03:16 2020 -0500

    change path

commit 47e2781f683471aedeca4c98dbcdd410f20c6c7c
Author: Taylor Otwell <[email protected]>
Date:   Thu Jul 16 14:30:22 2020 -0500

    update for maintenance mode

commit 395ede7a2db97e747022682150c3b581207e8a5f
Author: Taylor Otwell <[email protected]>
Date:   Thu Jul 16 14:27:24 2020 -0500

    add gitignore

commit 228aa230e6565e3d77a4655decf8f33f618464c6
Author: Taylor Otwell <[email protected]>
Date:   Thu Jul 16 14:27:19 2020 -0500

    update for maintenance mode

commit e471dd1cf09907b2d325f5ef4a9aefc4b1f2e5c5
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 14 15:57:11 2020 -0500

    rename class

commit a14a1208adc2e94e85d1afb0c36c5250a5668b4d
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 14 15:48:22 2020 -0500

    remove alias that isnt needed

commit e265156bc69d2752a091526e1308e1a26cf5bd4e
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 14 15:12:37 2020 -0500

    simplify line

commit 6f1f40bc940fac0fcfe66420bee4962c4e6a98c3
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 14 14:39:13 2020 -0500

    update link

commit a9623d359691d17bedc03280282b74763f970290
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 14 14:10:07 2020 -0500

    update wording

commit ce3e006d61299bdd3bd2b99ec5489577e55a296a
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 14 14:07:25 2020 -0500

    remove unneeded property. can use ignore method

commit a9abc85301ab56a89f5c7256dfbc30f8dd0abafd
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 14 14:00:47 2020 -0500

    consolidate to a single method

commit 880cc1d3d8048adf9eeca677e675eef3d5da922f
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 14 10:10:03 2020 -0500

    simplify default exception handler

commit adb7eacf9e030e02212f01419e332b3fe8f9be7d
Author: Muah <[email protected]>
Date:   Mon Jun 29 17:21:36 2020 +0200

    [8.x] Multiple guards for RedirectIfAuthenticated (#5329)

    * Update RedirectIfAuthenticated.php

    allow the middleware to have the same behavior as https://laravel.com/api/5.8/Illuminate/Auth/Middleware/Authenticate.html#method_authenticate

    so now the guest middleware have the same footprint as auth ex.`guest:web,admin` instead of creating multiple lines to support different guards.

    * Update RedirectIfAuthenticated.php

commit 6ca2ecacea0f6f0ff8a4c2f0d39c1ddda4c17f3e
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 24 13:13:32 2020 -0500

    remove unneeded block

commit c58b40b9bc8288cda1f551dbe0a4d6547b37b2c9
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 24 13:12:04 2020 -0500

    Remove extra line

commit d2db8d8159f3398bcd21d9db00940dbcc7af63a2
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 24 13:11:53 2020 -0500

    fix comments

commit 5c7c9f36384bb3f64837064baa975c124a34a457
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 24 13:09:30 2020 -0500

    adjust index script

commit ae2af3adfc311c6bde53ee6ac5e17a422954d081
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 24 13:03:02 2020 -0500

    tap

commit 58a98efb86c0c0a819e333a52eccf2a7de652f15
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 24 12:47:56 2020 -0500

    tweak route provider default settings

commit e0c4fd8b8a799df4ae917c2e8bbdeee83324ca3e
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 24 11:36:04 2020 -0500

    one line

commit 17e2ce73edb6f8eae9879f988898de809020bbf6
Merge: 641d1046 9374d9e7
Author: Dries Vints <[email protected]>
Date:   Mon Jun 22 10:18:42 2020 +0200

    Merge pull request #5324 from nunomaduro/patch-1

    [8.x] Requires PHP 7.3 and bumps both PHPUnit and Collision

commit 9374d9e7b386ea0ef6a0e55d33dc758cb946a157
Author: Nuno Maduro <[email protected]>
Date:   Mon Jun 22 03:07:47 2020 +0200

    Requires PHP 7.3 and bumps both PHPUnit and Collision

commit 641d104610401174ff330595239cada1c7472b81
Author: Taylor Otwell <[email protected]>
Date:   Fri Jun 19 15:40:52 2020 -0500

    add css file

commit 588247b790f4f0d13296247f8140b1466e1e6936
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 18 15:26:58 2020 -0500

    use postCss default instead of sass

commit a429eab2d45e37e2ccfae9a052011c933a55a9a0
Merge: b522e3b3 311c3f82
Author: Dries Vints <[email protected]>
Date:   Tue Jun 16 14:56:56 2020 +0200

    Merge branch 'master' into develop

commit 311c3f823a6f09df5e9b882906456e9caa02132c
Author: Taylor Otwell <[email protected]>
Date:   Fri Jun 12 09:35:55 2020 -0500

    tweak phpunit.xml

commit 74df1e26e639f0527429fba8185b743e6538d3ac
Merge: 6e5f4093 2f33300a
Author: Dries Vints <[email protected]>
Date:   Fri Jun 12 10:36:11 2020 +0200

    Merge pull request #5320 from barryvdh/patch-4

    Bump fruitcake/laravel-cors

commit 2f33300abe3684a42acd2d9dce35569e988d9c13
Author: Barry vd. Heuvel <[email protected]>
Date:   Fri Jun 12 08:50:58 2020 +0200

    Bump fruitcake/laravel-cors

commit b522e3b30137036f39eafadd76fc9159977a8200
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 3 17:06:06 2020 -0500

    shop

commit 6aa12f1b06fd06f9ece32f191329f4260ac31e88
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 3 14:51:22 2020 -0500

    use route service provider

commit 6e5f40939ce15d731276b2ad6e5fd08057faa79a
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 3 08:30:51 2020 -0500

    Update README.md

commit 9e5ba571a60a57ca2c3938bc5bd81d222cb6e618
Author: Taylor Otwell <[email protected]>
Date:   Thu May 28 10:08:01 2020 -0500

    add password reset migration

commit 5639581ea56ecd556cdf6e6edc37ce5795740fd7
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 16:50:22 2020 -0500

    add basic trust host middleware

commit c10489131ef28ecd46529e37b558ae93a20e3fb8
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 10:47:20 2020 -0500

    fix formatting

commit c3f7dd9af865ab060d7ff3b0086272e9ea4cd54b
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 10:20:51 2020 -0500

    fix doc block

commit c15a1006d1e8ca335e8aa81314a8a20baf93563f
Author: Taylor Otwell <[email protected]>
Date:   Fri May 15 14:04:40 2020 -0500

    respect dark mode on splash

commit 7b0b5d8310143269d8de50442499b77187f8ee5a
Author: Ryan England <[email protected]>
Date:   Thu May 14 14:50:14 2020 +0100

    Update sponsor link (#5302)

    British Software Development have rebranded to Many, link and link text updated accordingly.

commit 7d62f500a789416738a7181d5217d33ca096db04
Author: feek <[email protected]>
Date:   Mon May 4 06:31:39 2020 -0700

    chore: update typehint to be nullable (#5296)

    By default, this property is null. Therefore, it should be marked as nullable

commit 0f133c1e8eff44d765a40fc1934172e7bf046e56
Author: fragkp <[email protected]>
Date:   Fri May 1 16:35:51 2020 +0200

    set default auth_mode for smtp mail driver (#5293)

    Co-authored-by: KP <[email protected]>

commit eb080e5ceeaa39e5d94a44036f791ad5e30947d2
Merge: fac16a7e 785405b3
Author: Dries Vints <[email protected]>
Date:   Mon Apr 27 16:33:05 2020 +0200

    Merge branch 'master' into develop

commit 785405b34b3fcf9be0ab1262c4eaa72569fac218
Merge: 3cdfe0ce d7d342c2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 27 16:32:54 2020 +0200

    Merge branch '6.x'

commit d7d342c2f546576524e449c1fae69dbc885a21c2
Author: Nabil Muh. Firdaus <[email protected]>
Date:   Mon Apr 27 20:38:20 2020 +0700

    Disable webpack-dev-server host check (#5288)

commit fac16a7e26307f83e91dfbd88f9d5429b042b183
Author: Taylor Otwell <[email protected]>
Date:   Tue Apr 21 14:47:10 2020 -0500

    Update DatabaseSeeder.php

    Update example.

commit 2149e8c24cc7ce855f8e27f8d4dae88b14598119
Author: Taylor Otwell <[email protected]>
Date:   Tue Apr 21 14:44:37 2020 -0500

    update seeders

commit 5f6f5c929b25ab3ba83fccf3a7b01c4bd13d60f4
Author: Taylor Otwell <[email protected]>
Date:   Tue Apr 21 12:41:27 2020 -0500

    add model

commit b9af2b229455efd68c806ff0f8f3d7e1411c9bbf
Author: Taylor Otwell <[email protected]>
Date:   Tue Apr 21 10:12:39 2020 -0500

    Use new factories

    Use the new factories provided in 8.x

commit 0e01834bedb0a360608e4eec6c71418454004ce6
Author: Taylor Otwell <[email protected]>
Date:   Fri Apr 17 10:36:39 2020 -0500

    add sponsor link

commit 919a04914ff45d103f603f29d171e0c3d16141d9
Merge: 8be1fd40 3cdfe0ce
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:47:44 2020 +0200

    Merge branch 'master' into develop

commit 3cdfe0ce952c0b202150855b2f846996ebd4ba4a
Merge: b5f008a8 8aab222c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:47:28 2020 +0200

    Merge branch '6.x'

    # Conflicts:
    #	CHANGELOG.md

commit 8aab222c12ea63711e3b6b41b23c6b6f2231588c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:45:26 2020 +0200

    Update CHANGELOG.md

commit 8be1fd40018912c3e9b5e52504c99cf06d3ef0b9
Merge: d53c56e4 b5f008a8
Author: Dries Vints <[email protected]>
Date:   Wed Apr 15 13:47:54 2020 +0200

    Merge branch 'master' into develop

    # Conflicts:
    #	CHANGELOG.md

commit b5f008a8bff29219800b465e613bc19a191ac815
Author: Dries Vints <[email protected]>
Date:   Wed Apr 15 13:46:52 2020 +0200

    Update CHANGELOG.md

commit d53c56e4e0bdc2b9a3c14511bdcbe48c4914f084
Author: Taylor Otwell <[email protected]>
Date:   Tue Apr 14 16:14:14 2020 -0500

    remove unneeded parent boot calls

commit 103fc0b4513d9ffbc33ebb31f74f9fba81d2b100
Merge: 5f9ee30e 0d23e5f7
Author: Dries Vints <[email protected]>
Date:   Tue Apr 14 10:58:32 2020 +0200

    Merge pull request #5278 from voyula/patch-1

    [7.x] Normalize Style

commit 0d23e5f761c0cc98318e883dbce13a43a3c13226
Author: Musa <[email protected]>
Date:   Tue Apr 14 11:56:29 2020 +0300

    [7.x] Normalize Style

    See: https://github.com/laravel/framework/blob/7.x/phpunit.xml.dist#L14

commit 5f9ee30e379390f9ce506d934314cb6ff6d7d355
Author: Igor Finagin <[email protected]>
Date:   Thu Apr 9 19:03:28 2020 +0300

    Disable Telescope in PHPUnit (#5277)

    PHPUnit throw exception when Telescope is enabled

commit 0dbc6350b9b39b177565bae5351d0cf00b6143f4
Merge: f9d2f5be e2c9261c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:58:04 2020 +0200

    Merge branch 'master' into develop

commit e2c9261c2dfe2d0d0456c8ad113d147cce153885
Merge: 2a2522d8 73f723a2
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:56:58 2020 +0200

    Merge branch '6.x'

commit 73f723a2f4153f87b3d45d23addc0923f233de57
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:54:25 2020 +0200

    Add both endpoint and url env variables (#5276)

commit f9d2f5be368619fb481b6f69784f516c1b2de59f
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 8 08:09:49 2020 -0500

    remove ignition until its ready for 8

commit 0f0b78ec8cafbaa917e6c6be43784b1d7db47fd6
Author: Taylor Otwell <[email protected]>
Date:   Tue Apr 7 15:58:25 2020 -0500

    tweak welcome page

commit bf2d370ec4d41ef3fb5732eca9eca0e3315cad2f
Author: Taylor Otwell <[email protected]>
Date:   Tue Apr 7 14:38:49 2020 -0500

    new welcome page

commit 2a2522d8824c0852e30a7e3e07d46a543eb4b33d
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 29 10:38:29 2020 -0500

    fix wording

commit f140d926d3c24e854578a9eb6a2b2f7fe763abf5
Merge: dccc9334 b26aaff2
Author: Dries Vints <[email protected]>
Date:   Sat Mar 28 11:57:59 2020 +0100

    Merge pull request #5271 from winter-ice/master

    [7.x] Consistent filename

commit b26aaff2100e3f01aee0dc96ad7657ddd2d5a07c
Author: ice <[email protected]>
Date:   Sat Mar 28 09:53:47 2020 +0800

    consistent filename

commit f2691fcc138be7a117c10c12490a109b5ac2061b
Merge: 1111e6f2 dccc9334
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:32:52 2020 +0100

    Merge branch 'master' into develop

    # Conflicts:
    #	CHANGELOG.md

commit dccc933416c7f3a9bf9824fd8515b2daa51f6973
Merge: 6628b7a1 d067d7d8
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:31:42 2020 +0100

    Update CHANGELOG.md

commit d067d7d889e69d28e609534e3c5cdf5773462df9
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:26:16 2020 +0100

    Update CHANGELOG.md

commit 1111e6f2f3bbbbc27e4e97df4b747140a894a6a6
Merge: 57cd6a82 6628b7a1
Author: Graham Campbell <[email protected]>
Date:   Tue Mar 24 13:55:29 2020 +0000

    Merge branch 'master' into develop

commit 6628b7a1b48c2f559ec01b9e8e77872b63e0fb70
Merge: d82bf976 b7b6e35b
Author: Graham Campbell <[email protected]>
Date:   Tue Mar 24 13:55:12 2020 +0000

    Merge branch '6.x'

commit b7b6e35bf88f346832bdd32b71ca7ed4f0ceddd5
Author: Jacob Honoré <[email protected]>
Date:   Tue Mar 24 14:11:36 2020 +0100

    Fix s3 endpoint url reference (#5267)

commit d82bf9768b5d486d08159c191bec8a3d7b426436
Author: Markus Podar <[email protected]>
Date:   Sun Mar 15 17:25:50 2020 +0100

    [7.x] Allow configuring the timeout for the smtp driver (#5262)

    * Allow configuring the timeout for the smtp driver

    The default is the same as in `\Swift_Transport_EsmtpTransport::$params`

    * Corrected default

    * Update mail.php

    Co-authored-by: Graham Campbell <[email protected]>
    Co-authored-by: Taylor Otwell <[email protected]>

commit 52f69fcf2529501bed81b2bc5b036c4edd729cd5
Author: Taylor Otwell <[email protected]>
Date:   Sat Mar 14 16:07:23 2020 -0500

    add sponsor link

commit 57cd6a8217809c51814f4a045c06395248b07183
Merge: 404b43b5 f93f4ad8
Author: Graham Campbell <[email protected]>
Date:   Sat Mar 14 11:16:53 2020 +0000

    Merge branch 'master' into develop

commit f93f4ad8bf114116a7c6917e7da155b5656463af
Author: Mathieu TUDISCO <[email protected]>
Date:   Fri Mar 13 20:53:56 2020 +0100

    Fix session config changes (#5261)

    * Fix session config changes

    * Update session.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit 166abfa35c535f4572d5971a99aec45cc8c63ff6
Author: Barry vd. Heuvel <[email protected]>
Date:   Wed Mar 11 21:08:52 2020 +0100

    Update default CORS config (#5259)

commit c7a0002432351690d28223afa7caa272e769e226
Author: André Ricard <[email protected]>
Date:   Wed Mar 11 09:37:46 2020 -0300

    Fix the code indent of object operators (#5258)

    This commit fixes the code indent of object operators, as following the framework code standards -> 2.4. Indenting

commit b0ce2adc423ff175a20838ee5f2c858cbc63b11f
Author: Roberto Aguilar <[email protected]>
Date:   Fri Mar 6 15:16:30 2020 -0600

    Add new SQS queue suffix option (#5252)

    As described in laravel/framework#31784, this option will allow to
    define a queue name suffix.

commit 641fcfb60aa47266c5b4767830dc45bad00c561c
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 6 07:57:11 2020 -0600

    remove config entry

commit 404b43b502b2aae63866f80332c45e24f8a06589
Merge: 5c4f9980 36373983
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:48:48 2020 +0000

    Merge branch 'master' into develop

commit 36373983adaea3a021ef968b99de038b1fc4f55c
Merge: 3aa22403 5ddbfb84
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:48:34 2020 +0000

    Merge branch '6.x'

commit 5ddbfb845439fcd5a46c23530b8774421a931760
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:47:59 2020 +0000

    Ensure that app.debug is a bool

commit 3aa22403c7d865049a735c51fadf60add498840e
Author: Taylor Otwell <[email protected]>
Date:   Wed Mar 4 16:45:31 2020 -0600

    remove empty line from phpunit.xml (#5245)

    I'm not sure if there's a style rule for this, but it seems very out of place to be the only empty line in…
xharpenParksuhyeon added a commit to xpressengine/xpressengine that referenced this pull request Feb 14, 2023
As described in laravel/framework#31784, this option will allow to
define a queue name suffix.
totoprayogo1916 added a commit to totoprayogo1916/OpenDK that referenced this pull request Sep 4, 2023
commit 3923e7f7c40368a5e78c1a33610191be8ad91e3b
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:17:45 2020 +0100

    Update CHANGELOG.md

commit ff355973475624d9dc9ed5fd157a0ba0bef84710
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:16:23 2020 +0100

    Lower ignition constraint

commit 509708c7ee04dde4214edcf60fe3752f0d54d91d
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 16:03:50 2020 +0100

    Update CHANGELOG.md

commit 8ae2d8ec1e4b86c77e9352f3b32e79ebfa62ed82
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:53:46 2020 +0100

    Bump ignition and collision

commit 3c4eac92baaf98b7d42d7dcf713bbdc017a5c6ab
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:48:42 2020 +0100

    Bump Guzzle

commit 45fa128adbc2c36870f36bc9396a850508fb8c5b
Merge: 9af70cff d85be866
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:43:30 2020 +0100

    Merge branch '6.x' into 7.x

commit d85be8669880cce457eb5827afbedb6ad30bb629
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:40:46 2020 +0100

    Update CHANGELOG.md

commit 31fbf612efd8e6291453c14d1d8a5377a6870792
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:39:45 2020 +0100

    Bump fideloper/proxy

commit eb34def26a617cc48813d137dccab4994b555d61
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:38:43 2020 +0100

    Bump tinker

commit d906d7b86006d65b3ab74c890d2a23b24a7d7a18
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:27:02 2020 +0100

    Update phpunit constraints

commit f363bc30e18b60612ef77a40a4f169c633fd04ac
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 14:59:24 2020 +0100

    Bump ignition

commit 9af70cffa4bdc5d5e4d7b96e9fa7fb98969b12c9
Merge: 482d68a1 27338d9a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:01:22 2020 +0100

    Merge branch '6.x' into 7.x

commit 27338d9a99b63bb180c6c2ba6a9585ab1d10bf78
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:00:39 2020 +0100

    Allow PHPUnit 9

commit 482d68a182bdd629e5d4d3c19d5d7d7623dd074a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:26:10 2020 +0100

    Update CHANGELOG.md

commit 02ca853809a97f372a3c6dc535c566efff9f6571
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:59 2020 +0100

    Nump minimum Laravel version

commit 056a9e8f903860a066190b6a45b56436d6c64531
Merge: 9b21125e aef279a6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:32 2020 +0100

    Merge branch '6.x' into 7.x

commit aef279a6cf04b47ac7aa279e37240a683bdcf5e6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:17:39 2020 +0100

    Update CHANGELOG.md

commit b8d582581a1067e3b1715cce477b22455acc3d36
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:16:58 2020 +0100

    Update minimum Laravel version

commit a4d45e6940ec6565ac1ea55cad117082876396ad
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:15:43 2020 +0100

    Update CHANGELOG.md

commit 9b21125e31232d29231c60067c6df42e9554715b
Merge: 533f130f 4c25cb95
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:18:17 2020 +0100

    Merge branch '6.x' into 7.x

commit 4c25cb953a0bbd4812bf92af71a13920998def1e
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:17:46 2020 +0100

    Allow for PHP 8

commit 533f130f1429986313966c39511690e23cc42431
Merge: 4eeb29ee 3d46fc35
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 15:01:36 2020 +0100

    Merge branch '6.x' into 7.x

commit 3d46fc355d70db2462815b62139f8b0a0f3a16c3
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:54:45 2020 +0100

    Update Faker (#5461)

commit 22fa816fdf80a0bd821a4249358dd921ed76fb1a
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:11:46 2020 +0100

    Delete removed webpack flag (#5460)

commit aeec665b75258eea6cc03df1945e60f066183305
Author: Dries Vints <[email protected]>
Date:   Thu Oct 22 14:31:01 2020 +0200

    Update composer.json (#5452)

commit 4eeb29ee12e980969e8d9f2a1cd465e514a0f76e
Author: Dries Vints <[email protected]>
Date:   Mon Sep 21 17:59:16 2020 +0200

    Update changelog

commit b9b282a71933e0279fea63fa0302e9a30a4c2efe
Author: Youri Wijnands <[email protected]>
Date:   Tue Sep 8 14:50:51 2020 +0200

    Use the new Google Fonts API (#5396)

    https://developers.google.com/fonts/docs/css2

commit a7a40d77447358a57da02f202563c50344dc5a44
Merge: dc5817bb 179e52bd
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:28:00 2020 +0200

    Merge branch '6.x' into master

commit 179e52bdd719fb456ed49a2bf8e42f922a6f5da2
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:27:47 2020 +0200

    Fix logo

commit dc5817bbf2552b48d93bde99688d56e99b7a7708
Author: Dries Vints <[email protected]>
Date:   Fri Sep 4 10:39:28 2020 +0200

    Update Handler.php

commit 2c69ec987e2dca71008684fc80bbe56c55427dc3
Merge: fa43c0a3 921b14b9
Author: Graham Campbell <[email protected]>
Date:   Wed Aug 26 09:39:37 2020 +0100

    Merge branch '6.x' into master

commit fa43c0a333d623a393fa33c27a1376f69ef3f301
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:44:47 2020 +0200

    Update CHANGELOG.md

commit 921b14b954d51125b8369299a6ba18d78735367d
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:16:01 2020 +0200

    Update CHANGELOG.md

commit 39a58710ba3e5aff0b3588fe748fa24e066d17b0
Merge: b3f60041 0512f006
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:08:41 2020 +0200

    Merge pull request #5370 from laravel/bump-7

    [7.x] Set framework version ^7.24

commit bbd36167158f29148095085fa81fed211ad676d2
Merge: 407b6b8b e96840e2
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:07:55 2020 +0200

    Merge pull request #5369 from laravel/bump-6

    [6.x] Set framework version ^6.18.35

commit 0512f00664445c452abbb470b9aaf4a0c7f78b26
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:29:43 2020 +0100

    Set framework version ^7.24

commit e96840e20673ed87e684b8ee814bdf02c1c8dfcc
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:28:47 2020 +0100

    Set framework version ^6.18.35

commit b3f600415d3d1eb35c3f0f66e40ffa32c4bc77f0
Merge: a7b70fcc 407b6b8b
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 11:09:47 2020 +0100

    Merge branch '6.x' into master

commit 407b6b8b04820a7fc0eb3143a8255abbeabb3eb9
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:52:00 2020 +0100

    Revert "Apply fixes from StyleCI (#5356)" (#5357)

    This reverts commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560.

commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:49:11 2020 +0100

    Apply fixes from StyleCI (#5356)

commit 0e7fd2beb18e6f5c0213b0f162611d5e75ce42f4
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:59:20 2020 +0200

    Fix version

commit a7b70fcc310fee9d78448e078fef9003150ee8aa
Author: Taylor Otwell <[email protected]>
Date:   Mon Jul 27 10:57:16 2020 -0500

    fix version

commit 074c3840ff6be2c562d97ec0d68a04b0699493a1
Merge: f465c511 b1277e2e
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:34:05 2020 +0200

    Merge pull request #5355 from laravel/bump

    [6.x] Bumped laravel 6 min version for new LTS users

commit b1277e2eb2e586b3cb09bbf545aa7fab0a4fd0ca
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 16:23:43 2020 +0100

    Bumped laravel 6 min version for new LTS users

commit e9e7c972661668f4a4c747e951c6e7ce8e3adf15
Author: rennokki <[email protected]>
Date:   Mon Jul 27 18:18:18 2020 +0300

    [7.x] Enforce ^7.22.1 due to security issues (#5354)

    * enforce ^7.22

    * Update composer.json

    Co-authored-by: Dries Vints <[email protected]>

commit 791c87a80d1c5eebd75e1bf499f86899d6b2b26f
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:11:30 2020 -0500

    Update README.md

commit 232995cac214bf1fdff4278aa7904d65df3ae899
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:07:41 2020 -0500

    Update README.md

commit f465c511c009235fc7bfa06bfcb41294e60e9b42
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 6d9296c71edc3def466d3cab501b7d1f9b6717d2
Merge: 311c3f82 5f462521
Author: Dries Vints <[email protected]>
Date:   Mon Jul 20 16:15:08 2020 +0200

    Merge pull request #5346 from ahinkle/patch-1

    Bump lodash from 4.17.13 to 4.17.19

commit 5f46252168977e8850b555da057406a835a9b1f9
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 311c3f823a6f09df5e9b882906456e9caa02132c
Author: Taylor Otwell <[email protected]>
Date:   Fri Jun 12 09:35:55 2020 -0500

    tweak phpunit.xml

commit 74df1e26e639f0527429fba8185b743e6538d3ac
Merge: 6e5f4093 2f33300a
Author: Dries Vints <[email protected]>
Date:   Fri Jun 12 10:36:11 2020 +0200

    Merge pull request #5320 from barryvdh/patch-4

    Bump fruitcake/laravel-cors

commit 2f33300abe3684a42acd2d9dce35569e988d9c13
Author: Barry vd. Heuvel <[email protected]>
Date:   Fri Jun 12 08:50:58 2020 +0200

    Bump fruitcake/laravel-cors

commit 6e5f40939ce15d731276b2ad6e5fd08057faa79a
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 3 08:30:51 2020 -0500

    Update README.md

commit 9e5ba571a60a57ca2c3938bc5bd81d222cb6e618
Author: Taylor Otwell <[email protected]>
Date:   Thu May 28 10:08:01 2020 -0500

    add password reset migration

commit 5639581ea56ecd556cdf6e6edc37ce5795740fd7
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 16:50:22 2020 -0500

    add basic trust host middleware

commit c10489131ef28ecd46529e37b558ae93a20e3fb8
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 10:47:20 2020 -0500

    fix formatting

commit 7b0b5d8310143269d8de50442499b77187f8ee5a
Author: Ryan England <[email protected]>
Date:   Thu May 14 14:50:14 2020 +0100

    Update sponsor link (#5302)

    British Software Development have rebranded to Many, link and link text updated accordingly.

commit 7d62f500a789416738a7181d5217d33ca096db04
Author: feek <[email protected]>
Date:   Mon May 4 06:31:39 2020 -0700

    chore: update typehint to be nullable (#5296)

    By default, this property is null. Therefore, it should be marked as nullable

commit 0f133c1e8eff44d765a40fc1934172e7bf046e56
Author: fragkp <[email protected]>
Date:   Fri May 1 16:35:51 2020 +0200

    set default auth_mode for smtp mail driver (#5293)

    Co-authored-by: KP <[email protected]>

commit 785405b34b3fcf9be0ab1262c4eaa72569fac218
Merge: 3cdfe0ce d7d342c2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 27 16:32:54 2020 +0200

    Merge branch '6.x'

commit d7d342c2f546576524e449c1fae69dbc885a21c2
Author: Nabil Muh. Firdaus <[email protected]>
Date:   Mon Apr 27 20:38:20 2020 +0700

    Disable webpack-dev-server host check (#5288)

commit 3cdfe0ce952c0b202150855b2f846996ebd4ba4a
Merge: b5f008a8 8aab222c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:47:28 2020 +0200

    Merge branch '6.x'

commit 8aab222c12ea63711e3b6b41b23c6b6f2231588c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:45:26 2020 +0200

    Update CHANGELOG.md

commit b5f008a8bff29219800b465e613bc19a191ac815
Author: Dries Vints <[email protected]>
Date:   Wed Apr 15 13:46:52 2020 +0200

    Update CHANGELOG.md

commit 103fc0b4513d9ffbc33ebb31f74f9fba81d2b100
Merge: 5f9ee30e 0d23e5f7
Author: Dries Vints <[email protected]>
Date:   Tue Apr 14 10:58:32 2020 +0200

    Merge pull request #5278 from voyula/patch-1

    [7.x] Normalize Style

commit 0d23e5f761c0cc98318e883dbce13a43a3c13226
Author: Musa <[email protected]>
Date:   Tue Apr 14 11:56:29 2020 +0300

    [7.x] Normalize Style

    See: https://github.com/laravel/framework/blob/7.x/phpunit.xml.dist#L14

commit 5f9ee30e379390f9ce506d934314cb6ff6d7d355
Author: Igor Finagin <[email protected]>
Date:   Thu Apr 9 19:03:28 2020 +0300

    Disable Telescope in PHPUnit (#5277)

    PHPUnit throw exception when Telescope is enabled

commit e2c9261c2dfe2d0d0456c8ad113d147cce153885
Merge: 2a2522d8 73f723a2
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:56:58 2020 +0200

    Merge branch '6.x'

commit 73f723a2f4153f87b3d45d23addc0923f233de57
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:54:25 2020 +0200

    Add both endpoint and url env variables (#5276)

commit 2a2522d8824c0852e30a7e3e07d46a543eb4b33d
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 29 10:38:29 2020 -0500

    fix wording

commit f140d926d3c24e854578a9eb6a2b2f7fe763abf5
Merge: dccc9334 b26aaff2
Author: Dries Vints <[email protected]>
Date:   Sat Mar 28 11:57:59 2020 +0100

    Merge pull request #5271 from winter-ice/master

    [7.x] Consistent filename

commit b26aaff2100e3f01aee0dc96ad7657ddd2d5a07c
Author: ice <[email protected]>
Date:   Sat Mar 28 09:53:47 2020 +0800

    consistent filename

commit dccc933416c7f3a9bf9824fd8515b2daa51f6973
Merge: 6628b7a1 d067d7d8
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:31:42 2020 +0100

    Update CHANGELOG.md

commit d067d7d889e69d28e609534e3c5cdf5773462df9
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:26:16 2020 +0100

    Update CHANGELOG.md

commit 6628b7a1b48c2f559ec01b9e8e77872b63e0fb70
Merge: d82bf976 b7b6e35b
Author: Graham Campbell <[email protected]>
Date:   Tue Mar 24 13:55:12 2020 +0000

    Merge branch '6.x'

commit b7b6e35bf88f346832bdd32b71ca7ed4f0ceddd5
Author: Jacob Honoré <[email protected]>
Date:   Tue Mar 24 14:11:36 2020 +0100

    Fix s3 endpoint url reference (#5267)

commit d82bf9768b5d486d08159c191bec8a3d7b426436
Author: Markus Podar <[email protected]>
Date:   Sun Mar 15 17:25:50 2020 +0100

    [7.x] Allow configuring the timeout for the smtp driver (#5262)

    * Allow configuring the timeout for the smtp driver

    The default is the same as in `\Swift_Transport_EsmtpTransport::$params`

    * Corrected default

    * Update mail.php

    Co-authored-by: Graham Campbell <[email protected]>
    Co-authored-by: Taylor Otwell <[email protected]>

commit 52f69fcf2529501bed81b2bc5b036c4edd729cd5
Author: Taylor Otwell <[email protected]>
Date:   Sat Mar 14 16:07:23 2020 -0500

    add sponsor link

commit f93f4ad8bf114116a7c6917e7da155b5656463af
Author: Mathieu TUDISCO <[email protected]>
Date:   Fri Mar 13 20:53:56 2020 +0100

    Fix session config changes (#5261)

    * Fix session config changes

    * Update session.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit 166abfa35c535f4572d5971a99aec45cc8c63ff6
Author: Barry vd. Heuvel <[email protected]>
Date:   Wed Mar 11 21:08:52 2020 +0100

    Update default CORS config (#5259)

commit c7a0002432351690d28223afa7caa272e769e226
Author: André Ricard <[email protected]>
Date:   Wed Mar 11 09:37:46 2020 -0300

    Fix the code indent of object operators (#5258)

    This commit fixes the code indent of object operators, as following the framework code standards -> 2.4. Indenting

commit b0ce2adc423ff175a20838ee5f2c858cbc63b11f
Author: Roberto Aguilar <[email protected]>
Date:   Fri Mar 6 15:16:30 2020 -0600

    Add new SQS queue suffix option (#5252)

    As described in laravel/framework#31784, this option will allow to
    define a queue name suffix.

commit 641fcfb60aa47266c5b4767830dc45bad00c561c
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 6 07:57:11 2020 -0600

    remove config entry

commit 36373983adaea3a021ef968b99de038b1fc4f55c
Merge: 3aa22403 5ddbfb84
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:48:34 2020 +0000

    Merge branch '6.x'

commit 5ddbfb845439fcd5a46c23530b8774421a931760
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:47:59 2020 +0000

    Ensure that app.debug is a bool

commit 3aa22403c7d865049a735c51fadf60add498840e
Author: Taylor Otwell <[email protected]>
Date:   Wed Mar 4 16:45:31 2020 -0600

    remove empty line from phpunit.xml (#5245)

    I'm not sure if there's a style rule for this, but it seems very out of place to be the only empty line in the whole file.

commit efcf74f422b381a69da8f673061eb94487e6f557
Author: Mark van den Broek <[email protected]>
Date:   Wed Mar 4 15:05:25 2020 +0100

    [7.x] Add Mailgun and Postmark mailer (#5243)

    * Add Mailgun and Postmark mailer

    * Formatting

    * Update mail.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit c9cf57a00c76c58afec25a822846f0798661e372
Author: Benedikt Franke <[email protected]>
Date:   Wed Mar 4 15:04:39 2020 +0100

    Add serialize option to array cache config (#5244)

    This documents the new configuration option from https://github.com/laravel/framework/pull/31295

commit 876142d709b99af0211315c4a8e8f93f38790f25
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 20:42:38 2020 +0100

    Update CHANGELOG.md

commit 2d7b45bfb465d838a9f670e35738ac13166410e9
Merge: 672f626d e773d388
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 18:18:11 2020 +0100

    Merge branch '6.x'

commit e773d3885b30ec77c8f0a3bbca31c914b80d3762
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 18:15:59 2020 +0100

    Update CHANGELOG.md

commit 672f626da1788a46bf6bc830d15725ee3ae668d8
Author: Maxime Willinger <[email protected]>
Date:   Mon Mar 2 17:52:06 2020 +0100

    Add array mailer (#5240)

commit 7bea49b8ee35728a791bf1e50e894b36f3c8843e
Author: Maxime Willinger <[email protected]>
Date:   Mon Mar 2 16:21:08 2020 +0100

    Use MAIL_MAILER in test environment (#5239)

commit d7c602c164bfa5db8d02c139769558e336f24d89
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 17:30:43 2020 +0100

    Update app.php (#5237)

commit 0b14a741eb62f7b7d316b27f7b0e8bff770e3f7b
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 16:26:30 2020 +0100

    Update app.php (#5237)

commit 88a763e36f1d39be9b9924bbd1007a4a7b2eee9f
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 16:21:15 2020 +0100

    Update app.php (#5237)

commit 705076ffc28a834a1eb76b3550be2b6269a8fefb
Author: Graham Campbell <[email protected]>
Date:   Mon Feb 24 14:48:16 2020 +0000

    Bumped min guzzle

commit 3233e6f8097816349137eb46d03c9e83a5321259
Merge: d529de06 8cece725
Author: Graham Campbell <[email protected]>
Date:   Mon Feb 24 14:47:21 2020 +0000

    Merge branch 'master' into develop

commit 8cece7259806b3e4af6f185ffa4772dded70cd21
Author: Sjors Ottjes <[email protected]>
Date:   Mon Feb 24 15:37:15 2020 +0100

    Remove redundant default attributes from phpunit.xml (#5233)

commit d529de062d16ac29f48c901ea02e9dacde10ef47
Author: Dries Vints <[email protected]>
Date:   Thu Feb 13 16:03:25 2020 +0100

    Update composer.json

commit d038d1f6b65ba1c48bd608b535cdc04d826821ba
Author: Dries Vints <[email protected]>
Date:   Thu Feb 13 16:00:10 2020 +0100

    Update composer.json

commit c434eae43d673a709bb840f5f2e03b58da30682b
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 12 16:20:50 2020 -0600

    guzzle

commit 6b9050226e9ada706143a8b3d90c4a4d5e4355e2
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 12 09:30:09 2020 -0600

    use phpunit 0

commit 2c4fa1ab2815fd10f6e797f76c407a5fddb294aa
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 5 16:46:09 2020 -0600

    formatting

commit d7f67f631d7743c4d877197089f17dc4b62ee792
Author: Andrew Brown <[email protected]>
Date:   Wed Feb 5 10:48:51 2020 -0600

    styling

commit 153746c2c17b6199294ec97f4fea95ed34241c7b
Author: Andrew Brown <[email protected]>
Date:   Wed Feb 5 10:33:45 2020 -0600

    add `links` option to filesystems config

    https://github.com/laravel/framework/pull/31355

commit eb3143ea720d229c54a31b07b582ead58a216a41
Author: Nuno Maduro <[email protected]>
Date:   Tue Feb 4 22:20:49 2020 +0100

    Uses latest stable of Collision (#5221)

commit c78a1d8184f00f8270d8a135cc21590837b6bfbd
Author: ARCANEDEV <[email protected]>
Date:   Fri Jan 31 14:48:04 2020 +0100

    Bump fzaninotto/faker version to support PHP 7.4 (#5218)

    Bumping `fzaninotto/faker` version to support PHP 7.4, especially when running composer with `--prefer-lowest` flag.

    PRs related to version `^1.9.1`:

    * https://github.com/fzaninotto/Faker/pull/1748
    * https://github.com/fzaninotto/Faker/pull/1843

commit c81712bdf46b9fbd8641f07641470195d5487709
Author: Andrey Helldar <[email protected]>
Date:   Thu Jan 30 17:14:42 2020 +0300

    [6.x] Update cross-env to the latest (#5216)

    This is not a fix for the vulnerability.
    Just updating the dependency to the latest version.

    @see https://yarnpkg.com/package/cross-env

    Yes, I know that they recently released version 6.0 and in a short time 7.0.

commit f04029a64d93401e0d6788253c5134cdf8804607
Author: Freek Van der Herten <[email protected]>
Date:   Mon Jan 27 15:53:34 2020 +0100

    use ignition v2 (#5211)

commit 38a1249a002bf1dd201bda614454b28ed8c41f59
Merge: 91dd1f61 2503ed68
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:49:40 2020 -0600

    Merge remote-tracking branch 'origin/develop' into develop

commit 91dd1f61cdd3c7949593a4435dff8b77322761f2
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:49:20 2020 -0600

    formatting

commit 2503ed687ff4e8d068a36a9fe6d990492ffdbbed
Merge: db596ba0 1d094a80
Author: Graham Campbell <[email protected]>
Date:   Fri Jan 24 13:48:38 2020 +0000

    Merge branch 'master' into develop

commit 550282b0944d10eb78bf3ff4e556fe10a83ad8d7
Merge: db596ba0 678901cc
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:46:08 2020 -0600

    Merge branch 'check-compiled' of https://github.com/browner12/laravel into browner12-check-compiled

commit 1d094a80849133899fa4a9ba9b7598de7bc6d370
Author: Andrey Helldar <[email protected]>
Date:   Fri Jan 24 16:43:48 2020 +0300

    [7.x] Update cross-env and resolve-url-loader to the latest (#5210)

commit 678901cc4d2ee139b547375299b43eac19a37674
Author: Andrew Brown <[email protected]>
Date:   Thu Jan 23 10:40:45 2020 -0600

    update name

commit 2fe113e606989e3dec86dc7e716833facafe55bc
Author: Andrew Brown <[email protected]>
Date:   Thu Jan 23 10:27:12 2020 -0600

    add new `check_compiled` option

commit db596ba02aaedd925be3dd3c51d486355da277db
Merge: ffc74ba1 b1f35786
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 17 16:15:48 2020 -0600

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit ffc74ba143a7de4a89f2c3fd525a5621ca879e38
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 17 16:15:38 2020 -0600

    remove hyphen on email

commit b1f35786eb6352d1a613ffe0e2b7e55f6e1a316e
Merge: 94f8ee3c 9d0862b3
Author: Dries Vints <[email protected]>
Date:   Tue Jan 14 17:52:04 2020 +0100

    Merge branch 'master' into develop

commit 9d0862b3340c8243ee072afc181e315ffa35e110
Merge: 9b6d1b14 f44f065a
Author: Dries Vints <[email protected]>
Date:   Tue Jan 14 17:50:01 2020 +0100

    Merge pull request #5201 from aimeos/master

    Use file session driver again

commit 9b6d1b14bcbeba1b52a75a48dedc0402b1f08bb5
Author: Caíque de Castro Soares da Silva <[email protected]>
Date:   Mon Jan 13 13:36:09 2020 -0300

    Update laravel mix and sass loader (#5203)

commit f121af8985d1dbb665cb9ca4b6a9f7dbb6211a7c
Author: Robert Korulczyk <[email protected]>
Date:   Sun Jan 12 16:06:29 2020 +0100

    Add missing full stop for some validation messages (#5205)

commit 94f8ee3cade8d08097ed0255e4fb0fc4e56a8cd3
Merge: 130b8c8b b46c16b4
Author: Dries Vints <[email protected]>
Date:   Thu Jan 9 12:42:11 2020 +0100

    Merge branch 'master' into develop

commit b46c16b4246c7dc648158221c49f5b2e785e7c30
Author: Dries Vints <[email protected]>
Date:   Thu Jan 9 12:41:21 2020 +0100

    Update CHANGELOG.md

commit 130b8c8bcb8f167e7013e7846004b2df3e405b72
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:16:33 2020 -0600

    add ses

commit e43d4546a9c0bde49dae51fd6f4e2766674f1152
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:14:01 2020 -0600

    fix comment

commit 61ec16fe392967766b68d865ed10d56275a78718
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:10:37 2020 -0600

    work on mail configuration file

commit 76d822768dcab14fa1ee1fd1f4a24065234860db
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:01:42 2020 -0600

    update mail configuration file

commit f44f065a2b2cad1a947a7e8adc08fcc13d18c49c
Author: Aimeos <[email protected]>
Date:   Wed Jan 8 12:44:53 2020 +0100

    Use file session driver again

commit eca7bc7d66cef63500a62e8deaa3fce1772f1641
Author: Aimeos <[email protected]>
Date:   Wed Jan 8 12:44:22 2020 +0100

    Use file session driver again

commit 7e5a9154857f598f69978559a6ef9c34c1348e15
Merge: 4bf7dffb 25c36eb5
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:26:17 2019 +0000

    Merge branch 'master' into develop

commit 25c36eb592c57e075acc32a12703005f67c4ec10
Merge: 195faa16 5df3b7b1
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:22:50 2019 +0000

    Merge pull request #5196 from laravel/revert-5006-analysis-qxPGgA

    [6.x] Revert "Apply fixes from StyleCI"

commit 5df3b7b1fe07a22d3275180ece0b31f45682f07e
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:21:39 2019 +0000

    Revert "Apply fixes from StyleCI (#5006)"

    This reverts commit 50176732d66b197de62d5567b79fc77f63e2cfbd.

commit 4bf7dffb90366438e849c0c96e06e2a638eec336
Author: Graham Campbell <[email protected]>
Date:   Mon Dec 30 18:23:10 2019 +0000

    Bumped defaults for Laravel 7 (#5195)

commit 8af8af0cbfc5cdfaa3f757afe736a9d28d83851c
Merge: 0bec06cd 195faa16
Author: Graham Campbell <[email protected]>
Date:   Sat Dec 28 00:35:40 2019 +0000

    Merge branch 'master' into develop

commit 0bec06cd45a7f6eda0d52f78dd5ff767d94ed5cc
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 27 08:56:53 2019 -0600

    formatting

commit c222f6d04ff29489daec178d15ae23a3c13838f8
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:54:10 2019 +0100

    CS

commit e4683c6ecaff9a7dc779fb0dfe39f6336832fc9d
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:48:38 2019 +0100

    Revert routes

commit 860ec9f2a48c65d30998942263a4f9a849e9b0a0
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:46:41 2019 +0100

    Use config instead of middleware property

commit 195faa16cbeabc84b0eb9c9f4227ead762c93575
Author: Anton Komarev <[email protected]>
Date:   Wed Dec 25 18:05:29 2019 +0300

    Fix types consistency in database config (#5191)

commit 777baff7d5abdf38330714ccb5ff3dc3ee5d2f9c
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 22:28:34 2019 +0000

    Update composer.json

commit bee0e8c94c37bf3909e3fbe7e100a106dbf57fab
Author: Barry vd. Heuvel <[email protected]>
Date:   Tue Dec 24 22:26:06 2019 +0100

    Add HandleCors middleware

commit db940594ad86a22663acc3c119caab571344e2ee
Merge: 4d565e68 846f7a19
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 17:45:25 2019 +0000

    Merge branch 'master' into develop

commit 846f7a193a6c4ff92b6595596c9bbcb3cf8c426e
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 17:35:58 2019 +0000

    Correct exception handler doc (#5187)

commit 4d565e681cbf496e0cdfb58743d4ae8238cef15e
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 15:10:23 2019 -0600

    import facades

commit f4c8190744bbab94e7751518bfd0fdce82ee3ab0
Merge: cf5e99e9 e6471a6f
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:48:16 2019 -0600

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit cf5e99e9aa998c56eda0765a9aefdc14c439e0df
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:48:04 2019 -0600

    change comment

commit e6471a6f2e73dd244f957751ab315aa5903c32ea
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:15:04 2019 -0600

    Apply fixes from StyleCI (#5186)

commit f13aef873333aef538d526217d023fe81e87acd7
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:14:43 2019 -0600

    move var

commit 12c28822f402a948dac389bf037c550524845ba3
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:14:01 2019 -0600

    one liner

commit 3ee0065bcd879b82ee42023165f8a8f71e893011
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:10:38 2019 -0600

    remove unnecessary variable

commit 13e43893ba2457c3e49898f0066a5ce8d7ea74f4
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 13:58:16 2019 -0600

    remove auth migration that is now in laravel/ui

commit b5bb91fea79a3bd5504cbcadfd4766f41f7d01ce
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 11:48:38 2019 -0600

    Remove controllers that are generated by laravel/ui package.

    These controllers will be installed and generated by the laravel/ui (2.0) package in Laravel 7.x.

commit 583d1fa773803f951653af490b3dcc89b967ddbb
Author: Graham Campbell <[email protected]>
Date:   Thu Dec 19 15:36:06 2019 +0000

    [7.x] Remove register in auth provider (#5182)

    * Remove register in auth provider

    * Update AuthServiceProvider.php

    * Update Kernel.php

commit 7d70bfe8289fce07fa595340578b13f4bdac495d
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 13:44:16 2019 -0600

    Utilize Authentication Middleware Contract  (#5181)

    * adjust auth middleware to point to contract

    * remove middleware priority

commit f589a7e89782a8419f7ad54b512289f60ffa8619
Merge: 5d50d30c 99f183b5
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:24:10 2019 -0600

    Merge branch 'master' into develop

commit 99f183b5c794354f7387d503b40d2be63e678a80
Merge: 140d4d9b b2734a9c
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:02:53 2019 -0600

    Merge branch 'master' of github.com:laravel/laravel

commit 140d4d9b0a4581cec046875361e87c2981b3f9fe
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:02:46 2019 -0600

    use class name to be consistent with web middleware

commit b2734a9c313ac637e9b8cffa80f9fa9d3da96a09
Author: Anton Komarev <[email protected]>
Date:   Wed Dec 18 20:17:32 2019 +0300

    Add MAIL_FROM_ADDRESS & MAIL_FROM_NAME to .env file (#5180)

commit c5f9126981fe340edf71de284b27926323d3271b
Author: Andrew Minion <[email protected]>
Date:   Wed Dec 18 09:41:11 2019 -0600

    default email from name to app name (#5178)

commit 17f0ff22057a028f28b8aa17fadbc7fe4136bf66
Author: Michael Stokoe <[email protected]>
Date:   Wed Dec 18 15:38:03 2019 +0000

    Updated config/logging.php (#5179)

    This adds a default emergency logger path to the logging config file.
    This change goes hand-in-hand with my changes found here:
    https://github.com/Stokoe0990/framework/commit/7a03776bc860bde4cdc82e69ab133a755b66dd2d

commit 89e83915e94142ae79db7480561ae8a7a525e114
Merge: dd93aca5 40f93daa
Author: Dries Vints <[email protected]>
Date:   Mon Dec 16 11:35:41 2019 +0100

    Merge pull request #5175 from canvural/patch-1

    [6.x] Update redirectTo return type PHPDoc

commit 40f93daa83b17ad47c51ec9beed4c1ba79eb66ed
Author: Can Vural <[email protected]>
Date:   Sat Dec 14 11:48:14 2019 +0100

    Update redirectTo return type PHPDoc

commit dd93aca5970290dfda651f00a80fdd78b66da226
Merge: f48e2d50 136085bf
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 13 22:43:22 2019 -0600

    Merge branch 'master' of github.com:laravel/laravel

commit f48e2d500cb53cc4a09dfcb40beb0abafd79de4f
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 13 22:42:46 2019 -0600

    change some default settings

commit 136085bfd8361969a7daedc2308e0b59dbd41f60
Author: Bert Heyman <[email protected]>
Date:   Fri Dec 13 15:18:09 2019 +0100

    Add "none" to supported same site options in session config (#5174)

commit 972f3cd2832cd8a8e9e0be96817d10840b735316
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 10 08:59:27 2019 -0600

    DRY up path (#5173)

commit f4b1dc6df04f4ef9b4b15e2c38668e8cb168c253
Author: Dries Vints <[email protected]>
Date:   Fri Dec 6 16:46:02 2019 +0100

    [6.x] Implement integration test and in-memory DB (#5169)

    * Use in-memory DB for testing

    * Extend from PHPUnit test case for unit tests

commit 9b6643226da6bd3803da22fb5dc695b1a279c5aa
Author: byjml <[email protected]>
Date:   Wed Dec 4 21:57:13 2019 +0300

    Consistent order (#5167)

    Keep the alphabetical order of the validation messages.

commit 5d50d30c94ab7c3dcf28562a7f2116cb8922183e
Author: Graham Campbell <[email protected]>
Date:   Wed Nov 27 15:26:11 2019 +0000

    Bumped versions

commit fb3e88c313d80735270385a825363e446fd77174
Merge: b7a5bc7f b56fe840
Author: Graham Campbell <[email protected]>
Date:   Wed Nov 27 15:21:41 2019 +0000

    Merge branch 'master' into develop

commit b56fe84011bdbc3b42b8ffdaadc9a113635a751e
Author: Graham Campbell <[email protected]>
Date:   Tue Nov 26 18:46:10 2019 +0000

    Use laravel/tinker v2 (#5161)

commit b7a5bc7f3ca6d305343624aded77fe68c26bc018
Author: Nuno Maduro <[email protected]>
Date:   Mon Nov 25 21:46:55 2019 +0100

    Bumps Collision dependency to v4.0 (#5160)

commit 2913a55d87461fabe94907c5728d7a9451bcae80
Author: Graham Campbell <[email protected]>
Date:   Mon Nov 25 14:46:29 2019 +0000

    [7.x] Switch to Symfony 5 (#5157)

    * Update exception handler

    * Explictly specify 'lax' same site config

    * Use the null secure option for session cookies

commit 2f8e55a9ec923a481c1a24733c70ae750480f178
Author: Mark van den Broek <[email protected]>
Date:   Mon Nov 25 15:10:36 2019 +0100

    Rename `encrypted` to `forceTLS`. (#5159)

commit c473b53626eab20c44075b02770e948a6e757c2b
Merge: 3c92fb3a 1ee38a10
Author: Dries Vints <[email protected]>
Date:   Thu Nov 21 18:29:26 2019 +0100

    Merge branch 'master' into develop

commit 1ee38a10f8884e24290c86c04d8d1ba5f8bc8d10
Author: Dries Vints <[email protected]>
Date:   Thu Nov 21 18:28:39 2019 +0100

    Update CHANGELOG.md

commit 3c92fb3a19a7fbff0085bfbbe887682095d61520
Merge: 21f24784 c15a5ee0
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 17:35:09 2019 +0100

    Merge branch 'master' into develop

commit c15a5ee0d205ade08ad86174cb9c38aafd2bd226
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 17:34:53 2019 +0100

    Update readme

commit 21f24784814092f44117ea2cb29b696422b66e93
Merge: 2e2be97c 94056af6
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:06:22 2019 +0100

    Merge branch 'master' into develop

commit 94056af6e84769c8e9ad394d49c0c235a6966772
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:06:05 2019 +0100

    Rename readme

commit 578018940241d894befdf90bb7b61672b0f7d055
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:05:52 2019 +0100

    Consistent readme

commit 2e2be97c2686bf919f06a47849902b80586cfa6c
Author: Dries Vints <[email protected]>
Date:   Fri Nov 1 13:53:14 2019 +0100

    Implement new primary key syntax (#5147)

commit b659069bced2435cc53fca6fd4290edcae5dd9e0
Merge: 89a80da1 bfd4b1e9
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:52:38 2019 +0000

    Merge branch 'master' into develop

commit bfd4b1e92f7c6b4e6b74cfdde995a5afad648d96
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:51:17 2019 +0000

    Update .styleci.yml

commit 89a80da13232c00d3e2ac8d8e372075086ced4fb
Merge: 9df12c3c 953b488b
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:12:48 2019 +0000

    Merge branch 'master' into develop

commit 953b488b8bb681d4d6e12227645c7c1b7ac26935
Author: Taylor Otwell <[email protected]>
Date:   Mon Oct 21 13:47:27 2019 -0500

    fix key

commit ba2f2abe830f5d03c52fd9c88411859cf863abd6
Author: Taylor Otwell <[email protected]>
Date:   Mon Oct 21 13:42:31 2019 -0500

    tweak formatting

commit ace38c133f3d8088fc7477f56b9db6fdc0098d06
Author: Michael Chernyshev <[email protected]>
Date:   Fri Oct 18 13:57:19 2019 +0300

    Security fix: Waiting before retrying password reset

commit 400df0b02bcc0e3fc8bc1c75ea494242c3f392af
Author: Gert de Pagter <[email protected]>
Date:   Wed Oct 16 15:18:19 2019 +0200

    Add xml schema to phpunit (#5139)

    This allows an IDE to do auto completion, and show any errors in the configuration

commit 9df12c3ca1c27f0192c64d19ce64b18ec06213d3
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 15 13:15:52 2019 -0500

    ignition doesn't support laravel 7 yet

commit bb969c61d41ec479adbe4a6da797831002b75092
Author: Nuno Maduro <[email protected]>
Date:   Tue Oct 8 22:44:05 2019 +0200

    Fixes required version of the framework within `composer.json` (#5130)

commit dfa5c1f06e11bc6a557a0ead78f38b997235802f
Merge: ccef55ba 39c28801
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 18:39:31 2019 +0200

    Merge branch 'master' into develop

commit 39c28801e8d8a8cfc99c3eed4756c6acc7367e0c
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 18:38:02 2019 +0200

    Update CHANGELOG.md

commit 9bc23ee468e1fb3e5b4efccdc35f1fcee5a8b6bc
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:35:48 2019 -0500

    formatting

commit d1f7a5a886039e28a434905447865ca952032284
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:27:05 2019 -0500

    formatting

commit bc82317a02e96105ad9f3cc0616d491cb5585c62
Merge: 51a1297a ba3aae6c
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:24:50 2019 -0500

    Merge branch 'password-confirmation' of https://github.com/driesvints/laravel into driesvints-password-confirmation

commit ba3aae6c338314c2ba1779f336278c2532071b7c
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 13:45:40 2019 +0200

    Implement password confirmation

commit 4036f17416549758816894dc52dc54eabcc13914
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 13:39:57 2019 +0200

    Remove middleware from password reset

    It's not necessary for the user to be logged out when resetting their password. This allows users to reset their password while logged in. Can be used in combination with the new RequiresPassword middleware.

commit 050c1d880ec1d48ef40d7a0f2b2f1040c23cebb9
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 11:26:03 2019 +0200

    Add new password rule language line

commit 51a1297a2486e2b68883bba9e534ec903f0c10d4
Author: Sangrak Choi <[email protected]>
Date:   Thu Sep 26 21:24:53 2019 +0900

    [6.x] Added OP.GG sponsor (#5121)

    * Added OP.GG sponsor

    * Update readme.md

commit c70c986e58fe1a14f7c74626e6e97032d4084d5f
Author: Roger Vilà <[email protected]>
Date:   Fri Sep 13 21:47:34 2019 +0200

    [6.x] Add 'null' logging channel (#5106)

    * Add 'none' logging channel

    * Remove extra spaces

    * Rename 'none' channel to 'null'

    * Update logging.php

commit 42e864f3f5f8fe5bfbdbac66dc2e4b95159fedcb
Author: Tim MacDonald <[email protected]>
Date:   Fri Sep 13 22:19:06 2019 +1000

    remove testing bootstrap extension (#5107)

commit cba8d19f8603fc409c2a72a0f33a4b0a7fab2ee5
Author: James Merrix <[email protected]>
Date:   Thu Sep 12 13:48:34 2019 +0100

    Added Appoly sponsor (#5105)

commit 56157b9cd201b5dc6fbe5f9f73014fa32e5a7838
Author: Graham Campbell <[email protected]>
Date:   Wed Sep 11 13:10:18 2019 +0100

    Revert "According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)" (#5102)

    This reverts commit 74d84e9371b2d2486edcc8f458adc9f22957d68b.

commit ccef55ba553f9eb6e6d1a13aa19c457aefb6463e
Merge: 1f48b2c5 7d728506
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 20:42:16 2019 +0200

    Merge branch 'master' into develop

commit 7d728506191a39394c5d1fcf47a822b9183f50ed
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 20:41:25 2019 +0200

    Update CHANGELOG.md

commit 1f48b2c5e83374b658f03ca8da5220a6980e3e11
Merge: 55b314ea e6569320
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:27:12 2019 +0200

    Merge branch 'master' into develop

commit e656932002588bcaaa94476f1ed1850747eb4708
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:26:00 2019 +0200

    Apply fixes from StyleCI (#5100)

commit 79fb6af96ebf0325cef15c3132157fdf75f6fd6c
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:25:19 2019 +0200

    Order imports alphabetically

commit 74d84e9371b2d2486edcc8f458adc9f22957d68b
Author: Patrick Heppler <[email protected]>
Date:   Mon Sep 9 20:51:51 2019 +0200

    According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)

    https://bugs.php.net/bug.php?id=78516
    Argon2 requires at least 8KB
    On PHP 7.4 memory 1024 will throw:
    password_hash(): Memory cost is outside of allowed memory range

commit 55b314eadb06164943dbf2ba33b21391441ce237
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:41:28 2019 +0200

    Update CHANGELOG.md

commit 00c00b87bef4bf7fbb7c132015e10a20bbcf4ce4
Merge: cb5047c2 4dbe9888
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:40:26 2019 +0200

    Merge branch 'master' into develop

commit 4dbe9888a5599c270e9131b76eca0ff3527bd350
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:39:25 2019 +0200

    Update CHANGELOG.md

commit 9f2f3b1eeecd79acffcce72977dc3b107e7d2b43
Merge: 31394de4 ca3f91e7
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:29:25 2019 +0200

    Merge branch '5.8'

commit ca3f91e7ed47780ad4128c0592f5966efe51246b
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:29:02 2019 +0200

    Update CHANGELOG.md

commit 8b96bf012871a2e977a4558bf069062c5f03de95
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:26:19 2019 +0200

    Update CHANGELOG.md

commit cb5047c200931d26142e78a315daad03c932f1fc
Merge: 2967197b 31394de4
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:03:17 2019 +0200

    Merge branch 'master' into develop

commit 31394de4d736c171d40bb03d50313c60b0e4af38
Author: Taylor Otwell <[email protected]>
Date:   Sat Sep 7 02:18:51 2019 +0200

    Revert "Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)" (#5095)

    This reverts commit 86908e1eb4a6cc8f5474b1355db4c104c548619e.

commit 4992230ca97551a0a2530e339898037b0ad5af81
Merge: 86908e1e 42936c65
Author: Taylor Otwell <[email protected]>
Date:   Fri Sep 6 13:43:32 2019 -0500

    Merge branch 'patch-1' of https://github.com/SjorsO/laravel into SjorsO-patch-1

commit 86908e1eb4a6cc8f5474b1355db4c104c548619e
Author: Patrick Heppler <[email protected]>
Date:   Fri Sep 6 14:16:32 2019 +0200

    Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)

    With the values
    ````
    'argon' => [
            'memory' => 1024,
            'threads' => 2,
            'time' => 2,
        ],
    ```
    Hash::make() produces password_hash(): Memory cost is outside of allowed memory range on PHP 7.4

commit 2967197b8e2db87768b5534ca923f4f3b15e18f1
Merge: af15fe5e 65959b25
Author: Dries Vints <[email protected]>
Date:   Fri Sep 6 13:14:50 2019 +0200

    Merge branch 'master' into develop

commit 42936c656c70dc39d71dae7e79a487a716f2b1a6
Author: Sjors Ottjes <[email protected]>
Date:   Fri Sep 6 08:17:43 2019 +0200

    style

commit 731cd4c499638138c3331572f726310354d1b1ea
Author: Sjors Ottjes <[email protected]>
Date:   Fri Sep 6 08:16:34 2019 +0200

    add phpunit extension

commit 360993c11eb1fa6d1f5a4eb89a08636f96ccf3ef
Author: Sjors Ottjes <[email protected]>
Date:   Thu Sep 5 16:10:59 2019 +0200

    Update bootstrap.php

commit 65959b25bf791ab7afeac2ffa5a29394638c688f
Author: Darren Craig <[email protected]>
Date:   Tue Sep 3 17:37:05 2019 +0100

    Allowing optional use of yml/yaml file extensions in .editorconfig (#5090)

commit af15fe5ec688f59522e898dc74e0de54d84c3d96
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:54:41 2019 +0200

    Revert "Bump PHPUnit"

    This reverts commit 5fde1337d629bd116602f2e67ead75988ae7568f.

commit 5fde1337d629bd116602f2e67ead75988ae7568f
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:54:00 2019 +0200

    Bump PHPUnit

commit 054bb43038f4acb7f356dd668715225ffc2e55ba
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:53:35 2019 +0200

    Laravel 7

commit 13ab419d59e2f0d2e188a5157a3cc17f72db595c
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 3 08:37:49 2019 -0500

    add ignition

commit 41ee35d01f4e57c47e924400db8a805089664141
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 3 08:37:29 2019 -0500

    add ignition

commit e6becd2ca35a650f51ed49525935e8ca65671152
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 27 16:26:48 2019 -0500

    add new failed driver option

commit 6ff5d6c7b8df5936aa310a5af0ff2fc2ca866708
Merge: 665dfc43 aa74fcb3
Author: Taylor Otwell <[email protected]>
Date:   Fri Aug 23 11:59:05 2019 -0500

    Merge branch 'master' into develop

commit 665dfc4328daeabaa496ac6a0743476348657585
Author: Dries Vints <[email protected]>
Date:   Thu Aug 22 15:22:14 2019 +0200

    [6.0] Use phpredis as default Redis client (#5085)

    * Use phpredis as default Redis client

    Follow up for https://github.com/laravel/framework/pull/29688

    It's best that we already start using `phpredis` as a default to discourage usage of Predis.

    * Update database.php

commit b67acda8928117dc3048180e53f29d09c775b908
Author: Christopher Lass <[email protected]>
Date:   Wed Aug 21 15:14:32 2019 +0200

    Rename 2019_08_19_175727_create_failed_jobs_table.php to 2019_08_19_000000_create_failed_jobs_table.php (#5082)

commit aa74fcb38f9f318159657ba5050eda62ec043b11
Author: Jess Archer <[email protected]>
Date:   Wed Aug 21 22:47:43 2019 +1000

    Remove manual adding of X-CSRF-TOKEN header (#5083)

    This is unnessecery code because Axios already automatically adds
    a X-XSRF-TOKEN header from the XSRF-TOKEN cookie encrypted value on
    same-origin requests. The `VerifyCsrfToken` middleware and Passport's
    `TokenGuard` already allow using the `X-XSRF-TOKEN` header.

commit b84bcc6446d6fb7515082824679f63c701c269fa
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 20 15:04:04 2019 -0500

    Update readme.md

commit 41e915ae9059ecbc8069b38554df1a4f73844161
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 20 15:03:32 2019 -0500

    Update readme.md

commit b7d2b48b75afbaa34c82688cb30be2f00a7d8c57
Author: Taylor Otwell <[email protected]>
Date:   Mon Aug 19 12:57:41 2019 -0500

    add failed jobs table

commit 051dea594118c87506f5f0a15b2af2cff49959b3
Author: Taylor Otwell <[email protected]>
Date:   Wed Aug 14 09:19:31 2019 -0500

    formatting

commit c07809e224a09366914964716eab911c595a9ceb
Merge: 4852f483 bb433725
Author: Dries Vints <[email protected]>
Date:   Wed Aug 14 13:49:52 2019 +0200

    Merge branch 'master' into develop

commit bb433725483803a27f21d3b21317072610bc3e9c
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 13 15:05:56 2019 -0500

    formatting

commit 83d2ecc0e9cca7ae6989134dede4a5653a19430b
Author: Dries Vints <[email protected]>
Date:   Tue Aug 13 18:19:40 2019 +0200

    Remove Stripe config settings

    These now ship with a dedicated config file for Cashier.

commit 4852f483466bdc83bac132421832d3eec07bcfaf
Author: Dries Vints <[email protected]>
Date:   Mon Aug 12 14:48:54 2019 +0200

    Remove deprecated language line (#5074)

commit a5111cf70f7cc057ed528a28ead6ab1eb48b7852
Merge: fad6ef3d d5691a2e
Author: Dries Vints <[email protected]>
Date:   Mon Aug 12 11:56:28 2019 +0200

    Merge branch 'master' into develop

commit d5691a2e6d8725d64d8569f9b1682012ced83eda
Author: Dries Vints <[email protected]>
Date:   Tue Aug 6 14:32:07 2019 +0200

    Add missing trailing semicolon

commit fad6ef3d4b932fdf0173136b353eb3ce853e2c76
Author: Chuck Rincón <[email protected]>
Date:   Fri Aug 2 15:54:12 2019 -0500

    [6.0] - Add vapor link on the welcome view (#5072)

commit 8f2a27868f7f9e0a0bbf69fa83d06b8a7a1b7894
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 30 16:40:52 2019 -0500

    formatting

commit e21657dc5a45299b3c72007d0a9a6f42c3461d14
Merge: 5391ccca 8ca56226
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 30 16:36:53 2019 -0500

    Merge branch 'config_caching_v2' of https://github.com/timacdonald/laravel into timacdonald-config_caching_v2

commit 5391cccaad03f0c4bf8d49bfdd0f07fcf7e79f2d
Author: Dries Vints <[email protected]>
Date:   Mon Jul 29 11:22:12 2019 -0400

    Update version constraint (#5066)

commit 0dd31baf2a153629d7c84b0fb2cc69f575b0d376
Merge: 7c9e5ea4 f73795ac
Author: Dries Vints <[email protected]>
Date:   Thu Jul 25 00:49:45 2019 -0400

    Merge branch 'master' into develop

commit f73795ac0569554d3464eecb259aef0d2dc64f72
Author: Ryan Purcella <[email protected]>
Date:   Thu Jul 18 08:20:32 2019 -0500

    Update number of Laracasts videos (#5063)

commit ddbbd0e67b804c379f212233e3b1c91a7b649522
Author: Guilherme Pressutto <[email protected]>
Date:   Tue Jul 16 16:38:28 2019 -0300

    Using environment variable to set redis prefix (#5062)

    It was the only redis setting that wasn't overridable by an environment variable. It can help if you have multiple instances using the same `APP_NAME`, e.g. a staging instance

commit ff15a66d8c8d989ce6e1cee6fcc06c4025d06998
Author: Artem Pakhomov <[email protected]>
Date:   Mon Jul 15 19:41:13 2019 +0300

    Fixed lodash version (CVE-2019-10744) (#5060)

commit 7c9e5ea41293b63e051bd69f7929f8712893eea1
Author: Gergő D. Nagy <[email protected]>
Date:   Fri Jul 12 15:59:55 2019 +0200

    [5.9] Add ThrottleRequests to the priority array (#5057)

    * add ThrottleRequests to the priority array

    * Move ThrottleRequests under Authenticate middleware

commit afb7cd7311acd6e88a2c7faccdb8181583488d25
Author: Miloš Gavrilović <[email protected]>
Date:   Thu Jul 11 17:03:22 2019 +0200

    update deprecated pusher option (#5058)

commit e71f50f664b5b6a6ffbeffac668717bb40c36d93
Author: Gary Green <[email protected]>
Date:   Wed Jul 10 16:11:28 2019 +0100

    Move TrustProxies to highest priority - fixes maintenance mode ip whitelist if behind proxy e.g. Cloudflare (#5055)

commit 8ca562265e9efdd3548b4a1573156d8f185d378e
Author: Tim MacDonald <[email protected]>
Date:   Tue Jul 9 13:05:55 2019 +1000

    style fix

commit 56960ed2a0f5674c9906ce0b3e7dc67925bbce29
Author: Tim MacDonald <[email protected]>
Date:   Fri Jul 5 14:20:33 2019 +1000

    introduce test bootstrapping

commit 78143a1ea02ee1b63e04df3fcaa32bed3637a5ce
Merge: fc39b073 386a4e5c
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 27 20:01:41 2019 -0500

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit fc39b073f3f61a22f1b48329e294ebb881700dbe
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 27 19:57:39 2019 -0500

    remove ui scaffolding

commit 386a4e5c9257612685e0e0b2e4904c3d576da3c3
Merge: 61a0829f ebc6f6e2
Author: Graham Campbell <[email protected]>
Date:   Fri Jun 21 14:24:52 2019 +0100

    Merge branch 'master' into develop

commit ebc6f6e2c794b07c6d432483fd654aebf2ffe222
Author: Sjors Ottjes <[email protected]>
Date:   Tue Jun 18 12:18:58 2019 +0200

    Update .gitignore (#5046)

commit 61a0829f4338ae36e4f9a203e82e69726299be4d
Merge: f053116c 6f3d68f6
Author: Taylor Otwell <[email protected]>
Date:   Tue Jun 4 08:10:42 2019 -0500

    Merge branch 'master' into develop

commit 6f3d68f67f3dab0e0d853719696ede8dfd9cc4e1
Author: Taylor Otwell <[email protected]>
Date:   Tue Jun 4 08:10:26 2019 -0500

    use generic default db config

commit 014a1f0f5e1e757b8669c2ae6e78c49fc8b2978d
Author: ziming <[email protected]>
Date:   Fri May 31 20:54:50 2019 +0800

    Update axios package (#5038)

    Update axios in package.json to ^0.19 so that I don't get security vulnerability notification emails from Github when I push to my laravel project repos even though ^0.18 covers 0.19 as well

commit bf60f7f74f9578902650c30887190f86515a1037
Author: Antoni Siek <[email protected]>
Date:   Thu May 30 18:22:45 2019 +0200

    Added support for new redis URL property in config/database.php (#5037)

    Regarding laravel/framework#28612

commit f053116c5680e77c3a6c73afd193984a17ea482d
Author: Taylor Otwell <[email protected]>
Date:   Thu May 30 08:07:52 2019 -0500

    remove dumpserver since doesn't work on 5.9

commit 953093795869beb658bdd9be9442188f39e62b6a
Author: Kristoffer Högberg <[email protected]>
Date:   Wed May 29 16:12:30 2019 +0200

    Add DYNAMODB_ENDPOINT to the cache config (#5034)

    This adds the DYNAMODB_ENDPOINT environment variable to the
    dynamodb store of the cache cofig.

    Its usage is implemented in the framework as laravel/framework#28600

commit a7a1f44018d781848f15875dfe34a09ed8b6dd03
Merge: 1c824f6f 762e987e
Author: Dries Vints <[email protected]>
Date:   Tue May 21 15:16:00 2019 +0200

    Merge branch 'master' into develop

commit 762e987e5bc4c87fb75f7868f967ec3d19a379e0
Author: Dries Vints <[email protected]>
Date:   Tue May 21 15:15:32 2019 +0200

    Uppercase doctype

    In similar fashion as https://github.com/laravel/framework/pull/28583

commit 1c824f6f9f6e7a3f7ddb98ad80ffdbdbf98c81e1
Merge: c9bb74c7 f8e455e3
Author: Dries Vints <[email protected]>
Date:   Tue May 21 13:41:13 2019 +0200

    Merge branch 'master' into develop

commit f8e455e358046e59deb17b555b8949059a38ff77
Author: Matt Hanley <[email protected]>
Date:   Tue May 14 14:28:37 2019 +0100

    Fix type hint for case of trusting all proxies (string) (#5025)

commit 93c687418963f7c99b641fda905015054c785eb4
Author: Jason McCreary <[email protected]>
Date:   Thu May 9 20:07:43 2019 -0400

    Add ends_with validation message (#5020)

commit c9bb74c7e01cffbb5e185990acecf3fcab7f5eda
Author: Taylor Otwell <[email protected]>
Date:   Wed May 8 08:06:25 2019 -0500

    formatting

commit fe9f8497d98ec0fa6a7d43a2ae4127285b777065
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:57:29 2019 +0200

    Remove services deleted from core

    See https://github.com/laravel/framework/pull/28441 and https://github.com/laravel/framework/pull/28442

commit 7e6af5c031988e7a7c576c6bbbd1747ddfe548cc
Merge: f70fff8a fbd3ad7b
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:52:54 2019 +0200

    Merge branch 'master' into develop

commit fbd3ad7bbb5e98c607f19f7c697552863363bde4
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:19:27 2019 +0200

    Update changelog

commit b0e0bdc060ce068b73371919b904f3c7f0c1cfa6
Author: Taylor Otwell <[email protected]>
Date:   Tue May 7 07:38:15 2019 -0500

    formatting

commit 1086e26b32fb828ee74c8848246788a26bad72d7
Author: Mathieu TUDISCO <[email protected]>
Date:   Tue May 7 13:49:22 2019 +0200

    Update database config relating to Url addition.

commit 4b78ba61eac32cefa41da09149e0500e23cb06ec
Merge: 65f82710 af15618b
Author: Taylor Otwell <[email protected]>
Date:   Mon May 6 08:30:56 2019 -0500

    fix conflicts

commit 65f8271032c113883fb3f1e8e7b3279821148ad1
Author: Taylor Otwell <[email protected]>
Date:   Mon May 6 08:30:33 2019 -0500

    update version

commit af15618b577be04fc999e3f11880d05f030d39ce
Merge: a6bf2413 ccea56b6
Author: Dries Vints <[email protected]>
Date:   Tue Apr 30 14:02:22 2019 +0200

    Merge pull request #5013 from laravel/revert-5012-feature/exported-files

    Revert "Exclude StyleCI config from exported files"

commit ccea56b6f910649d8a6ee25f61896d2b96e90496
Author: Dries Vints <[email protected]>
Date:   Tue Apr 30 14:02:09 2019 +0200

    Revert "Exclude StyleCI config from exported files (#5012)"

    This reverts commit a6bf24134d99be79e77b8969186b9f46ffee075a.

commit a6bf24134d99be79e77b8969186b9f46ffee075a
Author: Roberto Aguilar <[email protected]>
Date:   Mon Apr 29 16:21:59 2019 -0500

    Exclude StyleCI config from exported files (#5012)

    I noticed that this file was being included when i ran the
    `laravel new` command and even though some developers will run StyleCI,
    the purpose of this file seems more like it ensures the repository
    quality rather than providing an starting point for this service.

commit 3995828c13ddca61dec45b8f9511a669cc90a15c
Author: Diego <[email protected]>
Date:   Fri Apr 26 09:26:45 2019 -0300

    [5.9] Minor grammar fix in readme.md (#5010)

    * Fix grammar ('Boost *your* skills')

    * Update readme.md

commit f70fff8ad236374f66719b010fc5eea477c581e8
Merge: cedcbc86 50176732
Author: Dries Vints <[email protected]>
Date:   Thu Apr 25 13:28:34 2019 +0200

    Merge branch 'master' into develop

commit 50176732d66b197de62d5567b79fc77f63e2cfbd
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 24 07:38:42 2019 -0500

    Apply fixes from StyleCI (#5006)

commit 12a4885a47fbd272a4a942d49d7b1eb1b42f2b19
Author: Stefan Bauer <[email protected]>
Date:   Wed Apr 24 14:38:18 2019 +0200

    Fix phpdoc to order by syntax convention (#5005)

    Reorder the `@var` phpdoc syntax by convention, see http://docs.phpdoc.org/references/phpdoc/tags/var.html

commit 60db703a27bb09d0a51023131f850d5d424997db
Author: Graham Campbell <[email protected]>
Date:   Tue Apr 23 13:44:51 2019 +0100

    [5.8] Enable JS on StyleCI (#5000)

    * Enable JS on StyleCI

commit cedcbc863d4ae224430b83aa8c8e2781715ac3c5
Merge: bdc205c8 f574aa76
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 21:26:54 2019 +0200

    Merge branch 'master' into develop

commit f574aa76e3e1b8b1d77469e37d2857e27da14379
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 21:26:44 2019 +0200

    Disable JS checks for now

commit bdc205c830186eedc45fb03412c07aa14355d482
Merge: e80327f2 81fba471
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:07:04 2019 +0200

    Merge branch 'master' into develop

commit 81fba471aff24793be8ee3ee0d303d2b31056df2
Merge: 43b09ad0 91dc5ed2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:06:16 2019 +0200

    Merge pull request #4998 from laravel/analysis-z9QV6a

    Apply fixes from StyleCI

commit 43b09ad0f326584d56d20fc0cf2bef99b83af877
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:06:06 2019 +0200

    Add file exclusions for styleci

commit 91dc5ed2869b5905a01b0b85d70f33bbd9267b93
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 14:06:03 2019 +0000

    Apply fixes from StyleCI

commit 597201a049a0d1920533e5d0970a8283898becd3
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 15:55:40 2019 +0200

    Add StyleCI config

commit 06162adc9839ada8b2525e006bef6b80914296d6
Merge: 0f58190c ef1ce665
Author: Taylor Otwell <[email protected]>
Date:   Sun Apr 14 15:41:37 2019 -0500

    Merge pull request #4990 from SjorsO/patch-1

    Add IDE typehint to UserFactory

commit ef1ce665eef55e90952cd606ae120cf8c619822d
Author: Sjors Ottjes <[email protected]>
Date:   Sun Apr 14 13:30:53 2019 +0200

    Update UserFactory.php

commit 0f58190c7ba955cf7a58b47a9469bf4c6c992abb
Merge: 20cdf65a 14b0a07d
Author: Dries Vints <[email protected]>
Date:   Fri Apr 12 12:06:24 2019 +0200

    Merge pull request #4989 from DrewRoberts/update-readme-laracasts

    Update readme with Laracasts count

commit 14b0a07d79a60ef45ce5b26f8b1c34ab9274dba7
Author: DrewRoberts <[email protected]>
Date:   Fri Apr 12 01:34:48 2019 -0400

    Update readme with Laracasts count

commit 20cdf65ae61ca7cfa45292d3dd642a252147ecc8
Merge: 005ec130 1bed031c
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 10 07:31:29 2019 -0500

    Merge pull request #4987 from DivineOmega/patch-1

    [5.8] Remove underscore from cache prefix

commit 1bed031c1f7cfcfeadf497934d301987c53b1e6e
Author: Jordan Hall <[email protected]>
Date:   Wed Apr 10 12:01:28 2019 +0100

    Remove underscore as cache prefixes automatically have a colon appended to them

commit 005ec1301e3600c0a5d5a8355495d4333cab138b
Merge: 35374927 3cbc5ac6
Author: Taylor Otwell <[email protected]>
Date:   Mon Apr 8 07:47:02 2019 -0500

    Merge pull request #4986 from DivineOmega/patch-1

    [5.8] Add underscores to cache and redis database prefixes

commit 3cbc5ac640022cb4e3fcad7fc50e2086d32af6ae
Author: Jordan Hall <[email protected]>
Date:   Mon Apr 8 08:52:06 2019 +0100

    Additional underscore on cache prefix

commit 159b0e79cd5b26bc7cd4699113951599a5b5d6d0
Author: Jordan Hall <[email protected]>
Date:   Mon Apr 8 08:50:48 2019 +0100

    Additional underscore on redis database prefix

commit 35374927bd570d578f7db4a715f2a64a2ce561c1
Merge: ae44ee00 e68ff0c6
Author: Taylor Otwell <[email protected]>
Date:   Fri Apr 5 08:55:41 2019 -0500

    Merge pull request #4982 from DivineOmega/patch-1

    [5.8] Prefix redis database connection by default

commit e68ff0c66aa1b3da2c9a14d86636d582fd73891e
Author: Jordan Hall <[email protected]>
Date:   Thu Apr 4 22:18:28 2019 +0100

    Use Str class instead of helper function

commit c8bc79e94ee7f4a992d70faa5ec140a9059e603f
Author: Jordan Hall <[email protected]>
Date:   Thu Apr 4 15:11:18 2019 +0100

    Prefix redis database connection by default to mitigate multiple sites on the same server potentially sharing the same queued jobs

commit ae44ee0059f6218aab26de5551b19f70329f8832
Merge: 3886012c 88636c22
Author: Taylor Otwell <[email protected]>
Date:   Mon Apr 1 10:54:27 2019 -0700

    Merge pull request #4979 from hyperhost/add-hyper-host-sponsor

    Added Hyper Host sponsor

commit 88636c2268aa5dada08a2cd08c098bd9d25880f4
Author: Tony James <[email protected]>
Date:   Mon Apr 1 16:23:23 2019 +0100

    Added Hyper Host sponsor

    Added Hyper Host name and url

commit 3886012c0f3ad5653d9d5138530f3fc4276eaf93
Merge: 4997f081 ccc1457e
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 24 08:11:19 2019 -0700

    Merge pull request #4971 from Lenophie/patch-1

    Ignore SQLite journals

commit ccc1457e572f7ec5b2b596436622f69e94bbf635
Author: Lenophie <[email protected]>
Date:   Sun Mar 24 12:01:21 2019 +0100

    Ignore SQLite journals

commit e80327f29926869b34aa4ba92d59324ce75cac09
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:25:28 2019 +0100

    Update changelog

commit cfd5929785845000f26db851b94675d6154737b9
Merge: 53b59cd0 4997f081
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:23:52 2019 +0100

    Merge branch 'master' into develop

commit 4997f08105d6fb941b1ed2c749ebd2f55fba5a74
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:22:48 2019 +0100

    Update changelog

commit 3b852a1f7f292953f47df64563cc01188db336ff
Merge: 3d325b84 54cd6d90
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 8 08:03:29 2019 -0600

    Merge pull request #4963 from chapeupreto/patch-1

    [5.8] upgrade the collision dependency from v2 to v3

commit 54cd6d90bbe317040a0195e09c4fc40318bb988d
Author: Rod Elias <[email protected]>
Date:   Thu Mar 7 23:20:15 2019 -0300

    upgrade the collision dependency from v2 to v3

commit 3d325b8485591bc77d1073f7aa73596acb76ec23
Author: Dries Vints <[email protected]>
Date:   Tue Mar 5 15:12:04 2019 +0100

    Update changelog

commit 3001f3c6e232ba7ce2ecdbdfe6e43b4c64ee05ad
Author: Taylor Otwell <[email protected]>
Date:   Thu Feb 28 14:31:42 2019 -0600

    check if extension loaded

commit a0f6bcc773f3895db0ca4a85101b9a3ef2f95782
Author: Taylor Otwell <[email protected]>
Date:   Thu Feb 28 08:34:10 2019 -0600

    comment out options

commit f4ff4f4176f7d931e301f36b95a46285ac61b8b8
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 27 07:24:37 2019 -0600

    comment

commit d4d4a69b76d1dfd87b47b7a51b4c0e2aed992793
Merge: f84a69ee b34328a1
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 27 07:20:20 2019 -0600

    Merge pull request #4956 from akalongman/master

    [5.8] Use correct env name for AWS region from env.example

commit b34328a16654d09461fa53f8c681c15fe4e35095
Author: Avtandil Kikabidze <[email protected]>
Date:   Wed Feb 27 14:05:01 2019 +0400

    Use correct env name for AWS region from env.example

commit f84a69ee852bd44363042a61995d330574b6b8c3
Author: Taylor Otwell <[email protected]>
Date:   Tue Feb…
totoprayogo1916 added a commit to totoprayogo1916/OpenDK that referenced this pull request Sep 5, 2023
commit 3923e7f7c40368a5e78c1a33610191be8ad91e3b
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:17:45 2020 +0100

    Update CHANGELOG.md

commit ff355973475624d9dc9ed5fd157a0ba0bef84710
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:16:23 2020 +0100

    Lower ignition constraint

commit 509708c7ee04dde4214edcf60fe3752f0d54d91d
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 16:03:50 2020 +0100

    Update CHANGELOG.md

commit 8ae2d8ec1e4b86c77e9352f3b32e79ebfa62ed82
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:53:46 2020 +0100

    Bump ignition and collision

commit 3c4eac92baaf98b7d42d7dcf713bbdc017a5c6ab
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:48:42 2020 +0100

    Bump Guzzle

commit 45fa128adbc2c36870f36bc9396a850508fb8c5b
Merge: 9af70cff d85be866
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:43:30 2020 +0100

    Merge branch '6.x' into 7.x

commit d85be8669880cce457eb5827afbedb6ad30bb629
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:40:46 2020 +0100

    Update CHANGELOG.md

commit 31fbf612efd8e6291453c14d1d8a5377a6870792
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:39:45 2020 +0100

    Bump fideloper/proxy

commit eb34def26a617cc48813d137dccab4994b555d61
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:38:43 2020 +0100

    Bump tinker

commit d906d7b86006d65b3ab74c890d2a23b24a7d7a18
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:27:02 2020 +0100

    Update phpunit constraints

commit f363bc30e18b60612ef77a40a4f169c633fd04ac
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 14:59:24 2020 +0100

    Bump ignition

commit 9af70cffa4bdc5d5e4d7b96e9fa7fb98969b12c9
Merge: 482d68a1 27338d9a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:01:22 2020 +0100

    Merge branch '6.x' into 7.x

commit 27338d9a99b63bb180c6c2ba6a9585ab1d10bf78
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:00:39 2020 +0100

    Allow PHPUnit 9

commit 482d68a182bdd629e5d4d3c19d5d7d7623dd074a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:26:10 2020 +0100

    Update CHANGELOG.md

commit 02ca853809a97f372a3c6dc535c566efff9f6571
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:59 2020 +0100

    Nump minimum Laravel version

commit 056a9e8f903860a066190b6a45b56436d6c64531
Merge: 9b21125e aef279a6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:32 2020 +0100

    Merge branch '6.x' into 7.x

commit aef279a6cf04b47ac7aa279e37240a683bdcf5e6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:17:39 2020 +0100

    Update CHANGELOG.md

commit b8d582581a1067e3b1715cce477b22455acc3d36
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:16:58 2020 +0100

    Update minimum Laravel version

commit a4d45e6940ec6565ac1ea55cad117082876396ad
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:15:43 2020 +0100

    Update CHANGELOG.md

commit 9b21125e31232d29231c60067c6df42e9554715b
Merge: 533f130f 4c25cb95
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:18:17 2020 +0100

    Merge branch '6.x' into 7.x

commit 4c25cb953a0bbd4812bf92af71a13920998def1e
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:17:46 2020 +0100

    Allow for PHP 8

commit 533f130f1429986313966c39511690e23cc42431
Merge: 4eeb29ee 3d46fc35
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 15:01:36 2020 +0100

    Merge branch '6.x' into 7.x

commit 3d46fc355d70db2462815b62139f8b0a0f3a16c3
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:54:45 2020 +0100

    Update Faker (#5461)

commit 22fa816fdf80a0bd821a4249358dd921ed76fb1a
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:11:46 2020 +0100

    Delete removed webpack flag (#5460)

commit aeec665b75258eea6cc03df1945e60f066183305
Author: Dries Vints <[email protected]>
Date:   Thu Oct 22 14:31:01 2020 +0200

    Update composer.json (#5452)

commit 4eeb29ee12e980969e8d9f2a1cd465e514a0f76e
Author: Dries Vints <[email protected]>
Date:   Mon Sep 21 17:59:16 2020 +0200

    Update changelog

commit b9b282a71933e0279fea63fa0302e9a30a4c2efe
Author: Youri Wijnands <[email protected]>
Date:   Tue Sep 8 14:50:51 2020 +0200

    Use the new Google Fonts API (#5396)

    https://developers.google.com/fonts/docs/css2

commit a7a40d77447358a57da02f202563c50344dc5a44
Merge: dc5817bb 179e52bd
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:28:00 2020 +0200

    Merge branch '6.x' into master

commit 179e52bdd719fb456ed49a2bf8e42f922a6f5da2
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:27:47 2020 +0200

    Fix logo

commit dc5817bbf2552b48d93bde99688d56e99b7a7708
Author: Dries Vints <[email protected]>
Date:   Fri Sep 4 10:39:28 2020 +0200

    Update Handler.php

commit 2c69ec987e2dca71008684fc80bbe56c55427dc3
Merge: fa43c0a3 921b14b9
Author: Graham Campbell <[email protected]>
Date:   Wed Aug 26 09:39:37 2020 +0100

    Merge branch '6.x' into master

commit fa43c0a333d623a393fa33c27a1376f69ef3f301
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:44:47 2020 +0200

    Update CHANGELOG.md

commit 921b14b954d51125b8369299a6ba18d78735367d
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:16:01 2020 +0200

    Update CHANGELOG.md

commit 39a58710ba3e5aff0b3588fe748fa24e066d17b0
Merge: b3f60041 0512f006
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:08:41 2020 +0200

    Merge pull request #5370 from laravel/bump-7

    [7.x] Set framework version ^7.24

commit bbd36167158f29148095085fa81fed211ad676d2
Merge: 407b6b8b e96840e2
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:07:55 2020 +0200

    Merge pull request #5369 from laravel/bump-6

    [6.x] Set framework version ^6.18.35

commit 0512f00664445c452abbb470b9aaf4a0c7f78b26
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:29:43 2020 +0100

    Set framework version ^7.24

commit e96840e20673ed87e684b8ee814bdf02c1c8dfcc
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:28:47 2020 +0100

    Set framework version ^6.18.35

commit b3f600415d3d1eb35c3f0f66e40ffa32c4bc77f0
Merge: a7b70fcc 407b6b8b
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 11:09:47 2020 +0100

    Merge branch '6.x' into master

commit 407b6b8b04820a7fc0eb3143a8255abbeabb3eb9
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:52:00 2020 +0100

    Revert "Apply fixes from StyleCI (#5356)" (#5357)

    This reverts commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560.

commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:49:11 2020 +0100

    Apply fixes from StyleCI (#5356)

commit 0e7fd2beb18e6f5c0213b0f162611d5e75ce42f4
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:59:20 2020 +0200

    Fix version

commit a7b70fcc310fee9d78448e078fef9003150ee8aa
Author: Taylor Otwell <[email protected]>
Date:   Mon Jul 27 10:57:16 2020 -0500

    fix version

commit 074c3840ff6be2c562d97ec0d68a04b0699493a1
Merge: f465c511 b1277e2e
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:34:05 2020 +0200

    Merge pull request #5355 from laravel/bump

    [6.x] Bumped laravel 6 min version for new LTS users

commit b1277e2eb2e586b3cb09bbf545aa7fab0a4fd0ca
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 16:23:43 2020 +0100

    Bumped laravel 6 min version for new LTS users

commit e9e7c972661668f4a4c747e951c6e7ce8e3adf15
Author: rennokki <[email protected]>
Date:   Mon Jul 27 18:18:18 2020 +0300

    [7.x] Enforce ^7.22.1 due to security issues (#5354)

    * enforce ^7.22

    * Update composer.json

    Co-authored-by: Dries Vints <[email protected]>

commit 791c87a80d1c5eebd75e1bf499f86899d6b2b26f
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:11:30 2020 -0500

    Update README.md

commit 232995cac214bf1fdff4278aa7904d65df3ae899
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:07:41 2020 -0500

    Update README.md

commit f465c511c009235fc7bfa06bfcb41294e60e9b42
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 6d9296c71edc3def466d3cab501b7d1f9b6717d2
Merge: 311c3f82 5f462521
Author: Dries Vints <[email protected]>
Date:   Mon Jul 20 16:15:08 2020 +0200

    Merge pull request #5346 from ahinkle/patch-1

    Bump lodash from 4.17.13 to 4.17.19

commit 5f46252168977e8850b555da057406a835a9b1f9
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 311c3f823a6f09df5e9b882906456e9caa02132c
Author: Taylor Otwell <[email protected]>
Date:   Fri Jun 12 09:35:55 2020 -0500

    tweak phpunit.xml

commit 74df1e26e639f0527429fba8185b743e6538d3ac
Merge: 6e5f4093 2f33300a
Author: Dries Vints <[email protected]>
Date:   Fri Jun 12 10:36:11 2020 +0200

    Merge pull request #5320 from barryvdh/patch-4

    Bump fruitcake/laravel-cors

commit 2f33300abe3684a42acd2d9dce35569e988d9c13
Author: Barry vd. Heuvel <[email protected]>
Date:   Fri Jun 12 08:50:58 2020 +0200

    Bump fruitcake/laravel-cors

commit 6e5f40939ce15d731276b2ad6e5fd08057faa79a
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 3 08:30:51 2020 -0500

    Update README.md

commit 9e5ba571a60a57ca2c3938bc5bd81d222cb6e618
Author: Taylor Otwell <[email protected]>
Date:   Thu May 28 10:08:01 2020 -0500

    add password reset migration

commit 5639581ea56ecd556cdf6e6edc37ce5795740fd7
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 16:50:22 2020 -0500

    add basic trust host middleware

commit c10489131ef28ecd46529e37b558ae93a20e3fb8
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 10:47:20 2020 -0500

    fix formatting

commit 7b0b5d8310143269d8de50442499b77187f8ee5a
Author: Ryan England <[email protected]>
Date:   Thu May 14 14:50:14 2020 +0100

    Update sponsor link (#5302)

    British Software Development have rebranded to Many, link and link text updated accordingly.

commit 7d62f500a789416738a7181d5217d33ca096db04
Author: feek <[email protected]>
Date:   Mon May 4 06:31:39 2020 -0700

    chore: update typehint to be nullable (#5296)

    By default, this property is null. Therefore, it should be marked as nullable

commit 0f133c1e8eff44d765a40fc1934172e7bf046e56
Author: fragkp <[email protected]>
Date:   Fri May 1 16:35:51 2020 +0200

    set default auth_mode for smtp mail driver (#5293)

    Co-authored-by: KP <[email protected]>

commit 785405b34b3fcf9be0ab1262c4eaa72569fac218
Merge: 3cdfe0ce d7d342c2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 27 16:32:54 2020 +0200

    Merge branch '6.x'

commit d7d342c2f546576524e449c1fae69dbc885a21c2
Author: Nabil Muh. Firdaus <[email protected]>
Date:   Mon Apr 27 20:38:20 2020 +0700

    Disable webpack-dev-server host check (#5288)

commit 3cdfe0ce952c0b202150855b2f846996ebd4ba4a
Merge: b5f008a8 8aab222c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:47:28 2020 +0200

    Merge branch '6.x'

commit 8aab222c12ea63711e3b6b41b23c6b6f2231588c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:45:26 2020 +0200

    Update CHANGELOG.md

commit b5f008a8bff29219800b465e613bc19a191ac815
Author: Dries Vints <[email protected]>
Date:   Wed Apr 15 13:46:52 2020 +0200

    Update CHANGELOG.md

commit 103fc0b4513d9ffbc33ebb31f74f9fba81d2b100
Merge: 5f9ee30e 0d23e5f7
Author: Dries Vints <[email protected]>
Date:   Tue Apr 14 10:58:32 2020 +0200

    Merge pull request #5278 from voyula/patch-1

    [7.x] Normalize Style

commit 0d23e5f761c0cc98318e883dbce13a43a3c13226
Author: Musa <[email protected]>
Date:   Tue Apr 14 11:56:29 2020 +0300

    [7.x] Normalize Style

    See: https://github.com/laravel/framework/blob/7.x/phpunit.xml.dist#L14

commit 5f9ee30e379390f9ce506d934314cb6ff6d7d355
Author: Igor Finagin <[email protected]>
Date:   Thu Apr 9 19:03:28 2020 +0300

    Disable Telescope in PHPUnit (#5277)

    PHPUnit throw exception when Telescope is enabled

commit e2c9261c2dfe2d0d0456c8ad113d147cce153885
Merge: 2a2522d8 73f723a2
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:56:58 2020 +0200

    Merge branch '6.x'

commit 73f723a2f4153f87b3d45d23addc0923f233de57
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:54:25 2020 +0200

    Add both endpoint and url env variables (#5276)

commit 2a2522d8824c0852e30a7e3e07d46a543eb4b33d
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 29 10:38:29 2020 -0500

    fix wording

commit f140d926d3c24e854578a9eb6a2b2f7fe763abf5
Merge: dccc9334 b26aaff2
Author: Dries Vints <[email protected]>
Date:   Sat Mar 28 11:57:59 2020 +0100

    Merge pull request #5271 from winter-ice/master

    [7.x] Consistent filename

commit b26aaff2100e3f01aee0dc96ad7657ddd2d5a07c
Author: ice <[email protected]>
Date:   Sat Mar 28 09:53:47 2020 +0800

    consistent filename

commit dccc933416c7f3a9bf9824fd8515b2daa51f6973
Merge: 6628b7a1 d067d7d8
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:31:42 2020 +0100

    Update CHANGELOG.md

commit d067d7d889e69d28e609534e3c5cdf5773462df9
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:26:16 2020 +0100

    Update CHANGELOG.md

commit 6628b7a1b48c2f559ec01b9e8e77872b63e0fb70
Merge: d82bf976 b7b6e35b
Author: Graham Campbell <[email protected]>
Date:   Tue Mar 24 13:55:12 2020 +0000

    Merge branch '6.x'

commit b7b6e35bf88f346832bdd32b71ca7ed4f0ceddd5
Author: Jacob Honoré <[email protected]>
Date:   Tue Mar 24 14:11:36 2020 +0100

    Fix s3 endpoint url reference (#5267)

commit d82bf9768b5d486d08159c191bec8a3d7b426436
Author: Markus Podar <[email protected]>
Date:   Sun Mar 15 17:25:50 2020 +0100

    [7.x] Allow configuring the timeout for the smtp driver (#5262)

    * Allow configuring the timeout for the smtp driver

    The default is the same as in `\Swift_Transport_EsmtpTransport::$params`

    * Corrected default

    * Update mail.php

    Co-authored-by: Graham Campbell <[email protected]>
    Co-authored-by: Taylor Otwell <[email protected]>

commit 52f69fcf2529501bed81b2bc5b036c4edd729cd5
Author: Taylor Otwell <[email protected]>
Date:   Sat Mar 14 16:07:23 2020 -0500

    add sponsor link

commit f93f4ad8bf114116a7c6917e7da155b5656463af
Author: Mathieu TUDISCO <[email protected]>
Date:   Fri Mar 13 20:53:56 2020 +0100

    Fix session config changes (#5261)

    * Fix session config changes

    * Update session.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit 166abfa35c535f4572d5971a99aec45cc8c63ff6
Author: Barry vd. Heuvel <[email protected]>
Date:   Wed Mar 11 21:08:52 2020 +0100

    Update default CORS config (#5259)

commit c7a0002432351690d28223afa7caa272e769e226
Author: André Ricard <[email protected]>
Date:   Wed Mar 11 09:37:46 2020 -0300

    Fix the code indent of object operators (#5258)

    This commit fixes the code indent of object operators, as following the framework code standards -> 2.4. Indenting

commit b0ce2adc423ff175a20838ee5f2c858cbc63b11f
Author: Roberto Aguilar <[email protected]>
Date:   Fri Mar 6 15:16:30 2020 -0600

    Add new SQS queue suffix option (#5252)

    As described in laravel/framework#31784, this option will allow to
    define a queue name suffix.

commit 641fcfb60aa47266c5b4767830dc45bad00c561c
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 6 07:57:11 2020 -0600

    remove config entry

commit 36373983adaea3a021ef968b99de038b1fc4f55c
Merge: 3aa22403 5ddbfb84
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:48:34 2020 +0000

    Merge branch '6.x'

commit 5ddbfb845439fcd5a46c23530b8774421a931760
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:47:59 2020 +0000

    Ensure that app.debug is a bool

commit 3aa22403c7d865049a735c51fadf60add498840e
Author: Taylor Otwell <[email protected]>
Date:   Wed Mar 4 16:45:31 2020 -0600

    remove empty line from phpunit.xml (#5245)

    I'm not sure if there's a style rule for this, but it seems very out of place to be the only empty line in the whole file.

commit efcf74f422b381a69da8f673061eb94487e6f557
Author: Mark van den Broek <[email protected]>
Date:   Wed Mar 4 15:05:25 2020 +0100

    [7.x] Add Mailgun and Postmark mailer (#5243)

    * Add Mailgun and Postmark mailer

    * Formatting

    * Update mail.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit c9cf57a00c76c58afec25a822846f0798661e372
Author: Benedikt Franke <[email protected]>
Date:   Wed Mar 4 15:04:39 2020 +0100

    Add serialize option to array cache config (#5244)

    This documents the new configuration option from https://github.com/laravel/framework/pull/31295

commit 876142d709b99af0211315c4a8e8f93f38790f25
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 20:42:38 2020 +0100

    Update CHANGELOG.md

commit 2d7b45bfb465d838a9f670e35738ac13166410e9
Merge: 672f626d e773d388
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 18:18:11 2020 +0100

    Merge branch '6.x'

commit e773d3885b30ec77c8f0a3bbca31c914b80d3762
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 18:15:59 2020 +0100

    Update CHANGELOG.md

commit 672f626da1788a46bf6bc830d15725ee3ae668d8
Author: Maxime Willinger <[email protected]>
Date:   Mon Mar 2 17:52:06 2020 +0100

    Add array mailer (#5240)

commit 7bea49b8ee35728a791bf1e50e894b36f3c8843e
Author: Maxime Willinger <[email protected]>
Date:   Mon Mar 2 16:21:08 2020 +0100

    Use MAIL_MAILER in test environment (#5239)

commit d7c602c164bfa5db8d02c139769558e336f24d89
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 17:30:43 2020 +0100

    Update app.php (#5237)

commit 0b14a741eb62f7b7d316b27f7b0e8bff770e3f7b
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 16:26:30 2020 +0100

    Update app.php (#5237)

commit 88a763e36f1d39be9b9924bbd1007a4a7b2eee9f
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 16:21:15 2020 +0100

    Update app.php (#5237)

commit 705076ffc28a834a1eb76b3550be2b6269a8fefb
Author: Graham Campbell <[email protected]>
Date:   Mon Feb 24 14:48:16 2020 +0000

    Bumped min guzzle

commit 3233e6f8097816349137eb46d03c9e83a5321259
Merge: d529de06 8cece725
Author: Graham Campbell <[email protected]>
Date:   Mon Feb 24 14:47:21 2020 +0000

    Merge branch 'master' into develop

commit 8cece7259806b3e4af6f185ffa4772dded70cd21
Author: Sjors Ottjes <[email protected]>
Date:   Mon Feb 24 15:37:15 2020 +0100

    Remove redundant default attributes from phpunit.xml (#5233)

commit d529de062d16ac29f48c901ea02e9dacde10ef47
Author: Dries Vints <[email protected]>
Date:   Thu Feb 13 16:03:25 2020 +0100

    Update composer.json

commit d038d1f6b65ba1c48bd608b535cdc04d826821ba
Author: Dries Vints <[email protected]>
Date:   Thu Feb 13 16:00:10 2020 +0100

    Update composer.json

commit c434eae43d673a709bb840f5f2e03b58da30682b
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 12 16:20:50 2020 -0600

    guzzle

commit 6b9050226e9ada706143a8b3d90c4a4d5e4355e2
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 12 09:30:09 2020 -0600

    use phpunit 0

commit 2c4fa1ab2815fd10f6e797f76c407a5fddb294aa
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 5 16:46:09 2020 -0600

    formatting

commit d7f67f631d7743c4d877197089f17dc4b62ee792
Author: Andrew Brown <[email protected]>
Date:   Wed Feb 5 10:48:51 2020 -0600

    styling

commit 153746c2c17b6199294ec97f4fea95ed34241c7b
Author: Andrew Brown <[email protected]>
Date:   Wed Feb 5 10:33:45 2020 -0600

    add `links` option to filesystems config

    https://github.com/laravel/framework/pull/31355

commit eb3143ea720d229c54a31b07b582ead58a216a41
Author: Nuno Maduro <[email protected]>
Date:   Tue Feb 4 22:20:49 2020 +0100

    Uses latest stable of Collision (#5221)

commit c78a1d8184f00f8270d8a135cc21590837b6bfbd
Author: ARCANEDEV <[email protected]>
Date:   Fri Jan 31 14:48:04 2020 +0100

    Bump fzaninotto/faker version to support PHP 7.4 (#5218)

    Bumping `fzaninotto/faker` version to support PHP 7.4, especially when running composer with `--prefer-lowest` flag.

    PRs related to version `^1.9.1`:

    * https://github.com/fzaninotto/Faker/pull/1748
    * https://github.com/fzaninotto/Faker/pull/1843

commit c81712bdf46b9fbd8641f07641470195d5487709
Author: Andrey Helldar <[email protected]>
Date:   Thu Jan 30 17:14:42 2020 +0300

    [6.x] Update cross-env to the latest (#5216)

    This is not a fix for the vulnerability.
    Just updating the dependency to the latest version.

    @see https://yarnpkg.com/package/cross-env

    Yes, I know that they recently released version 6.0 and in a short time 7.0.

commit f04029a64d93401e0d6788253c5134cdf8804607
Author: Freek Van der Herten <[email protected]>
Date:   Mon Jan 27 15:53:34 2020 +0100

    use ignition v2 (#5211)

commit 38a1249a002bf1dd201bda614454b28ed8c41f59
Merge: 91dd1f61 2503ed68
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:49:40 2020 -0600

    Merge remote-tracking branch 'origin/develop' into develop

commit 91dd1f61cdd3c7949593a4435dff8b77322761f2
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:49:20 2020 -0600

    formatting

commit 2503ed687ff4e8d068a36a9fe6d990492ffdbbed
Merge: db596ba0 1d094a80
Author: Graham Campbell <[email protected]>
Date:   Fri Jan 24 13:48:38 2020 +0000

    Merge branch 'master' into develop

commit 550282b0944d10eb78bf3ff4e556fe10a83ad8d7
Merge: db596ba0 678901cc
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:46:08 2020 -0600

    Merge branch 'check-compiled' of https://github.com/browner12/laravel into browner12-check-compiled

commit 1d094a80849133899fa4a9ba9b7598de7bc6d370
Author: Andrey Helldar <[email protected]>
Date:   Fri Jan 24 16:43:48 2020 +0300

    [7.x] Update cross-env and resolve-url-loader to the latest (#5210)

commit 678901cc4d2ee139b547375299b43eac19a37674
Author: Andrew Brown <[email protected]>
Date:   Thu Jan 23 10:40:45 2020 -0600

    update name

commit 2fe113e606989e3dec86dc7e716833facafe55bc
Author: Andrew Brown <[email protected]>
Date:   Thu Jan 23 10:27:12 2020 -0600

    add new `check_compiled` option

commit db596ba02aaedd925be3dd3c51d486355da277db
Merge: ffc74ba1 b1f35786
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 17 16:15:48 2020 -0600

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit ffc74ba143a7de4a89f2c3fd525a5621ca879e38
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 17 16:15:38 2020 -0600

    remove hyphen on email

commit b1f35786eb6352d1a613ffe0e2b7e55f6e1a316e
Merge: 94f8ee3c 9d0862b3
Author: Dries Vints <[email protected]>
Date:   Tue Jan 14 17:52:04 2020 +0100

    Merge branch 'master' into develop

commit 9d0862b3340c8243ee072afc181e315ffa35e110
Merge: 9b6d1b14 f44f065a
Author: Dries Vints <[email protected]>
Date:   Tue Jan 14 17:50:01 2020 +0100

    Merge pull request #5201 from aimeos/master

    Use file session driver again

commit 9b6d1b14bcbeba1b52a75a48dedc0402b1f08bb5
Author: Caíque de Castro Soares da Silva <[email protected]>
Date:   Mon Jan 13 13:36:09 2020 -0300

    Update laravel mix and sass loader (#5203)

commit f121af8985d1dbb665cb9ca4b6a9f7dbb6211a7c
Author: Robert Korulczyk <[email protected]>
Date:   Sun Jan 12 16:06:29 2020 +0100

    Add missing full stop for some validation messages (#5205)

commit 94f8ee3cade8d08097ed0255e4fb0fc4e56a8cd3
Merge: 130b8c8b b46c16b4
Author: Dries Vints <[email protected]>
Date:   Thu Jan 9 12:42:11 2020 +0100

    Merge branch 'master' into develop

commit b46c16b4246c7dc648158221c49f5b2e785e7c30
Author: Dries Vints <[email protected]>
Date:   Thu Jan 9 12:41:21 2020 +0100

    Update CHANGELOG.md

commit 130b8c8bcb8f167e7013e7846004b2df3e405b72
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:16:33 2020 -0600

    add ses

commit e43d4546a9c0bde49dae51fd6f4e2766674f1152
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:14:01 2020 -0600

    fix comment

commit 61ec16fe392967766b68d865ed10d56275a78718
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:10:37 2020 -0600

    work on mail configuration file

commit 76d822768dcab14fa1ee1fd1f4a24065234860db
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:01:42 2020 -0600

    update mail configuration file

commit f44f065a2b2cad1a947a7e8adc08fcc13d18c49c
Author: Aimeos <[email protected]>
Date:   Wed Jan 8 12:44:53 2020 +0100

    Use file session driver again

commit eca7bc7d66cef63500a62e8deaa3fce1772f1641
Author: Aimeos <[email protected]>
Date:   Wed Jan 8 12:44:22 2020 +0100

    Use file session driver again

commit 7e5a9154857f598f69978559a6ef9c34c1348e15
Merge: 4bf7dffb 25c36eb5
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:26:17 2019 +0000

    Merge branch 'master' into develop

commit 25c36eb592c57e075acc32a12703005f67c4ec10
Merge: 195faa16 5df3b7b1
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:22:50 2019 +0000

    Merge pull request #5196 from laravel/revert-5006-analysis-qxPGgA

    [6.x] Revert "Apply fixes from StyleCI"

commit 5df3b7b1fe07a22d3275180ece0b31f45682f07e
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:21:39 2019 +0000

    Revert "Apply fixes from StyleCI (#5006)"

    This reverts commit 50176732d66b197de62d5567b79fc77f63e2cfbd.

commit 4bf7dffb90366438e849c0c96e06e2a638eec336
Author: Graham Campbell <[email protected]>
Date:   Mon Dec 30 18:23:10 2019 +0000

    Bumped defaults for Laravel 7 (#5195)

commit 8af8af0cbfc5cdfaa3f757afe736a9d28d83851c
Merge: 0bec06cd 195faa16
Author: Graham Campbell <[email protected]>
Date:   Sat Dec 28 00:35:40 2019 +0000

    Merge branch 'master' into develop

commit 0bec06cd45a7f6eda0d52f78dd5ff767d94ed5cc
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 27 08:56:53 2019 -0600

    formatting

commit c222f6d04ff29489daec178d15ae23a3c13838f8
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:54:10 2019 +0100

    CS

commit e4683c6ecaff9a7dc779fb0dfe39f6336832fc9d
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:48:38 2019 +0100

    Revert routes

commit 860ec9f2a48c65d30998942263a4f9a849e9b0a0
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:46:41 2019 +0100

    Use config instead of middleware property

commit 195faa16cbeabc84b0eb9c9f4227ead762c93575
Author: Anton Komarev <[email protected]>
Date:   Wed Dec 25 18:05:29 2019 +0300

    Fix types consistency in database config (#5191)

commit 777baff7d5abdf38330714ccb5ff3dc3ee5d2f9c
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 22:28:34 2019 +0000

    Update composer.json

commit bee0e8c94c37bf3909e3fbe7e100a106dbf57fab
Author: Barry vd. Heuvel <[email protected]>
Date:   Tue Dec 24 22:26:06 2019 +0100

    Add HandleCors middleware

commit db940594ad86a22663acc3c119caab571344e2ee
Merge: 4d565e68 846f7a19
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 17:45:25 2019 +0000

    Merge branch 'master' into develop

commit 846f7a193a6c4ff92b6595596c9bbcb3cf8c426e
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 17:35:58 2019 +0000

    Correct exception handler doc (#5187)

commit 4d565e681cbf496e0cdfb58743d4ae8238cef15e
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 15:10:23 2019 -0600

    import facades

commit f4c8190744bbab94e7751518bfd0fdce82ee3ab0
Merge: cf5e99e9 e6471a6f
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:48:16 2019 -0600

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit cf5e99e9aa998c56eda0765a9aefdc14c439e0df
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:48:04 2019 -0600

    change comment

commit e6471a6f2e73dd244f957751ab315aa5903c32ea
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:15:04 2019 -0600

    Apply fixes from StyleCI (#5186)

commit f13aef873333aef538d526217d023fe81e87acd7
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:14:43 2019 -0600

    move var

commit 12c28822f402a948dac389bf037c550524845ba3
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:14:01 2019 -0600

    one liner

commit 3ee0065bcd879b82ee42023165f8a8f71e893011
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:10:38 2019 -0600

    remove unnecessary variable

commit 13e43893ba2457c3e49898f0066a5ce8d7ea74f4
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 13:58:16 2019 -0600

    remove auth migration that is now in laravel/ui

commit b5bb91fea79a3bd5504cbcadfd4766f41f7d01ce
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 11:48:38 2019 -0600

    Remove controllers that are generated by laravel/ui package.

    These controllers will be installed and generated by the laravel/ui (2.0) package in Laravel 7.x.

commit 583d1fa773803f951653af490b3dcc89b967ddbb
Author: Graham Campbell <[email protected]>
Date:   Thu Dec 19 15:36:06 2019 +0000

    [7.x] Remove register in auth provider (#5182)

    * Remove register in auth provider

    * Update AuthServiceProvider.php

    * Update Kernel.php

commit 7d70bfe8289fce07fa595340578b13f4bdac495d
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 13:44:16 2019 -0600

    Utilize Authentication Middleware Contract  (#5181)

    * adjust auth middleware to point to contract

    * remove middleware priority

commit f589a7e89782a8419f7ad54b512289f60ffa8619
Merge: 5d50d30c 99f183b5
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:24:10 2019 -0600

    Merge branch 'master' into develop

commit 99f183b5c794354f7387d503b40d2be63e678a80
Merge: 140d4d9b b2734a9c
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:02:53 2019 -0600

    Merge branch 'master' of github.com:laravel/laravel

commit 140d4d9b0a4581cec046875361e87c2981b3f9fe
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:02:46 2019 -0600

    use class name to be consistent with web middleware

commit b2734a9c313ac637e9b8cffa80f9fa9d3da96a09
Author: Anton Komarev <[email protected]>
Date:   Wed Dec 18 20:17:32 2019 +0300

    Add MAIL_FROM_ADDRESS & MAIL_FROM_NAME to .env file (#5180)

commit c5f9126981fe340edf71de284b27926323d3271b
Author: Andrew Minion <[email protected]>
Date:   Wed Dec 18 09:41:11 2019 -0600

    default email from name to app name (#5178)

commit 17f0ff22057a028f28b8aa17fadbc7fe4136bf66
Author: Michael Stokoe <[email protected]>
Date:   Wed Dec 18 15:38:03 2019 +0000

    Updated config/logging.php (#5179)

    This adds a default emergency logger path to the logging config file.
    This change goes hand-in-hand with my changes found here:
    https://github.com/Stokoe0990/framework/commit/7a03776bc860bde4cdc82e69ab133a755b66dd2d

commit 89e83915e94142ae79db7480561ae8a7a525e114
Merge: dd93aca5 40f93daa
Author: Dries Vints <[email protected]>
Date:   Mon Dec 16 11:35:41 2019 +0100

    Merge pull request #5175 from canvural/patch-1

    [6.x] Update redirectTo return type PHPDoc

commit 40f93daa83b17ad47c51ec9beed4c1ba79eb66ed
Author: Can Vural <[email protected]>
Date:   Sat Dec 14 11:48:14 2019 +0100

    Update redirectTo return type PHPDoc

commit dd93aca5970290dfda651f00a80fdd78b66da226
Merge: f48e2d50 136085bf
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 13 22:43:22 2019 -0600

    Merge branch 'master' of github.com:laravel/laravel

commit f48e2d500cb53cc4a09dfcb40beb0abafd79de4f
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 13 22:42:46 2019 -0600

    change some default settings

commit 136085bfd8361969a7daedc2308e0b59dbd41f60
Author: Bert Heyman <[email protected]>
Date:   Fri Dec 13 15:18:09 2019 +0100

    Add "none" to supported same site options in session config (#5174)

commit 972f3cd2832cd8a8e9e0be96817d10840b735316
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 10 08:59:27 2019 -0600

    DRY up path (#5173)

commit f4b1dc6df04f4ef9b4b15e2c38668e8cb168c253
Author: Dries Vints <[email protected]>
Date:   Fri Dec 6 16:46:02 2019 +0100

    [6.x] Implement integration test and in-memory DB (#5169)

    * Use in-memory DB for testing

    * Extend from PHPUnit test case for unit tests

commit 9b6643226da6bd3803da22fb5dc695b1a279c5aa
Author: byjml <[email protected]>
Date:   Wed Dec 4 21:57:13 2019 +0300

    Consistent order (#5167)

    Keep the alphabetical order of the validation messages.

commit 5d50d30c94ab7c3dcf28562a7f2116cb8922183e
Author: Graham Campbell <[email protected]>
Date:   Wed Nov 27 15:26:11 2019 +0000

    Bumped versions

commit fb3e88c313d80735270385a825363e446fd77174
Merge: b7a5bc7f b56fe840
Author: Graham Campbell <[email protected]>
Date:   Wed Nov 27 15:21:41 2019 +0000

    Merge branch 'master' into develop

commit b56fe84011bdbc3b42b8ffdaadc9a113635a751e
Author: Graham Campbell <[email protected]>
Date:   Tue Nov 26 18:46:10 2019 +0000

    Use laravel/tinker v2 (#5161)

commit b7a5bc7f3ca6d305343624aded77fe68c26bc018
Author: Nuno Maduro <[email protected]>
Date:   Mon Nov 25 21:46:55 2019 +0100

    Bumps Collision dependency to v4.0 (#5160)

commit 2913a55d87461fabe94907c5728d7a9451bcae80
Author: Graham Campbell <[email protected]>
Date:   Mon Nov 25 14:46:29 2019 +0000

    [7.x] Switch to Symfony 5 (#5157)

    * Update exception handler

    * Explictly specify 'lax' same site config

    * Use the null secure option for session cookies

commit 2f8e55a9ec923a481c1a24733c70ae750480f178
Author: Mark van den Broek <[email protected]>
Date:   Mon Nov 25 15:10:36 2019 +0100

    Rename `encrypted` to `forceTLS`. (#5159)

commit c473b53626eab20c44075b02770e948a6e757c2b
Merge: 3c92fb3a 1ee38a10
Author: Dries Vints <[email protected]>
Date:   Thu Nov 21 18:29:26 2019 +0100

    Merge branch 'master' into develop

commit 1ee38a10f8884e24290c86c04d8d1ba5f8bc8d10
Author: Dries Vints <[email protected]>
Date:   Thu Nov 21 18:28:39 2019 +0100

    Update CHANGELOG.md

commit 3c92fb3a19a7fbff0085bfbbe887682095d61520
Merge: 21f24784 c15a5ee0
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 17:35:09 2019 +0100

    Merge branch 'master' into develop

commit c15a5ee0d205ade08ad86174cb9c38aafd2bd226
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 17:34:53 2019 +0100

    Update readme

commit 21f24784814092f44117ea2cb29b696422b66e93
Merge: 2e2be97c 94056af6
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:06:22 2019 +0100

    Merge branch 'master' into develop

commit 94056af6e84769c8e9ad394d49c0c235a6966772
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:06:05 2019 +0100

    Rename readme

commit 578018940241d894befdf90bb7b61672b0f7d055
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:05:52 2019 +0100

    Consistent readme

commit 2e2be97c2686bf919f06a47849902b80586cfa6c
Author: Dries Vints <[email protected]>
Date:   Fri Nov 1 13:53:14 2019 +0100

    Implement new primary key syntax (#5147)

commit b659069bced2435cc53fca6fd4290edcae5dd9e0
Merge: 89a80da1 bfd4b1e9
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:52:38 2019 +0000

    Merge branch 'master' into develop

commit bfd4b1e92f7c6b4e6b74cfdde995a5afad648d96
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:51:17 2019 +0000

    Update .styleci.yml

commit 89a80da13232c00d3e2ac8d8e372075086ced4fb
Merge: 9df12c3c 953b488b
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:12:48 2019 +0000

    Merge branch 'master' into develop

commit 953b488b8bb681d4d6e12227645c7c1b7ac26935
Author: Taylor Otwell <[email protected]>
Date:   Mon Oct 21 13:47:27 2019 -0500

    fix key

commit ba2f2abe830f5d03c52fd9c88411859cf863abd6
Author: Taylor Otwell <[email protected]>
Date:   Mon Oct 21 13:42:31 2019 -0500

    tweak formatting

commit ace38c133f3d8088fc7477f56b9db6fdc0098d06
Author: Michael Chernyshev <[email protected]>
Date:   Fri Oct 18 13:57:19 2019 +0300

    Security fix: Waiting before retrying password reset

commit 400df0b02bcc0e3fc8bc1c75ea494242c3f392af
Author: Gert de Pagter <[email protected]>
Date:   Wed Oct 16 15:18:19 2019 +0200

    Add xml schema to phpunit (#5139)

    This allows an IDE to do auto completion, and show any errors in the configuration

commit 9df12c3ca1c27f0192c64d19ce64b18ec06213d3
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 15 13:15:52 2019 -0500

    ignition doesn't support laravel 7 yet

commit bb969c61d41ec479adbe4a6da797831002b75092
Author: Nuno Maduro <[email protected]>
Date:   Tue Oct 8 22:44:05 2019 +0200

    Fixes required version of the framework within `composer.json` (#5130)

commit dfa5c1f06e11bc6a557a0ead78f38b997235802f
Merge: ccef55ba 39c28801
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 18:39:31 2019 +0200

    Merge branch 'master' into develop

commit 39c28801e8d8a8cfc99c3eed4756c6acc7367e0c
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 18:38:02 2019 +0200

    Update CHANGELOG.md

commit 9bc23ee468e1fb3e5b4efccdc35f1fcee5a8b6bc
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:35:48 2019 -0500

    formatting

commit d1f7a5a886039e28a434905447865ca952032284
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:27:05 2019 -0500

    formatting

commit bc82317a02e96105ad9f3cc0616d491cb5585c62
Merge: 51a1297a ba3aae6c
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:24:50 2019 -0500

    Merge branch 'password-confirmation' of https://github.com/driesvints/laravel into driesvints-password-confirmation

commit ba3aae6c338314c2ba1779f336278c2532071b7c
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 13:45:40 2019 +0200

    Implement password confirmation

commit 4036f17416549758816894dc52dc54eabcc13914
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 13:39:57 2019 +0200

    Remove middleware from password reset

    It's not necessary for the user to be logged out when resetting their password. This allows users to reset their password while logged in. Can be used in combination with the new RequiresPassword middleware.

commit 050c1d880ec1d48ef40d7a0f2b2f1040c23cebb9
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 11:26:03 2019 +0200

    Add new password rule language line

commit 51a1297a2486e2b68883bba9e534ec903f0c10d4
Author: Sangrak Choi <[email protected]>
Date:   Thu Sep 26 21:24:53 2019 +0900

    [6.x] Added OP.GG sponsor (#5121)

    * Added OP.GG sponsor

    * Update readme.md

commit c70c986e58fe1a14f7c74626e6e97032d4084d5f
Author: Roger Vilà <[email protected]>
Date:   Fri Sep 13 21:47:34 2019 +0200

    [6.x] Add 'null' logging channel (#5106)

    * Add 'none' logging channel

    * Remove extra spaces

    * Rename 'none' channel to 'null'

    * Update logging.php

commit 42e864f3f5f8fe5bfbdbac66dc2e4b95159fedcb
Author: Tim MacDonald <[email protected]>
Date:   Fri Sep 13 22:19:06 2019 +1000

    remove testing bootstrap extension (#5107)

commit cba8d19f8603fc409c2a72a0f33a4b0a7fab2ee5
Author: James Merrix <[email protected]>
Date:   Thu Sep 12 13:48:34 2019 +0100

    Added Appoly sponsor (#5105)

commit 56157b9cd201b5dc6fbe5f9f73014fa32e5a7838
Author: Graham Campbell <[email protected]>
Date:   Wed Sep 11 13:10:18 2019 +0100

    Revert "According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)" (#5102)

    This reverts commit 74d84e9371b2d2486edcc8f458adc9f22957d68b.

commit ccef55ba553f9eb6e6d1a13aa19c457aefb6463e
Merge: 1f48b2c5 7d728506
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 20:42:16 2019 +0200

    Merge branch 'master' into develop

commit 7d728506191a39394c5d1fcf47a822b9183f50ed
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 20:41:25 2019 +0200

    Update CHANGELOG.md

commit 1f48b2c5e83374b658f03ca8da5220a6980e3e11
Merge: 55b314ea e6569320
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:27:12 2019 +0200

    Merge branch 'master' into develop

commit e656932002588bcaaa94476f1ed1850747eb4708
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:26:00 2019 +0200

    Apply fixes from StyleCI (#5100)

commit 79fb6af96ebf0325cef15c3132157fdf75f6fd6c
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:25:19 2019 +0200

    Order imports alphabetically

commit 74d84e9371b2d2486edcc8f458adc9f22957d68b
Author: Patrick Heppler <[email protected]>
Date:   Mon Sep 9 20:51:51 2019 +0200

    According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)

    https://bugs.php.net/bug.php?id=78516
    Argon2 requires at least 8KB
    On PHP 7.4 memory 1024 will throw:
    password_hash(): Memory cost is outside of allowed memory range

commit 55b314eadb06164943dbf2ba33b21391441ce237
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:41:28 2019 +0200

    Update CHANGELOG.md

commit 00c00b87bef4bf7fbb7c132015e10a20bbcf4ce4
Merge: cb5047c2 4dbe9888
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:40:26 2019 +0200

    Merge branch 'master' into develop

commit 4dbe9888a5599c270e9131b76eca0ff3527bd350
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:39:25 2019 +0200

    Update CHANGELOG.md

commit 9f2f3b1eeecd79acffcce72977dc3b107e7d2b43
Merge: 31394de4 ca3f91e7
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:29:25 2019 +0200

    Merge branch '5.8'

commit ca3f91e7ed47780ad4128c0592f5966efe51246b
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:29:02 2019 +0200

    Update CHANGELOG.md

commit 8b96bf012871a2e977a4558bf069062c5f03de95
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:26:19 2019 +0200

    Update CHANGELOG.md

commit cb5047c200931d26142e78a315daad03c932f1fc
Merge: 2967197b 31394de4
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:03:17 2019 +0200

    Merge branch 'master' into develop

commit 31394de4d736c171d40bb03d50313c60b0e4af38
Author: Taylor Otwell <[email protected]>
Date:   Sat Sep 7 02:18:51 2019 +0200

    Revert "Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)" (#5095)

    This reverts commit 86908e1eb4a6cc8f5474b1355db4c104c548619e.

commit 4992230ca97551a0a2530e339898037b0ad5af81
Merge: 86908e1e 42936c65
Author: Taylor Otwell <[email protected]>
Date:   Fri Sep 6 13:43:32 2019 -0500

    Merge branch 'patch-1' of https://github.com/SjorsO/laravel into SjorsO-patch-1

commit 86908e1eb4a6cc8f5474b1355db4c104c548619e
Author: Patrick Heppler <[email protected]>
Date:   Fri Sep 6 14:16:32 2019 +0200

    Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)

    With the values
    ````
    'argon' => [
            'memory' => 1024,
            'threads' => 2,
            'time' => 2,
        ],
    ```
    Hash::make() produces password_hash(): Memory cost is outside of allowed memory range on PHP 7.4

commit 2967197b8e2db87768b5534ca923f4f3b15e18f1
Merge: af15fe5e 65959b25
Author: Dries Vints <[email protected]>
Date:   Fri Sep 6 13:14:50 2019 +0200

    Merge branch 'master' into develop

commit 42936c656c70dc39d71dae7e79a487a716f2b1a6
Author: Sjors Ottjes <[email protected]>
Date:   Fri Sep 6 08:17:43 2019 +0200

    style

commit 731cd4c499638138c3331572f726310354d1b1ea
Author: Sjors Ottjes <[email protected]>
Date:   Fri Sep 6 08:16:34 2019 +0200

    add phpunit extension

commit 360993c11eb1fa6d1f5a4eb89a08636f96ccf3ef
Author: Sjors Ottjes <[email protected]>
Date:   Thu Sep 5 16:10:59 2019 +0200

    Update bootstrap.php

commit 65959b25bf791ab7afeac2ffa5a29394638c688f
Author: Darren Craig <[email protected]>
Date:   Tue Sep 3 17:37:05 2019 +0100

    Allowing optional use of yml/yaml file extensions in .editorconfig (#5090)

commit af15fe5ec688f59522e898dc74e0de54d84c3d96
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:54:41 2019 +0200

    Revert "Bump PHPUnit"

    This reverts commit 5fde1337d629bd116602f2e67ead75988ae7568f.

commit 5fde1337d629bd116602f2e67ead75988ae7568f
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:54:00 2019 +0200

    Bump PHPUnit

commit 054bb43038f4acb7f356dd668715225ffc2e55ba
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:53:35 2019 +0200

    Laravel 7

commit 13ab419d59e2f0d2e188a5157a3cc17f72db595c
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 3 08:37:49 2019 -0500

    add ignition

commit 41ee35d01f4e57c47e924400db8a805089664141
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 3 08:37:29 2019 -0500

    add ignition

commit e6becd2ca35a650f51ed49525935e8ca65671152
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 27 16:26:48 2019 -0500

    add new failed driver option

commit 6ff5d6c7b8df5936aa310a5af0ff2fc2ca866708
Merge: 665dfc43 aa74fcb3
Author: Taylor Otwell <[email protected]>
Date:   Fri Aug 23 11:59:05 2019 -0500

    Merge branch 'master' into develop

commit 665dfc4328daeabaa496ac6a0743476348657585
Author: Dries Vints <[email protected]>
Date:   Thu Aug 22 15:22:14 2019 +0200

    [6.0] Use phpredis as default Redis client (#5085)

    * Use phpredis as default Redis client

    Follow up for https://github.com/laravel/framework/pull/29688

    It's best that we already start using `phpredis` as a default to discourage usage of Predis.

    * Update database.php

commit b67acda8928117dc3048180e53f29d09c775b908
Author: Christopher Lass <[email protected]>
Date:   Wed Aug 21 15:14:32 2019 +0200

    Rename 2019_08_19_175727_create_failed_jobs_table.php to 2019_08_19_000000_create_failed_jobs_table.php (#5082)

commit aa74fcb38f9f318159657ba5050eda62ec043b11
Author: Jess Archer <[email protected]>
Date:   Wed Aug 21 22:47:43 2019 +1000

    Remove manual adding of X-CSRF-TOKEN header (#5083)

    This is unnessecery code because Axios already automatically adds
    a X-XSRF-TOKEN header from the XSRF-TOKEN cookie encrypted value on
    same-origin requests. The `VerifyCsrfToken` middleware and Passport's
    `TokenGuard` already allow using the `X-XSRF-TOKEN` header.

commit b84bcc6446d6fb7515082824679f63c701c269fa
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 20 15:04:04 2019 -0500

    Update readme.md

commit 41e915ae9059ecbc8069b38554df1a4f73844161
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 20 15:03:32 2019 -0500

    Update readme.md

commit b7d2b48b75afbaa34c82688cb30be2f00a7d8c57
Author: Taylor Otwell <[email protected]>
Date:   Mon Aug 19 12:57:41 2019 -0500

    add failed jobs table

commit 051dea594118c87506f5f0a15b2af2cff49959b3
Author: Taylor Otwell <[email protected]>
Date:   Wed Aug 14 09:19:31 2019 -0500

    formatting

commit c07809e224a09366914964716eab911c595a9ceb
Merge: 4852f483 bb433725
Author: Dries Vints <[email protected]>
Date:   Wed Aug 14 13:49:52 2019 +0200

    Merge branch 'master' into develop

commit bb433725483803a27f21d3b21317072610bc3e9c
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 13 15:05:56 2019 -0500

    formatting

commit 83d2ecc0e9cca7ae6989134dede4a5653a19430b
Author: Dries Vints <[email protected]>
Date:   Tue Aug 13 18:19:40 2019 +0200

    Remove Stripe config settings

    These now ship with a dedicated config file for Cashier.

commit 4852f483466bdc83bac132421832d3eec07bcfaf
Author: Dries Vints <[email protected]>
Date:   Mon Aug 12 14:48:54 2019 +0200

    Remove deprecated language line (#5074)

commit a5111cf70f7cc057ed528a28ead6ab1eb48b7852
Merge: fad6ef3d d5691a2e
Author: Dries Vints <[email protected]>
Date:   Mon Aug 12 11:56:28 2019 +0200

    Merge branch 'master' into develop

commit d5691a2e6d8725d64d8569f9b1682012ced83eda
Author: Dries Vints <[email protected]>
Date:   Tue Aug 6 14:32:07 2019 +0200

    Add missing trailing semicolon

commit fad6ef3d4b932fdf0173136b353eb3ce853e2c76
Author: Chuck Rincón <[email protected]>
Date:   Fri Aug 2 15:54:12 2019 -0500

    [6.0] - Add vapor link on the welcome view (#5072)

commit 8f2a27868f7f9e0a0bbf69fa83d06b8a7a1b7894
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 30 16:40:52 2019 -0500

    formatting

commit e21657dc5a45299b3c72007d0a9a6f42c3461d14
Merge: 5391ccca 8ca56226
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 30 16:36:53 2019 -0500

    Merge branch 'config_caching_v2' of https://github.com/timacdonald/laravel into timacdonald-config_caching_v2

commit 5391cccaad03f0c4bf8d49bfdd0f07fcf7e79f2d
Author: Dries Vints <[email protected]>
Date:   Mon Jul 29 11:22:12 2019 -0400

    Update version constraint (#5066)

commit 0dd31baf2a153629d7c84b0fb2cc69f575b0d376
Merge: 7c9e5ea4 f73795ac
Author: Dries Vints <[email protected]>
Date:   Thu Jul 25 00:49:45 2019 -0400

    Merge branch 'master' into develop

commit f73795ac0569554d3464eecb259aef0d2dc64f72
Author: Ryan Purcella <[email protected]>
Date:   Thu Jul 18 08:20:32 2019 -0500

    Update number of Laracasts videos (#5063)

commit ddbbd0e67b804c379f212233e3b1c91a7b649522
Author: Guilherme Pressutto <[email protected]>
Date:   Tue Jul 16 16:38:28 2019 -0300

    Using environment variable to set redis prefix (#5062)

    It was the only redis setting that wasn't overridable by an environment variable. It can help if you have multiple instances using the same `APP_NAME`, e.g. a staging instance

commit ff15a66d8c8d989ce6e1cee6fcc06c4025d06998
Author: Artem Pakhomov <[email protected]>
Date:   Mon Jul 15 19:41:13 2019 +0300

    Fixed lodash version (CVE-2019-10744) (#5060)

commit 7c9e5ea41293b63e051bd69f7929f8712893eea1
Author: Gergő D. Nagy <[email protected]>
Date:   Fri Jul 12 15:59:55 2019 +0200

    [5.9] Add ThrottleRequests to the priority array (#5057)

    * add ThrottleRequests to the priority array

    * Move ThrottleRequests under Authenticate middleware

commit afb7cd7311acd6e88a2c7faccdb8181583488d25
Author: Miloš Gavrilović <[email protected]>
Date:   Thu Jul 11 17:03:22 2019 +0200

    update deprecated pusher option (#5058)

commit e71f50f664b5b6a6ffbeffac668717bb40c36d93
Author: Gary Green <[email protected]>
Date:   Wed Jul 10 16:11:28 2019 +0100

    Move TrustProxies to highest priority - fixes maintenance mode ip whitelist if behind proxy e.g. Cloudflare (#5055)

commit 8ca562265e9efdd3548b4a1573156d8f185d378e
Author: Tim MacDonald <[email protected]>
Date:   Tue Jul 9 13:05:55 2019 +1000

    style fix

commit 56960ed2a0f5674c9906ce0b3e7dc67925bbce29
Author: Tim MacDonald <[email protected]>
Date:   Fri Jul 5 14:20:33 2019 +1000

    introduce test bootstrapping

commit 78143a1ea02ee1b63e04df3fcaa32bed3637a5ce
Merge: fc39b073 386a4e5c
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 27 20:01:41 2019 -0500

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit fc39b073f3f61a22f1b48329e294ebb881700dbe
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 27 19:57:39 2019 -0500

    remove ui scaffolding

commit 386a4e5c9257612685e0e0b2e4904c3d576da3c3
Merge: 61a0829f ebc6f6e2
Author: Graham Campbell <[email protected]>
Date:   Fri Jun 21 14:24:52 2019 +0100

    Merge branch 'master' into develop

commit ebc6f6e2c794b07c6d432483fd654aebf2ffe222
Author: Sjors Ottjes <[email protected]>
Date:   Tue Jun 18 12:18:58 2019 +0200

    Update .gitignore (#5046)

commit 61a0829f4338ae36e4f9a203e82e69726299be4d
Merge: f053116c 6f3d68f6
Author: Taylor Otwell <[email protected]>
Date:   Tue Jun 4 08:10:42 2019 -0500

    Merge branch 'master' into develop

commit 6f3d68f67f3dab0e0d853719696ede8dfd9cc4e1
Author: Taylor Otwell <[email protected]>
Date:   Tue Jun 4 08:10:26 2019 -0500

    use generic default db config

commit 014a1f0f5e1e757b8669c2ae6e78c49fc8b2978d
Author: ziming <[email protected]>
Date:   Fri May 31 20:54:50 2019 +0800

    Update axios package (#5038)

    Update axios in package.json to ^0.19 so that I don't get security vulnerability notification emails from Github when I push to my laravel project repos even though ^0.18 covers 0.19 as well

commit bf60f7f74f9578902650c30887190f86515a1037
Author: Antoni Siek <[email protected]>
Date:   Thu May 30 18:22:45 2019 +0200

    Added support for new redis URL property in config/database.php (#5037)

    Regarding laravel/framework#28612

commit f053116c5680e77c3a6c73afd193984a17ea482d
Author: Taylor Otwell <[email protected]>
Date:   Thu May 30 08:07:52 2019 -0500

    remove dumpserver since doesn't work on 5.9

commit 953093795869beb658bdd9be9442188f39e62b6a
Author: Kristoffer Högberg <[email protected]>
Date:   Wed May 29 16:12:30 2019 +0200

    Add DYNAMODB_ENDPOINT to the cache config (#5034)

    This adds the DYNAMODB_ENDPOINT environment variable to the
    dynamodb store of the cache cofig.

    Its usage is implemented in the framework as laravel/framework#28600

commit a7a1f44018d781848f15875dfe34a09ed8b6dd03
Merge: 1c824f6f 762e987e
Author: Dries Vints <[email protected]>
Date:   Tue May 21 15:16:00 2019 +0200

    Merge branch 'master' into develop

commit 762e987e5bc4c87fb75f7868f967ec3d19a379e0
Author: Dries Vints <[email protected]>
Date:   Tue May 21 15:15:32 2019 +0200

    Uppercase doctype

    In similar fashion as https://github.com/laravel/framework/pull/28583

commit 1c824f6f9f6e7a3f7ddb98ad80ffdbdbf98c81e1
Merge: c9bb74c7 f8e455e3
Author: Dries Vints <[email protected]>
Date:   Tue May 21 13:41:13 2019 +0200

    Merge branch 'master' into develop

commit f8e455e358046e59deb17b555b8949059a38ff77
Author: Matt Hanley <[email protected]>
Date:   Tue May 14 14:28:37 2019 +0100

    Fix type hint for case of trusting all proxies (string) (#5025)

commit 93c687418963f7c99b641fda905015054c785eb4
Author: Jason McCreary <[email protected]>
Date:   Thu May 9 20:07:43 2019 -0400

    Add ends_with validation message (#5020)

commit c9bb74c7e01cffbb5e185990acecf3fcab7f5eda
Author: Taylor Otwell <[email protected]>
Date:   Wed May 8 08:06:25 2019 -0500

    formatting

commit fe9f8497d98ec0fa6a7d43a2ae4127285b777065
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:57:29 2019 +0200

    Remove services deleted from core

    See https://github.com/laravel/framework/pull/28441 and https://github.com/laravel/framework/pull/28442

commit 7e6af5c031988e7a7c576c6bbbd1747ddfe548cc
Merge: f70fff8a fbd3ad7b
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:52:54 2019 +0200

    Merge branch 'master' into develop

commit fbd3ad7bbb5e98c607f19f7c697552863363bde4
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:19:27 2019 +0200

    Update changelog

commit b0e0bdc060ce068b73371919b904f3c7f0c1cfa6
Author: Taylor Otwell <[email protected]>
Date:   Tue May 7 07:38:15 2019 -0500

    formatting

commit 1086e26b32fb828ee74c8848246788a26bad72d7
Author: Mathieu TUDISCO <[email protected]>
Date:   Tue May 7 13:49:22 2019 +0200

    Update database config relating to Url addition.

commit 4b78ba61eac32cefa41da09149e0500e23cb06ec
Merge: 65f82710 af15618b
Author: Taylor Otwell <[email protected]>
Date:   Mon May 6 08:30:56 2019 -0500

    fix conflicts

commit 65f8271032c113883fb3f1e8e7b3279821148ad1
Author: Taylor Otwell <[email protected]>
Date:   Mon May 6 08:30:33 2019 -0500

    update version

commit af15618b577be04fc999e3f11880d05f030d39ce
Merge: a6bf2413 ccea56b6
Author: Dries Vints <[email protected]>
Date:   Tue Apr 30 14:02:22 2019 +0200

    Merge pull request #5013 from laravel/revert-5012-feature/exported-files

    Revert "Exclude StyleCI config from exported files"

commit ccea56b6f910649d8a6ee25f61896d2b96e90496
Author: Dries Vints <[email protected]>
Date:   Tue Apr 30 14:02:09 2019 +0200

    Revert "Exclude StyleCI config from exported files (#5012)"

    This reverts commit a6bf24134d99be79e77b8969186b9f46ffee075a.

commit a6bf24134d99be79e77b8969186b9f46ffee075a
Author: Roberto Aguilar <[email protected]>
Date:   Mon Apr 29 16:21:59 2019 -0500

    Exclude StyleCI config from exported files (#5012)

    I noticed that this file was being included when i ran the
    `laravel new` command and even though some developers will run StyleCI,
    the purpose of this file seems more like it ensures the repository
    quality rather than providing an starting point for this service.

commit 3995828c13ddca61dec45b8f9511a669cc90a15c
Author: Diego <[email protected]>
Date:   Fri Apr 26 09:26:45 2019 -0300

    [5.9] Minor grammar fix in readme.md (#5010)

    * Fix grammar ('Boost *your* skills')

    * Update readme.md

commit f70fff8ad236374f66719b010fc5eea477c581e8
Merge: cedcbc86 50176732
Author: Dries Vints <[email protected]>
Date:   Thu Apr 25 13:28:34 2019 +0200

    Merge branch 'master' into develop

commit 50176732d66b197de62d5567b79fc77f63e2cfbd
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 24 07:38:42 2019 -0500

    Apply fixes from StyleCI (#5006)

commit 12a4885a47fbd272a4a942d49d7b1eb1b42f2b19
Author: Stefan Bauer <[email protected]>
Date:   Wed Apr 24 14:38:18 2019 +0200

    Fix phpdoc to order by syntax convention (#5005)

    Reorder the `@var` phpdoc syntax by convention, see http://docs.phpdoc.org/references/phpdoc/tags/var.html

commit 60db703a27bb09d0a51023131f850d5d424997db
Author: Graham Campbell <[email protected]>
Date:   Tue Apr 23 13:44:51 2019 +0100

    [5.8] Enable JS on StyleCI (#5000)

    * Enable JS on StyleCI

commit cedcbc863d4ae224430b83aa8c8e2781715ac3c5
Merge: bdc205c8 f574aa76
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 21:26:54 2019 +0200

    Merge branch 'master' into develop

commit f574aa76e3e1b8b1d77469e37d2857e27da14379
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 21:26:44 2019 +0200

    Disable JS checks for now

commit bdc205c830186eedc45fb03412c07aa14355d482
Merge: e80327f2 81fba471
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:07:04 2019 +0200

    Merge branch 'master' into develop

commit 81fba471aff24793be8ee3ee0d303d2b31056df2
Merge: 43b09ad0 91dc5ed2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:06:16 2019 +0200

    Merge pull request #4998 from laravel/analysis-z9QV6a

    Apply fixes from StyleCI

commit 43b09ad0f326584d56d20fc0cf2bef99b83af877
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:06:06 2019 +0200

    Add file exclusions for styleci

commit 91dc5ed2869b5905a01b0b85d70f33bbd9267b93
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 14:06:03 2019 +0000

    Apply fixes from StyleCI

commit 597201a049a0d1920533e5d0970a8283898becd3
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 15:55:40 2019 +0200

    Add StyleCI config

commit 06162adc9839ada8b2525e006bef6b80914296d6
Merge: 0f58190c ef1ce665
Author: Taylor Otwell <[email protected]>
Date:   Sun Apr 14 15:41:37 2019 -0500

    Merge pull request #4990 from SjorsO/patch-1

    Add IDE typehint to UserFactory

commit ef1ce665eef55e90952cd606ae120cf8c619822d
Author: Sjors Ottjes <[email protected]>
Date:   Sun Apr 14 13:30:53 2019 +0200

    Update UserFactory.php

commit 0f58190c7ba955cf7a58b47a9469bf4c6c992abb
Merge: 20cdf65a 14b0a07d
Author: Dries Vints <[email protected]>
Date:   Fri Apr 12 12:06:24 2019 +0200

    Merge pull request #4989 from DrewRoberts/update-readme-laracasts

    Update readme with Laracasts count

commit 14b0a07d79a60ef45ce5b26f8b1c34ab9274dba7
Author: DrewRoberts <[email protected]>
Date:   Fri Apr 12 01:34:48 2019 -0400

    Update readme with Laracasts count

commit 20cdf65ae61ca7cfa45292d3dd642a252147ecc8
Merge: 005ec130 1bed031c
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 10 07:31:29 2019 -0500

    Merge pull request #4987 from DivineOmega/patch-1

    [5.8] Remove underscore from cache prefix

commit 1bed031c1f7cfcfeadf497934d301987c53b1e6e
Author: Jordan Hall <[email protected]>
Date:   Wed Apr 10 12:01:28 2019 +0100

    Remove underscore as cache prefixes automatically have a colon appended to them

commit 005ec1301e3600c0a5d5a8355495d4333cab138b
Merge: 35374927 3cbc5ac6
Author: Taylor Otwell <[email protected]>
Date:   Mon Apr 8 07:47:02 2019 -0500

    Merge pull request #4986 from DivineOmega/patch-1

    [5.8] Add underscores to cache and redis database prefixes

commit 3cbc5ac640022cb4e3fcad7fc50e2086d32af6ae
Author: Jordan Hall <[email protected]>
Date:   Mon Apr 8 08:52:06 2019 +0100

    Additional underscore on cache prefix

commit 159b0e79cd5b26bc7cd4699113951599a5b5d6d0
Author: Jordan Hall <[email protected]>
Date:   Mon Apr 8 08:50:48 2019 +0100

    Additional underscore on redis database prefix

commit 35374927bd570d578f7db4a715f2a64a2ce561c1
Merge: ae44ee00 e68ff0c6
Author: Taylor Otwell <[email protected]>
Date:   Fri Apr 5 08:55:41 2019 -0500

    Merge pull request #4982 from DivineOmega/patch-1

    [5.8] Prefix redis database connection by default

commit e68ff0c66aa1b3da2c9a14d86636d582fd73891e
Author: Jordan Hall <[email protected]>
Date:   Thu Apr 4 22:18:28 2019 +0100

    Use Str class instead of helper function

commit c8bc79e94ee7f4a992d70faa5ec140a9059e603f
Author: Jordan Hall <[email protected]>
Date:   Thu Apr 4 15:11:18 2019 +0100

    Prefix redis database connection by default to mitigate multiple sites on the same server potentially sharing the same queued jobs

commit ae44ee0059f6218aab26de5551b19f70329f8832
Merge: 3886012c 88636c22
Author: Taylor Otwell <[email protected]>
Date:   Mon Apr 1 10:54:27 2019 -0700

    Merge pull request #4979 from hyperhost/add-hyper-host-sponsor

    Added Hyper Host sponsor

commit 88636c2268aa5dada08a2cd08c098bd9d25880f4
Author: Tony James <[email protected]>
Date:   Mon Apr 1 16:23:23 2019 +0100

    Added Hyper Host sponsor

    Added Hyper Host name and url

commit 3886012c0f3ad5653d9d5138530f3fc4276eaf93
Merge: 4997f081 ccc1457e
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 24 08:11:19 2019 -0700

    Merge pull request #4971 from Lenophie/patch-1

    Ignore SQLite journals

commit ccc1457e572f7ec5b2b596436622f69e94bbf635
Author: Lenophie <[email protected]>
Date:   Sun Mar 24 12:01:21 2019 +0100

    Ignore SQLite journals

commit e80327f29926869b34aa4ba92d59324ce75cac09
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:25:28 2019 +0100

    Update changelog

commit cfd5929785845000f26db851b94675d6154737b9
Merge: 53b59cd0 4997f081
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:23:52 2019 +0100

    Merge branch 'master' into develop

commit 4997f08105d6fb941b1ed2c749ebd2f55fba5a74
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:22:48 2019 +0100

    Update changelog

commit 3b852a1f7f292953f47df64563cc01188db336ff
Merge: 3d325b84 54cd6d90
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 8 08:03:29 2019 -0600

    Merge pull request #4963 from chapeupreto/patch-1

    [5.8] upgrade the collision dependency from v2 to v3

commit 54cd6d90bbe317040a0195e09c4fc40318bb988d
Author: Rod Elias <[email protected]>
Date:   Thu Mar 7 23:20:15 2019 -0300

    upgrade the collision dependency from v2 to v3

commit 3d325b8485591bc77d1073f7aa73596acb76ec23
Author: Dries Vints <[email protected]>
Date:   Tue Mar 5 15:12:04 2019 +0100

    Update changelog

commit 3001f3c6e232ba7ce2ecdbdfe6e43b4c64ee05ad
Author: Taylor Otwell <[email protected]>
Date:   Thu Feb 28 14:31:42 2019 -0600

    check if extension loaded

commit a0f6bcc773f3895db0ca4a85101b9a3ef2f95782
Author: Taylor Otwell <[email protected]>
Date:   Thu Feb 28 08:34:10 2019 -0600

    comment out options

commit f4ff4f4176f7d931e301f36b95a46285ac61b8b8
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 27 07:24:37 2019 -0600

    comment

commit d4d4a69b76d1dfd87b47b7a51b4c0e2aed992793
Merge: f84a69ee b34328a1
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 27 07:20:20 2019 -0600

    Merge pull request #4956 from akalongman/master

    [5.8] Use correct env name for AWS region from env.example

commit b34328a16654d09461fa53f8c681c15fe4e35095
Author: Avtandil Kikabidze <[email protected]>
Date:   Wed Feb 27 14:05:01 2019 +0400

    Use correct env name for AWS region from env.example

commit f84a69ee852bd44363042a61995d330574b6b8c3
Author: Taylor Otwell <[email protected]>
Date:   Tue Feb…
totoprayogo1916 added a commit to totoprayogo1916/OpenDK that referenced this pull request Sep 5, 2023
Squashed commit of the following:

commit 3923e7f7c40368a5e78c1a33610191be8ad91e3b
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:17:45 2020 +0100

    Update CHANGELOG.md

commit ff355973475624d9dc9ed5fd157a0ba0bef84710
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:16:23 2020 +0100

    Lower ignition constraint

commit 509708c7ee04dde4214edcf60fe3752f0d54d91d
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 16:03:50 2020 +0100

    Update CHANGELOG.md

commit 8ae2d8ec1e4b86c77e9352f3b32e79ebfa62ed82
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:53:46 2020 +0100

    Bump ignition and collision

commit 3c4eac92baaf98b7d42d7dcf713bbdc017a5c6ab
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:48:42 2020 +0100

    Bump Guzzle

commit 45fa128adbc2c36870f36bc9396a850508fb8c5b
Merge: 9af70cff d85be866
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:43:30 2020 +0100

    Merge branch '6.x' into 7.x

commit d85be8669880cce457eb5827afbedb6ad30bb629
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:40:46 2020 +0100

    Update CHANGELOG.md

commit 31fbf612efd8e6291453c14d1d8a5377a6870792
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:39:45 2020 +0100

    Bump fideloper/proxy

commit eb34def26a617cc48813d137dccab4994b555d61
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:38:43 2020 +0100

    Bump tinker

commit d906d7b86006d65b3ab74c890d2a23b24a7d7a18
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:27:02 2020 +0100

    Update phpunit constraints

commit f363bc30e18b60612ef77a40a4f169c633fd04ac
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 14:59:24 2020 +0100

    Bump ignition

commit 9af70cffa4bdc5d5e4d7b96e9fa7fb98969b12c9
Merge: 482d68a1 27338d9a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:01:22 2020 +0100

    Merge branch '6.x' into 7.x

commit 27338d9a99b63bb180c6c2ba6a9585ab1d10bf78
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:00:39 2020 +0100

    Allow PHPUnit 9

commit 482d68a182bdd629e5d4d3c19d5d7d7623dd074a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:26:10 2020 +0100

    Update CHANGELOG.md

commit 02ca853809a97f372a3c6dc535c566efff9f6571
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:59 2020 +0100

    Nump minimum Laravel version

commit 056a9e8f903860a066190b6a45b56436d6c64531
Merge: 9b21125e aef279a6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:32 2020 +0100

    Merge branch '6.x' into 7.x

commit aef279a6cf04b47ac7aa279e37240a683bdcf5e6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:17:39 2020 +0100

    Update CHANGELOG.md

commit b8d582581a1067e3b1715cce477b22455acc3d36
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:16:58 2020 +0100

    Update minimum Laravel version

commit a4d45e6940ec6565ac1ea55cad117082876396ad
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:15:43 2020 +0100

    Update CHANGELOG.md

commit 9b21125e31232d29231c60067c6df42e9554715b
Merge: 533f130f 4c25cb95
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:18:17 2020 +0100

    Merge branch '6.x' into 7.x

commit 4c25cb953a0bbd4812bf92af71a13920998def1e
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:17:46 2020 +0100

    Allow for PHP 8

commit 533f130f1429986313966c39511690e23cc42431
Merge: 4eeb29ee 3d46fc35
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 15:01:36 2020 +0100

    Merge branch '6.x' into 7.x

commit 3d46fc355d70db2462815b62139f8b0a0f3a16c3
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:54:45 2020 +0100

    Update Faker (#5461)

commit 22fa816fdf80a0bd821a4249358dd921ed76fb1a
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:11:46 2020 +0100

    Delete removed webpack flag (#5460)

commit aeec665b75258eea6cc03df1945e60f066183305
Author: Dries Vints <[email protected]>
Date:   Thu Oct 22 14:31:01 2020 +0200

    Update composer.json (#5452)

commit 4eeb29ee12e980969e8d9f2a1cd465e514a0f76e
Author: Dries Vints <[email protected]>
Date:   Mon Sep 21 17:59:16 2020 +0200

    Update changelog

commit b9b282a71933e0279fea63fa0302e9a30a4c2efe
Author: Youri Wijnands <[email protected]>
Date:   Tue Sep 8 14:50:51 2020 +0200

    Use the new Google Fonts API (#5396)

    https://developers.google.com/fonts/docs/css2

commit a7a40d77447358a57da02f202563c50344dc5a44
Merge: dc5817bb 179e52bd
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:28:00 2020 +0200

    Merge branch '6.x' into master

commit 179e52bdd719fb456ed49a2bf8e42f922a6f5da2
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:27:47 2020 +0200

    Fix logo

commit dc5817bbf2552b48d93bde99688d56e99b7a7708
Author: Dries Vints <[email protected]>
Date:   Fri Sep 4 10:39:28 2020 +0200

    Update Handler.php

commit 2c69ec987e2dca71008684fc80bbe56c55427dc3
Merge: fa43c0a3 921b14b9
Author: Graham Campbell <[email protected]>
Date:   Wed Aug 26 09:39:37 2020 +0100

    Merge branch '6.x' into master

commit fa43c0a333d623a393fa33c27a1376f69ef3f301
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:44:47 2020 +0200

    Update CHANGELOG.md

commit 921b14b954d51125b8369299a6ba18d78735367d
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:16:01 2020 +0200

    Update CHANGELOG.md

commit 39a58710ba3e5aff0b3588fe748fa24e066d17b0
Merge: b3f60041 0512f006
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:08:41 2020 +0200

    Merge pull request #5370 from laravel/bump-7

    [7.x] Set framework version ^7.24

commit bbd36167158f29148095085fa81fed211ad676d2
Merge: 407b6b8b e96840e2
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:07:55 2020 +0200

    Merge pull request #5369 from laravel/bump-6

    [6.x] Set framework version ^6.18.35

commit 0512f00664445c452abbb470b9aaf4a0c7f78b26
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:29:43 2020 +0100

    Set framework version ^7.24

commit e96840e20673ed87e684b8ee814bdf02c1c8dfcc
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:28:47 2020 +0100

    Set framework version ^6.18.35

commit b3f600415d3d1eb35c3f0f66e40ffa32c4bc77f0
Merge: a7b70fcc 407b6b8b
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 11:09:47 2020 +0100

    Merge branch '6.x' into master

commit 407b6b8b04820a7fc0eb3143a8255abbeabb3eb9
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:52:00 2020 +0100

    Revert "Apply fixes from StyleCI (#5356)" (#5357)

    This reverts commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560.

commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:49:11 2020 +0100

    Apply fixes from StyleCI (#5356)

commit 0e7fd2beb18e6f5c0213b0f162611d5e75ce42f4
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:59:20 2020 +0200

    Fix version

commit a7b70fcc310fee9d78448e078fef9003150ee8aa
Author: Taylor Otwell <[email protected]>
Date:   Mon Jul 27 10:57:16 2020 -0500

    fix version

commit 074c3840ff6be2c562d97ec0d68a04b0699493a1
Merge: f465c511 b1277e2e
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:34:05 2020 +0200

    Merge pull request #5355 from laravel/bump

    [6.x] Bumped laravel 6 min version for new LTS users

commit b1277e2eb2e586b3cb09bbf545aa7fab0a4fd0ca
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 16:23:43 2020 +0100

    Bumped laravel 6 min version for new LTS users

commit e9e7c972661668f4a4c747e951c6e7ce8e3adf15
Author: rennokki <[email protected]>
Date:   Mon Jul 27 18:18:18 2020 +0300

    [7.x] Enforce ^7.22.1 due to security issues (#5354)

    * enforce ^7.22

    * Update composer.json

    Co-authored-by: Dries Vints <[email protected]>

commit 791c87a80d1c5eebd75e1bf499f86899d6b2b26f
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:11:30 2020 -0500

    Update README.md

commit 232995cac214bf1fdff4278aa7904d65df3ae899
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:07:41 2020 -0500

    Update README.md

commit f465c511c009235fc7bfa06bfcb41294e60e9b42
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 6d9296c71edc3def466d3cab501b7d1f9b6717d2
Merge: 311c3f82 5f462521
Author: Dries Vints <[email protected]>
Date:   Mon Jul 20 16:15:08 2020 +0200

    Merge pull request #5346 from ahinkle/patch-1

    Bump lodash from 4.17.13 to 4.17.19

commit 5f46252168977e8850b555da057406a835a9b1f9
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 311c3f823a6f09df5e9b882906456e9caa02132c
Author: Taylor Otwell <[email protected]>
Date:   Fri Jun 12 09:35:55 2020 -0500

    tweak phpunit.xml

commit 74df1e26e639f0527429fba8185b743e6538d3ac
Merge: 6e5f4093 2f33300a
Author: Dries Vints <[email protected]>
Date:   Fri Jun 12 10:36:11 2020 +0200

    Merge pull request #5320 from barryvdh/patch-4

    Bump fruitcake/laravel-cors

commit 2f33300abe3684a42acd2d9dce35569e988d9c13
Author: Barry vd. Heuvel <[email protected]>
Date:   Fri Jun 12 08:50:58 2020 +0200

    Bump fruitcake/laravel-cors

commit 6e5f40939ce15d731276b2ad6e5fd08057faa79a
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 3 08:30:51 2020 -0500

    Update README.md

commit 9e5ba571a60a57ca2c3938bc5bd81d222cb6e618
Author: Taylor Otwell <[email protected]>
Date:   Thu May 28 10:08:01 2020 -0500

    add password reset migration

commit 5639581ea56ecd556cdf6e6edc37ce5795740fd7
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 16:50:22 2020 -0500

    add basic trust host middleware

commit c10489131ef28ecd46529e37b558ae93a20e3fb8
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 10:47:20 2020 -0500

    fix formatting

commit 7b0b5d8310143269d8de50442499b77187f8ee5a
Author: Ryan England <[email protected]>
Date:   Thu May 14 14:50:14 2020 +0100

    Update sponsor link (#5302)

    British Software Development have rebranded to Many, link and link text updated accordingly.

commit 7d62f500a789416738a7181d5217d33ca096db04
Author: feek <[email protected]>
Date:   Mon May 4 06:31:39 2020 -0700

    chore: update typehint to be nullable (#5296)

    By default, this property is null. Therefore, it should be marked as nullable

commit 0f133c1e8eff44d765a40fc1934172e7bf046e56
Author: fragkp <[email protected]>
Date:   Fri May 1 16:35:51 2020 +0200

    set default auth_mode for smtp mail driver (#5293)

    Co-authored-by: KP <[email protected]>

commit 785405b34b3fcf9be0ab1262c4eaa72569fac218
Merge: 3cdfe0ce d7d342c2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 27 16:32:54 2020 +0200

    Merge branch '6.x'

commit d7d342c2f546576524e449c1fae69dbc885a21c2
Author: Nabil Muh. Firdaus <[email protected]>
Date:   Mon Apr 27 20:38:20 2020 +0700

    Disable webpack-dev-server host check (#5288)

commit 3cdfe0ce952c0b202150855b2f846996ebd4ba4a
Merge: b5f008a8 8aab222c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:47:28 2020 +0200

    Merge branch '6.x'

commit 8aab222c12ea63711e3b6b41b23c6b6f2231588c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:45:26 2020 +0200

    Update CHANGELOG.md

commit b5f008a8bff29219800b465e613bc19a191ac815
Author: Dries Vints <[email protected]>
Date:   Wed Apr 15 13:46:52 2020 +0200

    Update CHANGELOG.md

commit 103fc0b4513d9ffbc33ebb31f74f9fba81d2b100
Merge: 5f9ee30e 0d23e5f7
Author: Dries Vints <[email protected]>
Date:   Tue Apr 14 10:58:32 2020 +0200

    Merge pull request #5278 from voyula/patch-1

    [7.x] Normalize Style

commit 0d23e5f761c0cc98318e883dbce13a43a3c13226
Author: Musa <[email protected]>
Date:   Tue Apr 14 11:56:29 2020 +0300

    [7.x] Normalize Style

    See: https://github.com/laravel/framework/blob/7.x/phpunit.xml.dist#L14

commit 5f9ee30e379390f9ce506d934314cb6ff6d7d355
Author: Igor Finagin <[email protected]>
Date:   Thu Apr 9 19:03:28 2020 +0300

    Disable Telescope in PHPUnit (#5277)

    PHPUnit throw exception when Telescope is enabled

commit e2c9261c2dfe2d0d0456c8ad113d147cce153885
Merge: 2a2522d8 73f723a2
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:56:58 2020 +0200

    Merge branch '6.x'

commit 73f723a2f4153f87b3d45d23addc0923f233de57
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:54:25 2020 +0200

    Add both endpoint and url env variables (#5276)

commit 2a2522d8824c0852e30a7e3e07d46a543eb4b33d
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 29 10:38:29 2020 -0500

    fix wording

commit f140d926d3c24e854578a9eb6a2b2f7fe763abf5
Merge: dccc9334 b26aaff2
Author: Dries Vints <[email protected]>
Date:   Sat Mar 28 11:57:59 2020 +0100

    Merge pull request #5271 from winter-ice/master

    [7.x] Consistent filename

commit b26aaff2100e3f01aee0dc96ad7657ddd2d5a07c
Author: ice <[email protected]>
Date:   Sat Mar 28 09:53:47 2020 +0800

    consistent filename

commit dccc933416c7f3a9bf9824fd8515b2daa51f6973
Merge: 6628b7a1 d067d7d8
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:31:42 2020 +0100

    Update CHANGELOG.md

commit d067d7d889e69d28e609534e3c5cdf5773462df9
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:26:16 2020 +0100

    Update CHANGELOG.md

commit 6628b7a1b48c2f559ec01b9e8e77872b63e0fb70
Merge: d82bf976 b7b6e35b
Author: Graham Campbell <[email protected]>
Date:   Tue Mar 24 13:55:12 2020 +0000

    Merge branch '6.x'

commit b7b6e35bf88f346832bdd32b71ca7ed4f0ceddd5
Author: Jacob Honoré <[email protected]>
Date:   Tue Mar 24 14:11:36 2020 +0100

    Fix s3 endpoint url reference (#5267)

commit d82bf9768b5d486d08159c191bec8a3d7b426436
Author: Markus Podar <[email protected]>
Date:   Sun Mar 15 17:25:50 2020 +0100

    [7.x] Allow configuring the timeout for the smtp driver (#5262)

    * Allow configuring the timeout for the smtp driver

    The default is the same as in `\Swift_Transport_EsmtpTransport::$params`

    * Corrected default

    * Update mail.php

    Co-authored-by: Graham Campbell <[email protected]>
    Co-authored-by: Taylor Otwell <[email protected]>

commit 52f69fcf2529501bed81b2bc5b036c4edd729cd5
Author: Taylor Otwell <[email protected]>
Date:   Sat Mar 14 16:07:23 2020 -0500

    add sponsor link

commit f93f4ad8bf114116a7c6917e7da155b5656463af
Author: Mathieu TUDISCO <[email protected]>
Date:   Fri Mar 13 20:53:56 2020 +0100

    Fix session config changes (#5261)

    * Fix session config changes

    * Update session.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit 166abfa35c535f4572d5971a99aec45cc8c63ff6
Author: Barry vd. Heuvel <[email protected]>
Date:   Wed Mar 11 21:08:52 2020 +0100

    Update default CORS config (#5259)

commit c7a0002432351690d28223afa7caa272e769e226
Author: André Ricard <[email protected]>
Date:   Wed Mar 11 09:37:46 2020 -0300

    Fix the code indent of object operators (#5258)

    This commit fixes the code indent of object operators, as following the framework code standards -> 2.4. Indenting

commit b0ce2adc423ff175a20838ee5f2c858cbc63b11f
Author: Roberto Aguilar <[email protected]>
Date:   Fri Mar 6 15:16:30 2020 -0600

    Add new SQS queue suffix option (#5252)

    As described in laravel/framework#31784, this option will allow to
    define a queue name suffix.

commit 641fcfb60aa47266c5b4767830dc45bad00c561c
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 6 07:57:11 2020 -0600

    remove config entry

commit 36373983adaea3a021ef968b99de038b1fc4f55c
Merge: 3aa22403 5ddbfb84
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:48:34 2020 +0000

    Merge branch '6.x'

commit 5ddbfb845439fcd5a46c23530b8774421a931760
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:47:59 2020 +0000

    Ensure that app.debug is a bool

commit 3aa22403c7d865049a735c51fadf60add498840e
Author: Taylor Otwell <[email protected]>
Date:   Wed Mar 4 16:45:31 2020 -0600

    remove empty line from phpunit.xml (#5245)

    I'm not sure if there's a style rule for this, but it seems very out of place to be the only empty line in the whole file.

commit efcf74f422b381a69da8f673061eb94487e6f557
Author: Mark van den Broek <[email protected]>
Date:   Wed Mar 4 15:05:25 2020 +0100

    [7.x] Add Mailgun and Postmark mailer (#5243)

    * Add Mailgun and Postmark mailer

    * Formatting

    * Update mail.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit c9cf57a00c76c58afec25a822846f0798661e372
Author: Benedikt Franke <[email protected]>
Date:   Wed Mar 4 15:04:39 2020 +0100

    Add serialize option to array cache config (#5244)

    This documents the new configuration option from https://github.com/laravel/framework/pull/31295

commit 876142d709b99af0211315c4a8e8f93f38790f25
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 20:42:38 2020 +0100

    Update CHANGELOG.md

commit 2d7b45bfb465d838a9f670e35738ac13166410e9
Merge: 672f626d e773d388
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 18:18:11 2020 +0100

    Merge branch '6.x'

commit e773d3885b30ec77c8f0a3bbca31c914b80d3762
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 18:15:59 2020 +0100

    Update CHANGELOG.md

commit 672f626da1788a46bf6bc830d15725ee3ae668d8
Author: Maxime Willinger <[email protected]>
Date:   Mon Mar 2 17:52:06 2020 +0100

    Add array mailer (#5240)

commit 7bea49b8ee35728a791bf1e50e894b36f3c8843e
Author: Maxime Willinger <[email protected]>
Date:   Mon Mar 2 16:21:08 2020 +0100

    Use MAIL_MAILER in test environment (#5239)

commit d7c602c164bfa5db8d02c139769558e336f24d89
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 17:30:43 2020 +0100

    Update app.php (#5237)

commit 0b14a741eb62f7b7d316b27f7b0e8bff770e3f7b
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 16:26:30 2020 +0100

    Update app.php (#5237)

commit 88a763e36f1d39be9b9924bbd1007a4a7b2eee9f
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 16:21:15 2020 +0100

    Update app.php (#5237)

commit 705076ffc28a834a1eb76b3550be2b6269a8fefb
Author: Graham Campbell <[email protected]>
Date:   Mon Feb 24 14:48:16 2020 +0000

    Bumped min guzzle

commit 3233e6f8097816349137eb46d03c9e83a5321259
Merge: d529de06 8cece725
Author: Graham Campbell <[email protected]>
Date:   Mon Feb 24 14:47:21 2020 +0000

    Merge branch 'master' into develop

commit 8cece7259806b3e4af6f185ffa4772dded70cd21
Author: Sjors Ottjes <[email protected]>
Date:   Mon Feb 24 15:37:15 2020 +0100

    Remove redundant default attributes from phpunit.xml (#5233)

commit d529de062d16ac29f48c901ea02e9dacde10ef47
Author: Dries Vints <[email protected]>
Date:   Thu Feb 13 16:03:25 2020 +0100

    Update composer.json

commit d038d1f6b65ba1c48bd608b535cdc04d826821ba
Author: Dries Vints <[email protected]>
Date:   Thu Feb 13 16:00:10 2020 +0100

    Update composer.json

commit c434eae43d673a709bb840f5f2e03b58da30682b
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 12 16:20:50 2020 -0600

    guzzle

commit 6b9050226e9ada706143a8b3d90c4a4d5e4355e2
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 12 09:30:09 2020 -0600

    use phpunit 0

commit 2c4fa1ab2815fd10f6e797f76c407a5fddb294aa
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 5 16:46:09 2020 -0600

    formatting

commit d7f67f631d7743c4d877197089f17dc4b62ee792
Author: Andrew Brown <[email protected]>
Date:   Wed Feb 5 10:48:51 2020 -0600

    styling

commit 153746c2c17b6199294ec97f4fea95ed34241c7b
Author: Andrew Brown <[email protected]>
Date:   Wed Feb 5 10:33:45 2020 -0600

    add `links` option to filesystems config

    https://github.com/laravel/framework/pull/31355

commit eb3143ea720d229c54a31b07b582ead58a216a41
Author: Nuno Maduro <[email protected]>
Date:   Tue Feb 4 22:20:49 2020 +0100

    Uses latest stable of Collision (#5221)

commit c78a1d8184f00f8270d8a135cc21590837b6bfbd
Author: ARCANEDEV <[email protected]>
Date:   Fri Jan 31 14:48:04 2020 +0100

    Bump fzaninotto/faker version to support PHP 7.4 (#5218)

    Bumping `fzaninotto/faker` version to support PHP 7.4, especially when running composer with `--prefer-lowest` flag.

    PRs related to version `^1.9.1`:

    * https://github.com/fzaninotto/Faker/pull/1748
    * https://github.com/fzaninotto/Faker/pull/1843

commit c81712bdf46b9fbd8641f07641470195d5487709
Author: Andrey Helldar <[email protected]>
Date:   Thu Jan 30 17:14:42 2020 +0300

    [6.x] Update cross-env to the latest (#5216)

    This is not a fix for the vulnerability.
    Just updating the dependency to the latest version.

    @see https://yarnpkg.com/package/cross-env

    Yes, I know that they recently released version 6.0 and in a short time 7.0.

commit f04029a64d93401e0d6788253c5134cdf8804607
Author: Freek Van der Herten <[email protected]>
Date:   Mon Jan 27 15:53:34 2020 +0100

    use ignition v2 (#5211)

commit 38a1249a002bf1dd201bda614454b28ed8c41f59
Merge: 91dd1f61 2503ed68
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:49:40 2020 -0600

    Merge remote-tracking branch 'origin/develop' into develop

commit 91dd1f61cdd3c7949593a4435dff8b77322761f2
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:49:20 2020 -0600

    formatting

commit 2503ed687ff4e8d068a36a9fe6d990492ffdbbed
Merge: db596ba0 1d094a80
Author: Graham Campbell <[email protected]>
Date:   Fri Jan 24 13:48:38 2020 +0000

    Merge branch 'master' into develop

commit 550282b0944d10eb78bf3ff4e556fe10a83ad8d7
Merge: db596ba0 678901cc
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:46:08 2020 -0600

    Merge branch 'check-compiled' of https://github.com/browner12/laravel into browner12-check-compiled

commit 1d094a80849133899fa4a9ba9b7598de7bc6d370
Author: Andrey Helldar <[email protected]>
Date:   Fri Jan 24 16:43:48 2020 +0300

    [7.x] Update cross-env and resolve-url-loader to the latest (#5210)

commit 678901cc4d2ee139b547375299b43eac19a37674
Author: Andrew Brown <[email protected]>
Date:   Thu Jan 23 10:40:45 2020 -0600

    update name

commit 2fe113e606989e3dec86dc7e716833facafe55bc
Author: Andrew Brown <[email protected]>
Date:   Thu Jan 23 10:27:12 2020 -0600

    add new `check_compiled` option

commit db596ba02aaedd925be3dd3c51d486355da277db
Merge: ffc74ba1 b1f35786
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 17 16:15:48 2020 -0600

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit ffc74ba143a7de4a89f2c3fd525a5621ca879e38
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 17 16:15:38 2020 -0600

    remove hyphen on email

commit b1f35786eb6352d1a613ffe0e2b7e55f6e1a316e
Merge: 94f8ee3c 9d0862b3
Author: Dries Vints <[email protected]>
Date:   Tue Jan 14 17:52:04 2020 +0100

    Merge branch 'master' into develop

commit 9d0862b3340c8243ee072afc181e315ffa35e110
Merge: 9b6d1b14 f44f065a
Author: Dries Vints <[email protected]>
Date:   Tue Jan 14 17:50:01 2020 +0100

    Merge pull request #5201 from aimeos/master

    Use file session driver again

commit 9b6d1b14bcbeba1b52a75a48dedc0402b1f08bb5
Author: Caíque de Castro Soares da Silva <[email protected]>
Date:   Mon Jan 13 13:36:09 2020 -0300

    Update laravel mix and sass loader (#5203)

commit f121af8985d1dbb665cb9ca4b6a9f7dbb6211a7c
Author: Robert Korulczyk <[email protected]>
Date:   Sun Jan 12 16:06:29 2020 +0100

    Add missing full stop for some validation messages (#5205)

commit 94f8ee3cade8d08097ed0255e4fb0fc4e56a8cd3
Merge: 130b8c8b b46c16b4
Author: Dries Vints <[email protected]>
Date:   Thu Jan 9 12:42:11 2020 +0100

    Merge branch 'master' into develop

commit b46c16b4246c7dc648158221c49f5b2e785e7c30
Author: Dries Vints <[email protected]>
Date:   Thu Jan 9 12:41:21 2020 +0100

    Update CHANGELOG.md

commit 130b8c8bcb8f167e7013e7846004b2df3e405b72
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:16:33 2020 -0600

    add ses

commit e43d4546a9c0bde49dae51fd6f4e2766674f1152
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:14:01 2020 -0600

    fix comment

commit 61ec16fe392967766b68d865ed10d56275a78718
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:10:37 2020 -0600

    work on mail configuration file

commit 76d822768dcab14fa1ee1fd1f4a24065234860db
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:01:42 2020 -0600

    update mail configuration file

commit f44f065a2b2cad1a947a7e8adc08fcc13d18c49c
Author: Aimeos <[email protected]>
Date:   Wed Jan 8 12:44:53 2020 +0100

    Use file session driver again

commit eca7bc7d66cef63500a62e8deaa3fce1772f1641
Author: Aimeos <[email protected]>
Date:   Wed Jan 8 12:44:22 2020 +0100

    Use file session driver again

commit 7e5a9154857f598f69978559a6ef9c34c1348e15
Merge: 4bf7dffb 25c36eb5
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:26:17 2019 +0000

    Merge branch 'master' into develop

commit 25c36eb592c57e075acc32a12703005f67c4ec10
Merge: 195faa16 5df3b7b1
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:22:50 2019 +0000

    Merge pull request #5196 from laravel/revert-5006-analysis-qxPGgA

    [6.x] Revert "Apply fixes from StyleCI"

commit 5df3b7b1fe07a22d3275180ece0b31f45682f07e
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:21:39 2019 +0000

    Revert "Apply fixes from StyleCI (#5006)"

    This reverts commit 50176732d66b197de62d5567b79fc77f63e2cfbd.

commit 4bf7dffb90366438e849c0c96e06e2a638eec336
Author: Graham Campbell <[email protected]>
Date:   Mon Dec 30 18:23:10 2019 +0000

    Bumped defaults for Laravel 7 (#5195)

commit 8af8af0cbfc5cdfaa3f757afe736a9d28d83851c
Merge: 0bec06cd 195faa16
Author: Graham Campbell <[email protected]>
Date:   Sat Dec 28 00:35:40 2019 +0000

    Merge branch 'master' into develop

commit 0bec06cd45a7f6eda0d52f78dd5ff767d94ed5cc
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 27 08:56:53 2019 -0600

    formatting

commit c222f6d04ff29489daec178d15ae23a3c13838f8
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:54:10 2019 +0100

    CS

commit e4683c6ecaff9a7dc779fb0dfe39f6336832fc9d
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:48:38 2019 +0100

    Revert routes

commit 860ec9f2a48c65d30998942263a4f9a849e9b0a0
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:46:41 2019 +0100

    Use config instead of middleware property

commit 195faa16cbeabc84b0eb9c9f4227ead762c93575
Author: Anton Komarev <[email protected]>
Date:   Wed Dec 25 18:05:29 2019 +0300

    Fix types consistency in database config (#5191)

commit 777baff7d5abdf38330714ccb5ff3dc3ee5d2f9c
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 22:28:34 2019 +0000

    Update composer.json

commit bee0e8c94c37bf3909e3fbe7e100a106dbf57fab
Author: Barry vd. Heuvel <[email protected]>
Date:   Tue Dec 24 22:26:06 2019 +0100

    Add HandleCors middleware

commit db940594ad86a22663acc3c119caab571344e2ee
Merge: 4d565e68 846f7a19
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 17:45:25 2019 +0000

    Merge branch 'master' into develop

commit 846f7a193a6c4ff92b6595596c9bbcb3cf8c426e
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 17:35:58 2019 +0000

    Correct exception handler doc (#5187)

commit 4d565e681cbf496e0cdfb58743d4ae8238cef15e
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 15:10:23 2019 -0600

    import facades

commit f4c8190744bbab94e7751518bfd0fdce82ee3ab0
Merge: cf5e99e9 e6471a6f
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:48:16 2019 -0600

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit cf5e99e9aa998c56eda0765a9aefdc14c439e0df
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:48:04 2019 -0600

    change comment

commit e6471a6f2e73dd244f957751ab315aa5903c32ea
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:15:04 2019 -0600

    Apply fixes from StyleCI (#5186)

commit f13aef873333aef538d526217d023fe81e87acd7
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:14:43 2019 -0600

    move var

commit 12c28822f402a948dac389bf037c550524845ba3
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:14:01 2019 -0600

    one liner

commit 3ee0065bcd879b82ee42023165f8a8f71e893011
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:10:38 2019 -0600

    remove unnecessary variable

commit 13e43893ba2457c3e49898f0066a5ce8d7ea74f4
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 13:58:16 2019 -0600

    remove auth migration that is now in laravel/ui

commit b5bb91fea79a3bd5504cbcadfd4766f41f7d01ce
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 11:48:38 2019 -0600

    Remove controllers that are generated by laravel/ui package.

    These controllers will be installed and generated by the laravel/ui (2.0) package in Laravel 7.x.

commit 583d1fa773803f951653af490b3dcc89b967ddbb
Author: Graham Campbell <[email protected]>
Date:   Thu Dec 19 15:36:06 2019 +0000

    [7.x] Remove register in auth provider (#5182)

    * Remove register in auth provider

    * Update AuthServiceProvider.php

    * Update Kernel.php

commit 7d70bfe8289fce07fa595340578b13f4bdac495d
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 13:44:16 2019 -0600

    Utilize Authentication Middleware Contract  (#5181)

    * adjust auth middleware to point to contract

    * remove middleware priority

commit f589a7e89782a8419f7ad54b512289f60ffa8619
Merge: 5d50d30c 99f183b5
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:24:10 2019 -0600

    Merge branch 'master' into develop

commit 99f183b5c794354f7387d503b40d2be63e678a80
Merge: 140d4d9b b2734a9c
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:02:53 2019 -0600

    Merge branch 'master' of github.com:laravel/laravel

commit 140d4d9b0a4581cec046875361e87c2981b3f9fe
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:02:46 2019 -0600

    use class name to be consistent with web middleware

commit b2734a9c313ac637e9b8cffa80f9fa9d3da96a09
Author: Anton Komarev <[email protected]>
Date:   Wed Dec 18 20:17:32 2019 +0300

    Add MAIL_FROM_ADDRESS & MAIL_FROM_NAME to .env file (#5180)

commit c5f9126981fe340edf71de284b27926323d3271b
Author: Andrew Minion <[email protected]>
Date:   Wed Dec 18 09:41:11 2019 -0600

    default email from name to app name (#5178)

commit 17f0ff22057a028f28b8aa17fadbc7fe4136bf66
Author: Michael Stokoe <[email protected]>
Date:   Wed Dec 18 15:38:03 2019 +0000

    Updated config/logging.php (#5179)

    This adds a default emergency logger path to the logging config file.
    This change goes hand-in-hand with my changes found here:
    https://github.com/Stokoe0990/framework/commit/7a03776bc860bde4cdc82e69ab133a755b66dd2d

commit 89e83915e94142ae79db7480561ae8a7a525e114
Merge: dd93aca5 40f93daa
Author: Dries Vints <[email protected]>
Date:   Mon Dec 16 11:35:41 2019 +0100

    Merge pull request #5175 from canvural/patch-1

    [6.x] Update redirectTo return type PHPDoc

commit 40f93daa83b17ad47c51ec9beed4c1ba79eb66ed
Author: Can Vural <[email protected]>
Date:   Sat Dec 14 11:48:14 2019 +0100

    Update redirectTo return type PHPDoc

commit dd93aca5970290dfda651f00a80fdd78b66da226
Merge: f48e2d50 136085bf
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 13 22:43:22 2019 -0600

    Merge branch 'master' of github.com:laravel/laravel

commit f48e2d500cb53cc4a09dfcb40beb0abafd79de4f
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 13 22:42:46 2019 -0600

    change some default settings

commit 136085bfd8361969a7daedc2308e0b59dbd41f60
Author: Bert Heyman <[email protected]>
Date:   Fri Dec 13 15:18:09 2019 +0100

    Add "none" to supported same site options in session config (#5174)

commit 972f3cd2832cd8a8e9e0be96817d10840b735316
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 10 08:59:27 2019 -0600

    DRY up path (#5173)

commit f4b1dc6df04f4ef9b4b15e2c38668e8cb168c253
Author: Dries Vints <[email protected]>
Date:   Fri Dec 6 16:46:02 2019 +0100

    [6.x] Implement integration test and in-memory DB (#5169)

    * Use in-memory DB for testing

    * Extend from PHPUnit test case for unit tests

commit 9b6643226da6bd3803da22fb5dc695b1a279c5aa
Author: byjml <[email protected]>
Date:   Wed Dec 4 21:57:13 2019 +0300

    Consistent order (#5167)

    Keep the alphabetical order of the validation messages.

commit 5d50d30c94ab7c3dcf28562a7f2116cb8922183e
Author: Graham Campbell <[email protected]>
Date:   Wed Nov 27 15:26:11 2019 +0000

    Bumped versions

commit fb3e88c313d80735270385a825363e446fd77174
Merge: b7a5bc7f b56fe840
Author: Graham Campbell <[email protected]>
Date:   Wed Nov 27 15:21:41 2019 +0000

    Merge branch 'master' into develop

commit b56fe84011bdbc3b42b8ffdaadc9a113635a751e
Author: Graham Campbell <[email protected]>
Date:   Tue Nov 26 18:46:10 2019 +0000

    Use laravel/tinker v2 (#5161)

commit b7a5bc7f3ca6d305343624aded77fe68c26bc018
Author: Nuno Maduro <[email protected]>
Date:   Mon Nov 25 21:46:55 2019 +0100

    Bumps Collision dependency to v4.0 (#5160)

commit 2913a55d87461fabe94907c5728d7a9451bcae80
Author: Graham Campbell <[email protected]>
Date:   Mon Nov 25 14:46:29 2019 +0000

    [7.x] Switch to Symfony 5 (#5157)

    * Update exception handler

    * Explictly specify 'lax' same site config

    * Use the null secure option for session cookies

commit 2f8e55a9ec923a481c1a24733c70ae750480f178
Author: Mark van den Broek <[email protected]>
Date:   Mon Nov 25 15:10:36 2019 +0100

    Rename `encrypted` to `forceTLS`. (#5159)

commit c473b53626eab20c44075b02770e948a6e757c2b
Merge: 3c92fb3a 1ee38a10
Author: Dries Vints <[email protected]>
Date:   Thu Nov 21 18:29:26 2019 +0100

    Merge branch 'master' into develop

commit 1ee38a10f8884e24290c86c04d8d1ba5f8bc8d10
Author: Dries Vints <[email protected]>
Date:   Thu Nov 21 18:28:39 2019 +0100

    Update CHANGELOG.md

commit 3c92fb3a19a7fbff0085bfbbe887682095d61520
Merge: 21f24784 c15a5ee0
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 17:35:09 2019 +0100

    Merge branch 'master' into develop

commit c15a5ee0d205ade08ad86174cb9c38aafd2bd226
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 17:34:53 2019 +0100

    Update readme

commit 21f24784814092f44117ea2cb29b696422b66e93
Merge: 2e2be97c 94056af6
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:06:22 2019 +0100

    Merge branch 'master' into develop

commit 94056af6e84769c8e9ad394d49c0c235a6966772
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:06:05 2019 +0100

    Rename readme

commit 578018940241d894befdf90bb7b61672b0f7d055
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:05:52 2019 +0100

    Consistent readme

commit 2e2be97c2686bf919f06a47849902b80586cfa6c
Author: Dries Vints <[email protected]>
Date:   Fri Nov 1 13:53:14 2019 +0100

    Implement new primary key syntax (#5147)

commit b659069bced2435cc53fca6fd4290edcae5dd9e0
Merge: 89a80da1 bfd4b1e9
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:52:38 2019 +0000

    Merge branch 'master' into develop

commit bfd4b1e92f7c6b4e6b74cfdde995a5afad648d96
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:51:17 2019 +0000

    Update .styleci.yml

commit 89a80da13232c00d3e2ac8d8e372075086ced4fb
Merge: 9df12c3c 953b488b
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:12:48 2019 +0000

    Merge branch 'master' into develop

commit 953b488b8bb681d4d6e12227645c7c1b7ac26935
Author: Taylor Otwell <[email protected]>
Date:   Mon Oct 21 13:47:27 2019 -0500

    fix key

commit ba2f2abe830f5d03c52fd9c88411859cf863abd6
Author: Taylor Otwell <[email protected]>
Date:   Mon Oct 21 13:42:31 2019 -0500

    tweak formatting

commit ace38c133f3d8088fc7477f56b9db6fdc0098d06
Author: Michael Chernyshev <[email protected]>
Date:   Fri Oct 18 13:57:19 2019 +0300

    Security fix: Waiting before retrying password reset

commit 400df0b02bcc0e3fc8bc1c75ea494242c3f392af
Author: Gert de Pagter <[email protected]>
Date:   Wed Oct 16 15:18:19 2019 +0200

    Add xml schema to phpunit (#5139)

    This allows an IDE to do auto completion, and show any errors in the configuration

commit 9df12c3ca1c27f0192c64d19ce64b18ec06213d3
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 15 13:15:52 2019 -0500

    ignition doesn't support laravel 7 yet

commit bb969c61d41ec479adbe4a6da797831002b75092
Author: Nuno Maduro <[email protected]>
Date:   Tue Oct 8 22:44:05 2019 +0200

    Fixes required version of the framework within `composer.json` (#5130)

commit dfa5c1f06e11bc6a557a0ead78f38b997235802f
Merge: ccef55ba 39c28801
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 18:39:31 2019 +0200

    Merge branch 'master' into develop

commit 39c28801e8d8a8cfc99c3eed4756c6acc7367e0c
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 18:38:02 2019 +0200

    Update CHANGELOG.md

commit 9bc23ee468e1fb3e5b4efccdc35f1fcee5a8b6bc
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:35:48 2019 -0500

    formatting

commit d1f7a5a886039e28a434905447865ca952032284
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:27:05 2019 -0500

    formatting

commit bc82317a02e96105ad9f3cc0616d491cb5585c62
Merge: 51a1297a ba3aae6c
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:24:50 2019 -0500

    Merge branch 'password-confirmation' of https://github.com/driesvints/laravel into driesvints-password-confirmation

commit ba3aae6c338314c2ba1779f336278c2532071b7c
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 13:45:40 2019 +0200

    Implement password confirmation

commit 4036f17416549758816894dc52dc54eabcc13914
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 13:39:57 2019 +0200

    Remove middleware from password reset

    It's not necessary for the user to be logged out when resetting their password. This allows users to reset their password while logged in. Can be used in combination with the new RequiresPassword middleware.

commit 050c1d880ec1d48ef40d7a0f2b2f1040c23cebb9
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 11:26:03 2019 +0200

    Add new password rule language line

commit 51a1297a2486e2b68883bba9e534ec903f0c10d4
Author: Sangrak Choi <[email protected]>
Date:   Thu Sep 26 21:24:53 2019 +0900

    [6.x] Added OP.GG sponsor (#5121)

    * Added OP.GG sponsor

    * Update readme.md

commit c70c986e58fe1a14f7c74626e6e97032d4084d5f
Author: Roger Vilà <[email protected]>
Date:   Fri Sep 13 21:47:34 2019 +0200

    [6.x] Add 'null' logging channel (#5106)

    * Add 'none' logging channel

    * Remove extra spaces

    * Rename 'none' channel to 'null'

    * Update logging.php

commit 42e864f3f5f8fe5bfbdbac66dc2e4b95159fedcb
Author: Tim MacDonald <[email protected]>
Date:   Fri Sep 13 22:19:06 2019 +1000

    remove testing bootstrap extension (#5107)

commit cba8d19f8603fc409c2a72a0f33a4b0a7fab2ee5
Author: James Merrix <[email protected]>
Date:   Thu Sep 12 13:48:34 2019 +0100

    Added Appoly sponsor (#5105)

commit 56157b9cd201b5dc6fbe5f9f73014fa32e5a7838
Author: Graham Campbell <[email protected]>
Date:   Wed Sep 11 13:10:18 2019 +0100

    Revert "According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)" (#5102)

    This reverts commit 74d84e9371b2d2486edcc8f458adc9f22957d68b.

commit ccef55ba553f9eb6e6d1a13aa19c457aefb6463e
Merge: 1f48b2c5 7d728506
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 20:42:16 2019 +0200

    Merge branch 'master' into develop

commit 7d728506191a39394c5d1fcf47a822b9183f50ed
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 20:41:25 2019 +0200

    Update CHANGELOG.md

commit 1f48b2c5e83374b658f03ca8da5220a6980e3e11
Merge: 55b314ea e6569320
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:27:12 2019 +0200

    Merge branch 'master' into develop

commit e656932002588bcaaa94476f1ed1850747eb4708
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:26:00 2019 +0200

    Apply fixes from StyleCI (#5100)

commit 79fb6af96ebf0325cef15c3132157fdf75f6fd6c
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:25:19 2019 +0200

    Order imports alphabetically

commit 74d84e9371b2d2486edcc8f458adc9f22957d68b
Author: Patrick Heppler <[email protected]>
Date:   Mon Sep 9 20:51:51 2019 +0200

    According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)

    https://bugs.php.net/bug.php?id=78516
    Argon2 requires at least 8KB
    On PHP 7.4 memory 1024 will throw:
    password_hash(): Memory cost is outside of allowed memory range

commit 55b314eadb06164943dbf2ba33b21391441ce237
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:41:28 2019 +0200

    Update CHANGELOG.md

commit 00c00b87bef4bf7fbb7c132015e10a20bbcf4ce4
Merge: cb5047c2 4dbe9888
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:40:26 2019 +0200

    Merge branch 'master' into develop

commit 4dbe9888a5599c270e9131b76eca0ff3527bd350
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:39:25 2019 +0200

    Update CHANGELOG.md

commit 9f2f3b1eeecd79acffcce72977dc3b107e7d2b43
Merge: 31394de4 ca3f91e7
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:29:25 2019 +0200

    Merge branch '5.8'

commit ca3f91e7ed47780ad4128c0592f5966efe51246b
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:29:02 2019 +0200

    Update CHANGELOG.md

commit 8b96bf012871a2e977a4558bf069062c5f03de95
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:26:19 2019 +0200

    Update CHANGELOG.md

commit cb5047c200931d26142e78a315daad03c932f1fc
Merge: 2967197b 31394de4
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:03:17 2019 +0200

    Merge branch 'master' into develop

commit 31394de4d736c171d40bb03d50313c60b0e4af38
Author: Taylor Otwell <[email protected]>
Date:   Sat Sep 7 02:18:51 2019 +0200

    Revert "Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)" (#5095)

    This reverts commit 86908e1eb4a6cc8f5474b1355db4c104c548619e.

commit 4992230ca97551a0a2530e339898037b0ad5af81
Merge: 86908e1e 42936c65
Author: Taylor Otwell <[email protected]>
Date:   Fri Sep 6 13:43:32 2019 -0500

    Merge branch 'patch-1' of https://github.com/SjorsO/laravel into SjorsO-patch-1

commit 86908e1eb4a6cc8f5474b1355db4c104c548619e
Author: Patrick Heppler <[email protected]>
Date:   Fri Sep 6 14:16:32 2019 +0200

    Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)

    With the values
    ````
    'argon' => [
            'memory' => 1024,
            'threads' => 2,
            'time' => 2,
        ],
    ```
    Hash::make() produces password_hash(): Memory cost is outside of allowed memory range on PHP 7.4

commit 2967197b8e2db87768b5534ca923f4f3b15e18f1
Merge: af15fe5e 65959b25
Author: Dries Vints <[email protected]>
Date:   Fri Sep 6 13:14:50 2019 +0200

    Merge branch 'master' into develop

commit 42936c656c70dc39d71dae7e79a487a716f2b1a6
Author: Sjors Ottjes <[email protected]>
Date:   Fri Sep 6 08:17:43 2019 +0200

    style

commit 731cd4c499638138c3331572f726310354d1b1ea
Author: Sjors Ottjes <[email protected]>
Date:   Fri Sep 6 08:16:34 2019 +0200

    add phpunit extension

commit 360993c11eb1fa6d1f5a4eb89a08636f96ccf3ef
Author: Sjors Ottjes <[email protected]>
Date:   Thu Sep 5 16:10:59 2019 +0200

    Update bootstrap.php

commit 65959b25bf791ab7afeac2ffa5a29394638c688f
Author: Darren Craig <[email protected]>
Date:   Tue Sep 3 17:37:05 2019 +0100

    Allowing optional use of yml/yaml file extensions in .editorconfig (#5090)

commit af15fe5ec688f59522e898dc74e0de54d84c3d96
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:54:41 2019 +0200

    Revert "Bump PHPUnit"

    This reverts commit 5fde1337d629bd116602f2e67ead75988ae7568f.

commit 5fde1337d629bd116602f2e67ead75988ae7568f
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:54:00 2019 +0200

    Bump PHPUnit

commit 054bb43038f4acb7f356dd668715225ffc2e55ba
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:53:35 2019 +0200

    Laravel 7

commit 13ab419d59e2f0d2e188a5157a3cc17f72db595c
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 3 08:37:49 2019 -0500

    add ignition

commit 41ee35d01f4e57c47e924400db8a805089664141
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 3 08:37:29 2019 -0500

    add ignition

commit e6becd2ca35a650f51ed49525935e8ca65671152
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 27 16:26:48 2019 -0500

    add new failed driver option

commit 6ff5d6c7b8df5936aa310a5af0ff2fc2ca866708
Merge: 665dfc43 aa74fcb3
Author: Taylor Otwell <[email protected]>
Date:   Fri Aug 23 11:59:05 2019 -0500

    Merge branch 'master' into develop

commit 665dfc4328daeabaa496ac6a0743476348657585
Author: Dries Vints <[email protected]>
Date:   Thu Aug 22 15:22:14 2019 +0200

    [6.0] Use phpredis as default Redis client (#5085)

    * Use phpredis as default Redis client

    Follow up for https://github.com/laravel/framework/pull/29688

    It's best that we already start using `phpredis` as a default to discourage usage of Predis.

    * Update database.php

commit b67acda8928117dc3048180e53f29d09c775b908
Author: Christopher Lass <[email protected]>
Date:   Wed Aug 21 15:14:32 2019 +0200

    Rename 2019_08_19_175727_create_failed_jobs_table.php to 2019_08_19_000000_create_failed_jobs_table.php (#5082)

commit aa74fcb38f9f318159657ba5050eda62ec043b11
Author: Jess Archer <[email protected]>
Date:   Wed Aug 21 22:47:43 2019 +1000

    Remove manual adding of X-CSRF-TOKEN header (#5083)

    This is unnessecery code because Axios already automatically adds
    a X-XSRF-TOKEN header from the XSRF-TOKEN cookie encrypted value on
    same-origin requests. The `VerifyCsrfToken` middleware and Passport's
    `TokenGuard` already allow using the `X-XSRF-TOKEN` header.

commit b84bcc6446d6fb7515082824679f63c701c269fa
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 20 15:04:04 2019 -0500

    Update readme.md

commit 41e915ae9059ecbc8069b38554df1a4f73844161
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 20 15:03:32 2019 -0500

    Update readme.md

commit b7d2b48b75afbaa34c82688cb30be2f00a7d8c57
Author: Taylor Otwell <[email protected]>
Date:   Mon Aug 19 12:57:41 2019 -0500

    add failed jobs table

commit 051dea594118c87506f5f0a15b2af2cff49959b3
Author: Taylor Otwell <[email protected]>
Date:   Wed Aug 14 09:19:31 2019 -0500

    formatting

commit c07809e224a09366914964716eab911c595a9ceb
Merge: 4852f483 bb433725
Author: Dries Vints <[email protected]>
Date:   Wed Aug 14 13:49:52 2019 +0200

    Merge branch 'master' into develop

commit bb433725483803a27f21d3b21317072610bc3e9c
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 13 15:05:56 2019 -0500

    formatting

commit 83d2ecc0e9cca7ae6989134dede4a5653a19430b
Author: Dries Vints <[email protected]>
Date:   Tue Aug 13 18:19:40 2019 +0200

    Remove Stripe config settings

    These now ship with a dedicated config file for Cashier.

commit 4852f483466bdc83bac132421832d3eec07bcfaf
Author: Dries Vints <[email protected]>
Date:   Mon Aug 12 14:48:54 2019 +0200

    Remove deprecated language line (#5074)

commit a5111cf70f7cc057ed528a28ead6ab1eb48b7852
Merge: fad6ef3d d5691a2e
Author: Dries Vints <[email protected]>
Date:   Mon Aug 12 11:56:28 2019 +0200

    Merge branch 'master' into develop

commit d5691a2e6d8725d64d8569f9b1682012ced83eda
Author: Dries Vints <[email protected]>
Date:   Tue Aug 6 14:32:07 2019 +0200

    Add missing trailing semicolon

commit fad6ef3d4b932fdf0173136b353eb3ce853e2c76
Author: Chuck Rincón <[email protected]>
Date:   Fri Aug 2 15:54:12 2019 -0500

    [6.0] - Add vapor link on the welcome view (#5072)

commit 8f2a27868f7f9e0a0bbf69fa83d06b8a7a1b7894
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 30 16:40:52 2019 -0500

    formatting

commit e21657dc5a45299b3c72007d0a9a6f42c3461d14
Merge: 5391ccca 8ca56226
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 30 16:36:53 2019 -0500

    Merge branch 'config_caching_v2' of https://github.com/timacdonald/laravel into timacdonald-config_caching_v2

commit 5391cccaad03f0c4bf8d49bfdd0f07fcf7e79f2d
Author: Dries Vints <[email protected]>
Date:   Mon Jul 29 11:22:12 2019 -0400

    Update version constraint (#5066)

commit 0dd31baf2a153629d7c84b0fb2cc69f575b0d376
Merge: 7c9e5ea4 f73795ac
Author: Dries Vints <[email protected]>
Date:   Thu Jul 25 00:49:45 2019 -0400

    Merge branch 'master' into develop

commit f73795ac0569554d3464eecb259aef0d2dc64f72
Author: Ryan Purcella <[email protected]>
Date:   Thu Jul 18 08:20:32 2019 -0500

    Update number of Laracasts videos (#5063)

commit ddbbd0e67b804c379f212233e3b1c91a7b649522
Author: Guilherme Pressutto <[email protected]>
Date:   Tue Jul 16 16:38:28 2019 -0300

    Using environment variable to set redis prefix (#5062)

    It was the only redis setting that wasn't overridable by an environment variable. It can help if you have multiple instances using the same `APP_NAME`, e.g. a staging instance

commit ff15a66d8c8d989ce6e1cee6fcc06c4025d06998
Author: Artem Pakhomov <[email protected]>
Date:   Mon Jul 15 19:41:13 2019 +0300

    Fixed lodash version (CVE-2019-10744) (#5060)

commit 7c9e5ea41293b63e051bd69f7929f8712893eea1
Author: Gergő D. Nagy <[email protected]>
Date:   Fri Jul 12 15:59:55 2019 +0200

    [5.9] Add ThrottleRequests to the priority array (#5057)

    * add ThrottleRequests to the priority array

    * Move ThrottleRequests under Authenticate middleware

commit afb7cd7311acd6e88a2c7faccdb8181583488d25
Author: Miloš Gavrilović <[email protected]>
Date:   Thu Jul 11 17:03:22 2019 +0200

    update deprecated pusher option (#5058)

commit e71f50f664b5b6a6ffbeffac668717bb40c36d93
Author: Gary Green <[email protected]>
Date:   Wed Jul 10 16:11:28 2019 +0100

    Move TrustProxies to highest priority - fixes maintenance mode ip whitelist if behind proxy e.g. Cloudflare (#5055)

commit 8ca562265e9efdd3548b4a1573156d8f185d378e
Author: Tim MacDonald <[email protected]>
Date:   Tue Jul 9 13:05:55 2019 +1000

    style fix

commit 56960ed2a0f5674c9906ce0b3e7dc67925bbce29
Author: Tim MacDonald <[email protected]>
Date:   Fri Jul 5 14:20:33 2019 +1000

    introduce test bootstrapping

commit 78143a1ea02ee1b63e04df3fcaa32bed3637a5ce
Merge: fc39b073 386a4e5c
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 27 20:01:41 2019 -0500

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit fc39b073f3f61a22f1b48329e294ebb881700dbe
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 27 19:57:39 2019 -0500

    remove ui scaffolding

commit 386a4e5c9257612685e0e0b2e4904c3d576da3c3
Merge: 61a0829f ebc6f6e2
Author: Graham Campbell <[email protected]>
Date:   Fri Jun 21 14:24:52 2019 +0100

    Merge branch 'master' into develop

commit ebc6f6e2c794b07c6d432483fd654aebf2ffe222
Author: Sjors Ottjes <[email protected]>
Date:   Tue Jun 18 12:18:58 2019 +0200

    Update .gitignore (#5046)

commit 61a0829f4338ae36e4f9a203e82e69726299be4d
Merge: f053116c 6f3d68f6
Author: Taylor Otwell <[email protected]>
Date:   Tue Jun 4 08:10:42 2019 -0500

    Merge branch 'master' into develop

commit 6f3d68f67f3dab0e0d853719696ede8dfd9cc4e1
Author: Taylor Otwell <[email protected]>
Date:   Tue Jun 4 08:10:26 2019 -0500

    use generic default db config

commit 014a1f0f5e1e757b8669c2ae6e78c49fc8b2978d
Author: ziming <[email protected]>
Date:   Fri May 31 20:54:50 2019 +0800

    Update axios package (#5038)

    Update axios in package.json to ^0.19 so that I don't get security vulnerability notification emails from Github when I push to my laravel project repos even though ^0.18 covers 0.19 as well

commit bf60f7f74f9578902650c30887190f86515a1037
Author: Antoni Siek <[email protected]>
Date:   Thu May 30 18:22:45 2019 +0200

    Added support for new redis URL property in config/database.php (#5037)

    Regarding laravel/framework#28612

commit f053116c5680e77c3a6c73afd193984a17ea482d
Author: Taylor Otwell <[email protected]>
Date:   Thu May 30 08:07:52 2019 -0500

    remove dumpserver since doesn't work on 5.9

commit 953093795869beb658bdd9be9442188f39e62b6a
Author: Kristoffer Högberg <[email protected]>
Date:   Wed May 29 16:12:30 2019 +0200

    Add DYNAMODB_ENDPOINT to the cache config (#5034)

    This adds the DYNAMODB_ENDPOINT environment variable to the
    dynamodb store of the cache cofig.

    Its usage is implemented in the framework as laravel/framework#28600

commit a7a1f44018d781848f15875dfe34a09ed8b6dd03
Merge: 1c824f6f 762e987e
Author: Dries Vints <[email protected]>
Date:   Tue May 21 15:16:00 2019 +0200

    Merge branch 'master' into develop

commit 762e987e5bc4c87fb75f7868f967ec3d19a379e0
Author: Dries Vints <[email protected]>
Date:   Tue May 21 15:15:32 2019 +0200

    Uppercase doctype

    In similar fashion as https://github.com/laravel/framework/pull/28583

commit 1c824f6f9f6e7a3f7ddb98ad80ffdbdbf98c81e1
Merge: c9bb74c7 f8e455e3
Author: Dries Vints <[email protected]>
Date:   Tue May 21 13:41:13 2019 +0200

    Merge branch 'master' into develop

commit f8e455e358046e59deb17b555b8949059a38ff77
Author: Matt Hanley <[email protected]>
Date:   Tue May 14 14:28:37 2019 +0100

    Fix type hint for case of trusting all proxies (string) (#5025)

commit 93c687418963f7c99b641fda905015054c785eb4
Author: Jason McCreary <[email protected]>
Date:   Thu May 9 20:07:43 2019 -0400

    Add ends_with validation message (#5020)

commit c9bb74c7e01cffbb5e185990acecf3fcab7f5eda
Author: Taylor Otwell <[email protected]>
Date:   Wed May 8 08:06:25 2019 -0500

    formatting

commit fe9f8497d98ec0fa6a7d43a2ae4127285b777065
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:57:29 2019 +0200

    Remove services deleted from core

    See https://github.com/laravel/framework/pull/28441 and https://github.com/laravel/framework/pull/28442

commit 7e6af5c031988e7a7c576c6bbbd1747ddfe548cc
Merge: f70fff8a fbd3ad7b
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:52:54 2019 +0200

    Merge branch 'master' into develop

commit fbd3ad7bbb5e98c607f19f7c697552863363bde4
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:19:27 2019 +0200

    Update changelog

commit b0e0bdc060ce068b73371919b904f3c7f0c1cfa6
Author: Taylor Otwell <[email protected]>
Date:   Tue May 7 07:38:15 2019 -0500

    formatting

commit 1086e26b32fb828ee74c8848246788a26bad72d7
Author: Mathieu TUDISCO <[email protected]>
Date:   Tue May 7 13:49:22 2019 +0200

    Update database config relating to Url addition.

commit 4b78ba61eac32cefa41da09149e0500e23cb06ec
Merge: 65f82710 af15618b
Author: Taylor Otwell <[email protected]>
Date:   Mon May 6 08:30:56 2019 -0500

    fix conflicts

commit 65f8271032c113883fb3f1e8e7b3279821148ad1
Author: Taylor Otwell <[email protected]>
Date:   Mon May 6 08:30:33 2019 -0500

    update version

commit af15618b577be04fc999e3f11880d05f030d39ce
Merge: a6bf2413 ccea56b6
Author: Dries Vints <[email protected]>
Date:   Tue Apr 30 14:02:22 2019 +0200

    Merge pull request #5013 from laravel/revert-5012-feature/exported-files

    Revert "Exclude StyleCI config from exported files"

commit ccea56b6f910649d8a6ee25f61896d2b96e90496
Author: Dries Vints <[email protected]>
Date:   Tue Apr 30 14:02:09 2019 +0200

    Revert "Exclude StyleCI config from exported files (#5012)"

    This reverts commit a6bf24134d99be79e77b8969186b9f46ffee075a.

commit a6bf24134d99be79e77b8969186b9f46ffee075a
Author: Roberto Aguilar <[email protected]>
Date:   Mon Apr 29 16:21:59 2019 -0500

    Exclude StyleCI config from exported files (#5012)

    I noticed that this file was being included when i ran the
    `laravel new` command and even though some developers will run StyleCI,
    the purpose of this file seems more like it ensures the repository
    quality rather than providing an starting point for this service.

commit 3995828c13ddca61dec45b8f9511a669cc90a15c
Author: Diego <[email protected]>
Date:   Fri Apr 26 09:26:45 2019 -0300

    [5.9] Minor grammar fix in readme.md (#5010)

    * Fix grammar ('Boost *your* skills')

    * Update readme.md

commit f70fff8ad236374f66719b010fc5eea477c581e8
Merge: cedcbc86 50176732
Author: Dries Vints <[email protected]>
Date:   Thu Apr 25 13:28:34 2019 +0200

    Merge branch 'master' into develop

commit 50176732d66b197de62d5567b79fc77f63e2cfbd
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 24 07:38:42 2019 -0500

    Apply fixes from StyleCI (#5006)

commit 12a4885a47fbd272a4a942d49d7b1eb1b42f2b19
Author: Stefan Bauer <[email protected]>
Date:   Wed Apr 24 14:38:18 2019 +0200

    Fix phpdoc to order by syntax convention (#5005)

    Reorder the `@var` phpdoc syntax by convention, see http://docs.phpdoc.org/references/phpdoc/tags/var.html

commit 60db703a27bb09d0a51023131f850d5d424997db
Author: Graham Campbell <[email protected]>
Date:   Tue Apr 23 13:44:51 2019 +0100

    [5.8] Enable JS on StyleCI (#5000)

    * Enable JS on StyleCI

commit cedcbc863d4ae224430b83aa8c8e2781715ac3c5
Merge: bdc205c8 f574aa76
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 21:26:54 2019 +0200

    Merge branch 'master' into develop

commit f574aa76e3e1b8b1d77469e37d2857e27da14379
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 21:26:44 2019 +0200

    Disable JS checks for now

commit bdc205c830186eedc45fb03412c07aa14355d482
Merge: e80327f2 81fba471
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:07:04 2019 +0200

    Merge branch 'master' into develop

commit 81fba471aff24793be8ee3ee0d303d2b31056df2
Merge: 43b09ad0 91dc5ed2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:06:16 2019 +0200

    Merge pull request #4998 from laravel/analysis-z9QV6a

    Apply fixes from StyleCI

commit 43b09ad0f326584d56d20fc0cf2bef99b83af877
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:06:06 2019 +0200

    Add file exclusions for styleci

commit 91dc5ed2869b5905a01b0b85d70f33bbd9267b93
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 14:06:03 2019 +0000

    Apply fixes from StyleCI

commit 597201a049a0d1920533e5d0970a8283898becd3
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 15:55:40 2019 +0200

    Add StyleCI config

commit 06162adc9839ada8b2525e006bef6b80914296d6
Merge: 0f58190c ef1ce665
Author: Taylor Otwell <[email protected]>
Date:   Sun Apr 14 15:41:37 2019 -0500

    Merge pull request #4990 from SjorsO/patch-1

    Add IDE typehint to UserFactory

commit ef1ce665eef55e90952cd606ae120cf8c619822d
Author: Sjors Ottjes <[email protected]>
Date:   Sun Apr 14 13:30:53 2019 +0200

    Update UserFactory.php

commit 0f58190c7ba955cf7a58b47a9469bf4c6c992abb
Merge: 20cdf65a 14b0a07d
Author: Dries Vints <[email protected]>
Date:   Fri Apr 12 12:06:24 2019 +0200

    Merge pull request #4989 from DrewRoberts/update-readme-laracasts

    Update readme with Laracasts count

commit 14b0a07d79a60ef45ce5b26f8b1c34ab9274dba7
Author: DrewRoberts <[email protected]>
Date:   Fri Apr 12 01:34:48 2019 -0400

    Update readme with Laracasts count

commit 20cdf65ae61ca7cfa45292d3dd642a252147ecc8
Merge: 005ec130 1bed031c
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 10 07:31:29 2019 -0500

    Merge pull request #4987 from DivineOmega/patch-1

    [5.8] Remove underscore from cache prefix

commit 1bed031c1f7cfcfeadf497934d301987c53b1e6e
Author: Jordan Hall <[email protected]>
Date:   Wed Apr 10 12:01:28 2019 +0100

    Remove underscore as cache prefixes automatically have a colon appended to them

commit 005ec1301e3600c0a5d5a8355495d4333cab138b
Merge: 35374927 3cbc5ac6
Author: Taylor Otwell <[email protected]>
Date:   Mon Apr 8 07:47:02 2019 -0500

    Merge pull request #4986 from DivineOmega/patch-1

    [5.8] Add underscores to cache and redis database prefixes

commit 3cbc5ac640022cb4e3fcad7fc50e2086d32af6ae
Author: Jordan Hall <[email protected]>
Date:   Mon Apr 8 08:52:06 2019 +0100

    Additional underscore on cache prefix

commit 159b0e79cd5b26bc7cd4699113951599a5b5d6d0
Author: Jordan Hall <[email protected]>
Date:   Mon Apr 8 08:50:48 2019 +0100

    Additional underscore on redis database prefix

commit 35374927bd570d578f7db4a715f2a64a2ce561c1
Merge: ae44ee00 e68ff0c6
Author: Taylor Otwell <[email protected]>
Date:   Fri Apr 5 08:55:41 2019 -0500

    Merge pull request #4982 from DivineOmega/patch-1

    [5.8] Prefix redis database connection by default

commit e68ff0c66aa1b3da2c9a14d86636d582fd73891e
Author: Jordan Hall <[email protected]>
Date:   Thu Apr 4 22:18:28 2019 +0100

    Use Str class instead of helper function

commit c8bc79e94ee7f4a992d70faa5ec140a9059e603f
Author: Jordan Hall <[email protected]>
Date:   Thu Apr 4 15:11:18 2019 +0100

    Prefix redis database connection by default to mitigate multiple sites on the same server potentially sharing the same queued jobs

commit ae44ee0059f6218aab26de5551b19f70329f8832
Merge: 3886012c 88636c22
Author: Taylor Otwell <[email protected]>
Date:   Mon Apr 1 10:54:27 2019 -0700

    Merge pull request #4979 from hyperhost/add-hyper-host-sponsor

    Added Hyper Host sponsor

commit 88636c2268aa5dada08a2cd08c098bd9d25880f4
Author: Tony James <[email protected]>
Date:   Mon Apr 1 16:23:23 2019 +0100

    Added Hyper Host sponsor

    Added Hyper Host name and url

commit 3886012c0f3ad5653d9d5138530f3fc4276eaf93
Merge: 4997f081 ccc1457e
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 24 08:11:19 2019 -0700

    Merge pull request #4971 from Lenophie/patch-1

    Ignore SQLite journals

commit ccc1457e572f7ec5b2b596436622f69e94bbf635
Author: Lenophie <[email protected]>
Date:   Sun Mar 24 12:01:21 2019 +0100

    Ignore SQLite journals

commit e80327f29926869b34aa4ba92d59324ce75cac09
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:25:28 2019 +0100

    Update changelog

commit cfd5929785845000f26db851b94675d6154737b9
Merge: 53b59cd0 4997f081
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:23:52 2019 +0100

    Merge branch 'master' into develop

commit 4997f08105d6fb941b1ed2c749ebd2f55fba5a74
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:22:48 2019 +0100

    Update changelog

commit 3b852a1f7f292953f47df64563cc01188db336ff
Merge: 3d325b84 54cd6d90
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 8 08:03:29 2019 -0600

    Merge pull request #4963 from chapeupreto/patch-1

    [5.8] upgrade the collision dependency from v2 to v3

commit 54cd6d90bbe317040a0195e09c4fc40318bb988d
Author: Rod Elias <[email protected]>
Date:   Thu Mar 7 23:20:15 2019 -0300

    upgrade the collision dependency from v2 to v3

commit 3d325b8485591bc77d1073f7aa73596acb76ec23
Author: Dries Vints <[email protected]>
Date:   Tue Mar 5 15:12:04 2019 +0100

    Update changelog

commit 3001f3c6e232ba7ce2ecdbdfe6e43b4c64ee05ad
Author: Taylor Otwell <[email protected]>
Date:   Thu Feb 28 14:31:42 2019 -0600

    check if extension loaded

commit a0f6bcc773f3895db0ca4a85101b9a3ef2f95782
Author: Taylor Otwell <[email protected]>
Date:   Thu Feb 28 08:34:10 2019 -0600

    comment out options

commit f4ff4f4176f7d931e301f36b95a46285ac61b8b8
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 27 07:24:37 2019 -0600

    comment

commit d4d4a69b76d1dfd87b47b7a51b4c0e2aed992793
Merge: f84a69ee b34328a1
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 27 07:20:20 2019 -0600

    Merge pull request #4956 from akalongman/master

    [5.8] Use correct env name for AWS region from env.example

commit b34328a16654d09461fa53f8c681c15fe4e35095
Author: Avtandil Kikabidze <[email protected]>
Date:   Wed Feb 27 14:05:01 2019 +0400

    Use correct env name for AWS region from env.example

commit f84a69ee852bd44363042a61995d330574b6b8c3
Author: Taylor Otwell …
totoprayogo1916 added a commit to totoprayogo1916/OpenDK that referenced this pull request Sep 5, 2023
Squashed commit of the following:

commit 3923e7f7c40368a5e78c1a33610191be8ad91e3b
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:17:45 2020 +0100

    Update CHANGELOG.md

commit ff355973475624d9dc9ed5fd157a0ba0bef84710
Author: Dries Vints <[email protected]>
Date:   Sat Oct 31 10:16:23 2020 +0100

    Lower ignition constraint

commit 509708c7ee04dde4214edcf60fe3752f0d54d91d
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 16:03:50 2020 +0100

    Update CHANGELOG.md

commit 8ae2d8ec1e4b86c77e9352f3b32e79ebfa62ed82
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:53:46 2020 +0100

    Bump ignition and collision

commit 3c4eac92baaf98b7d42d7dcf713bbdc017a5c6ab
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:48:42 2020 +0100

    Bump Guzzle

commit 45fa128adbc2c36870f36bc9396a850508fb8c5b
Merge: 9af70cff d85be866
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:43:30 2020 +0100

    Merge branch '6.x' into 7.x

commit d85be8669880cce457eb5827afbedb6ad30bb629
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:40:46 2020 +0100

    Update CHANGELOG.md

commit 31fbf612efd8e6291453c14d1d8a5377a6870792
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:39:45 2020 +0100

    Bump fideloper/proxy

commit eb34def26a617cc48813d137dccab4994b555d61
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:38:43 2020 +0100

    Bump tinker

commit d906d7b86006d65b3ab74c890d2a23b24a7d7a18
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 15:27:02 2020 +0100

    Update phpunit constraints

commit f363bc30e18b60612ef77a40a4f169c633fd04ac
Author: Dries Vints <[email protected]>
Date:   Fri Oct 30 14:59:24 2020 +0100

    Bump ignition

commit 9af70cffa4bdc5d5e4d7b96e9fa7fb98969b12c9
Merge: 482d68a1 27338d9a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:01:22 2020 +0100

    Merge branch '6.x' into 7.x

commit 27338d9a99b63bb180c6c2ba6a9585ab1d10bf78
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 17:00:39 2020 +0100

    Allow PHPUnit 9

commit 482d68a182bdd629e5d4d3c19d5d7d7623dd074a
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:26:10 2020 +0100

    Update CHANGELOG.md

commit 02ca853809a97f372a3c6dc535c566efff9f6571
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:59 2020 +0100

    Nump minimum Laravel version

commit 056a9e8f903860a066190b6a45b56436d6c64531
Merge: 9b21125e aef279a6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:23:32 2020 +0100

    Merge branch '6.x' into 7.x

commit aef279a6cf04b47ac7aa279e37240a683bdcf5e6
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:17:39 2020 +0100

    Update CHANGELOG.md

commit b8d582581a1067e3b1715cce477b22455acc3d36
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:16:58 2020 +0100

    Update minimum Laravel version

commit a4d45e6940ec6565ac1ea55cad117082876396ad
Author: Dries Vints <[email protected]>
Date:   Thu Oct 29 14:15:43 2020 +0100

    Update CHANGELOG.md

commit 9b21125e31232d29231c60067c6df42e9554715b
Merge: 533f130f 4c25cb95
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:18:17 2020 +0100

    Merge branch '6.x' into 7.x

commit 4c25cb953a0bbd4812bf92af71a13920998def1e
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 16:17:46 2020 +0100

    Allow for PHP 8

commit 533f130f1429986313966c39511690e23cc42431
Merge: 4eeb29ee 3d46fc35
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 15:01:36 2020 +0100

    Merge branch '6.x' into 7.x

commit 3d46fc355d70db2462815b62139f8b0a0f3a16c3
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:54:45 2020 +0100

    Update Faker (#5461)

commit 22fa816fdf80a0bd821a4249358dd921ed76fb1a
Author: Dries Vints <[email protected]>
Date:   Tue Oct 27 14:11:46 2020 +0100

    Delete removed webpack flag (#5460)

commit aeec665b75258eea6cc03df1945e60f066183305
Author: Dries Vints <[email protected]>
Date:   Thu Oct 22 14:31:01 2020 +0200

    Update composer.json (#5452)

commit 4eeb29ee12e980969e8d9f2a1cd465e514a0f76e
Author: Dries Vints <[email protected]>
Date:   Mon Sep 21 17:59:16 2020 +0200

    Update changelog

commit b9b282a71933e0279fea63fa0302e9a30a4c2efe
Author: Youri Wijnands <[email protected]>
Date:   Tue Sep 8 14:50:51 2020 +0200

    Use the new Google Fonts API (#5396)

    https://developers.google.com/fonts/docs/css2

commit a7a40d77447358a57da02f202563c50344dc5a44
Merge: dc5817bb 179e52bd
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:28:00 2020 +0200

    Merge branch '6.x' into master

commit 179e52bdd719fb456ed49a2bf8e42f922a6f5da2
Author: Dries Vints <[email protected]>
Date:   Tue Sep 8 13:27:47 2020 +0200

    Fix logo

commit dc5817bbf2552b48d93bde99688d56e99b7a7708
Author: Dries Vints <[email protected]>
Date:   Fri Sep 4 10:39:28 2020 +0200

    Update Handler.php

commit 2c69ec987e2dca71008684fc80bbe56c55427dc3
Merge: fa43c0a3 921b14b9
Author: Graham Campbell <[email protected]>
Date:   Wed Aug 26 09:39:37 2020 +0100

    Merge branch '6.x' into master

commit fa43c0a333d623a393fa33c27a1376f69ef3f301
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:44:47 2020 +0200

    Update CHANGELOG.md

commit 921b14b954d51125b8369299a6ba18d78735367d
Author: Dries Vints <[email protected]>
Date:   Tue Aug 11 19:16:01 2020 +0200

    Update CHANGELOG.md

commit 39a58710ba3e5aff0b3588fe748fa24e066d17b0
Merge: b3f60041 0512f006
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:08:41 2020 +0200

    Merge pull request #5370 from laravel/bump-7

    [7.x] Set framework version ^7.24

commit bbd36167158f29148095085fa81fed211ad676d2
Merge: 407b6b8b e96840e2
Author: Dries Vints <[email protected]>
Date:   Fri Aug 7 20:07:55 2020 +0200

    Merge pull request #5369 from laravel/bump-6

    [6.x] Set framework version ^6.18.35

commit 0512f00664445c452abbb470b9aaf4a0c7f78b26
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:29:43 2020 +0100

    Set framework version ^7.24

commit e96840e20673ed87e684b8ee814bdf02c1c8dfcc
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 17:28:47 2020 +0100

    Set framework version ^6.18.35

commit b3f600415d3d1eb35c3f0f66e40ffa32c4bc77f0
Merge: a7b70fcc 407b6b8b
Author: Graham Campbell <[email protected]>
Date:   Fri Aug 7 11:09:47 2020 +0100

    Merge branch '6.x' into master

commit 407b6b8b04820a7fc0eb3143a8255abbeabb3eb9
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:52:00 2020 +0100

    Revert "Apply fixes from StyleCI (#5356)" (#5357)

    This reverts commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560.

commit 6cbfb781a2a54cb4399f4feaabc35b621c67b560
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 18:49:11 2020 +0100

    Apply fixes from StyleCI (#5356)

commit 0e7fd2beb18e6f5c0213b0f162611d5e75ce42f4
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:59:20 2020 +0200

    Fix version

commit a7b70fcc310fee9d78448e078fef9003150ee8aa
Author: Taylor Otwell <[email protected]>
Date:   Mon Jul 27 10:57:16 2020 -0500

    fix version

commit 074c3840ff6be2c562d97ec0d68a04b0699493a1
Merge: f465c511 b1277e2e
Author: Dries Vints <[email protected]>
Date:   Mon Jul 27 17:34:05 2020 +0200

    Merge pull request #5355 from laravel/bump

    [6.x] Bumped laravel 6 min version for new LTS users

commit b1277e2eb2e586b3cb09bbf545aa7fab0a4fd0ca
Author: Graham Campbell <[email protected]>
Date:   Mon Jul 27 16:23:43 2020 +0100

    Bumped laravel 6 min version for new LTS users

commit e9e7c972661668f4a4c747e951c6e7ce8e3adf15
Author: rennokki <[email protected]>
Date:   Mon Jul 27 18:18:18 2020 +0300

    [7.x] Enforce ^7.22.1 due to security issues (#5354)

    * enforce ^7.22

    * Update composer.json

    Co-authored-by: Dries Vints <[email protected]>

commit 791c87a80d1c5eebd75e1bf499f86899d6b2b26f
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:11:30 2020 -0500

    Update README.md

commit 232995cac214bf1fdff4278aa7904d65df3ae899
Author: Taylor Otwell <[email protected]>
Date:   Wed Jul 22 11:07:41 2020 -0500

    Update README.md

commit f465c511c009235fc7bfa06bfcb41294e60e9b42
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 6d9296c71edc3def466d3cab501b7d1f9b6717d2
Merge: 311c3f82 5f462521
Author: Dries Vints <[email protected]>
Date:   Mon Jul 20 16:15:08 2020 +0200

    Merge pull request #5346 from ahinkle/patch-1

    Bump lodash from 4.17.13 to 4.17.19

commit 5f46252168977e8850b555da057406a835a9b1f9
Author: Andy Hinkle <[email protected]>
Date:   Mon Jul 20 09:03:03 2020 -0500

    Bump lodash from 4.17.15 to 4.17.19

commit 311c3f823a6f09df5e9b882906456e9caa02132c
Author: Taylor Otwell <[email protected]>
Date:   Fri Jun 12 09:35:55 2020 -0500

    tweak phpunit.xml

commit 74df1e26e639f0527429fba8185b743e6538d3ac
Merge: 6e5f4093 2f33300a
Author: Dries Vints <[email protected]>
Date:   Fri Jun 12 10:36:11 2020 +0200

    Merge pull request #5320 from barryvdh/patch-4

    Bump fruitcake/laravel-cors

commit 2f33300abe3684a42acd2d9dce35569e988d9c13
Author: Barry vd. Heuvel <[email protected]>
Date:   Fri Jun 12 08:50:58 2020 +0200

    Bump fruitcake/laravel-cors

commit 6e5f40939ce15d731276b2ad6e5fd08057faa79a
Author: Taylor Otwell <[email protected]>
Date:   Wed Jun 3 08:30:51 2020 -0500

    Update README.md

commit 9e5ba571a60a57ca2c3938bc5bd81d222cb6e618
Author: Taylor Otwell <[email protected]>
Date:   Thu May 28 10:08:01 2020 -0500

    add password reset migration

commit 5639581ea56ecd556cdf6e6edc37ce5795740fd7
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 16:50:22 2020 -0500

    add basic trust host middleware

commit c10489131ef28ecd46529e37b558ae93a20e3fb8
Author: Taylor Otwell <[email protected]>
Date:   Mon May 18 10:47:20 2020 -0500

    fix formatting

commit 7b0b5d8310143269d8de50442499b77187f8ee5a
Author: Ryan England <[email protected]>
Date:   Thu May 14 14:50:14 2020 +0100

    Update sponsor link (#5302)

    British Software Development have rebranded to Many, link and link text updated accordingly.

commit 7d62f500a789416738a7181d5217d33ca096db04
Author: feek <[email protected]>
Date:   Mon May 4 06:31:39 2020 -0700

    chore: update typehint to be nullable (#5296)

    By default, this property is null. Therefore, it should be marked as nullable

commit 0f133c1e8eff44d765a40fc1934172e7bf046e56
Author: fragkp <[email protected]>
Date:   Fri May 1 16:35:51 2020 +0200

    set default auth_mode for smtp mail driver (#5293)

    Co-authored-by: KP <[email protected]>

commit 785405b34b3fcf9be0ab1262c4eaa72569fac218
Merge: 3cdfe0ce d7d342c2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 27 16:32:54 2020 +0200

    Merge branch '6.x'

commit d7d342c2f546576524e449c1fae69dbc885a21c2
Author: Nabil Muh. Firdaus <[email protected]>
Date:   Mon Apr 27 20:38:20 2020 +0700

    Disable webpack-dev-server host check (#5288)

commit 3cdfe0ce952c0b202150855b2f846996ebd4ba4a
Merge: b5f008a8 8aab222c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:47:28 2020 +0200

    Merge branch '6.x'

commit 8aab222c12ea63711e3b6b41b23c6b6f2231588c
Author: Dries Vints <[email protected]>
Date:   Thu Apr 16 09:45:26 2020 +0200

    Update CHANGELOG.md

commit b5f008a8bff29219800b465e613bc19a191ac815
Author: Dries Vints <[email protected]>
Date:   Wed Apr 15 13:46:52 2020 +0200

    Update CHANGELOG.md

commit 103fc0b4513d9ffbc33ebb31f74f9fba81d2b100
Merge: 5f9ee30e 0d23e5f7
Author: Dries Vints <[email protected]>
Date:   Tue Apr 14 10:58:32 2020 +0200

    Merge pull request #5278 from voyula/patch-1

    [7.x] Normalize Style

commit 0d23e5f761c0cc98318e883dbce13a43a3c13226
Author: Musa <[email protected]>
Date:   Tue Apr 14 11:56:29 2020 +0300

    [7.x] Normalize Style

    See: https://github.com/laravel/framework/blob/7.x/phpunit.xml.dist#L14

commit 5f9ee30e379390f9ce506d934314cb6ff6d7d355
Author: Igor Finagin <[email protected]>
Date:   Thu Apr 9 19:03:28 2020 +0300

    Disable Telescope in PHPUnit (#5277)

    PHPUnit throw exception when Telescope is enabled

commit e2c9261c2dfe2d0d0456c8ad113d147cce153885
Merge: 2a2522d8 73f723a2
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:56:58 2020 +0200

    Merge branch '6.x'

commit 73f723a2f4153f87b3d45d23addc0923f233de57
Author: Dries Vints <[email protected]>
Date:   Thu Apr 9 16:54:25 2020 +0200

    Add both endpoint and url env variables (#5276)

commit 2a2522d8824c0852e30a7e3e07d46a543eb4b33d
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 29 10:38:29 2020 -0500

    fix wording

commit f140d926d3c24e854578a9eb6a2b2f7fe763abf5
Merge: dccc9334 b26aaff2
Author: Dries Vints <[email protected]>
Date:   Sat Mar 28 11:57:59 2020 +0100

    Merge pull request #5271 from winter-ice/master

    [7.x] Consistent filename

commit b26aaff2100e3f01aee0dc96ad7657ddd2d5a07c
Author: ice <[email protected]>
Date:   Sat Mar 28 09:53:47 2020 +0800

    consistent filename

commit dccc933416c7f3a9bf9824fd8515b2daa51f6973
Merge: 6628b7a1 d067d7d8
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:31:42 2020 +0100

    Update CHANGELOG.md

commit d067d7d889e69d28e609534e3c5cdf5773462df9
Author: Dries Vints <[email protected]>
Date:   Tue Mar 24 18:26:16 2020 +0100

    Update CHANGELOG.md

commit 6628b7a1b48c2f559ec01b9e8e77872b63e0fb70
Merge: d82bf976 b7b6e35b
Author: Graham Campbell <[email protected]>
Date:   Tue Mar 24 13:55:12 2020 +0000

    Merge branch '6.x'

commit b7b6e35bf88f346832bdd32b71ca7ed4f0ceddd5
Author: Jacob Honoré <[email protected]>
Date:   Tue Mar 24 14:11:36 2020 +0100

    Fix s3 endpoint url reference (#5267)

commit d82bf9768b5d486d08159c191bec8a3d7b426436
Author: Markus Podar <[email protected]>
Date:   Sun Mar 15 17:25:50 2020 +0100

    [7.x] Allow configuring the timeout for the smtp driver (#5262)

    * Allow configuring the timeout for the smtp driver

    The default is the same as in `\Swift_Transport_EsmtpTransport::$params`

    * Corrected default

    * Update mail.php

    Co-authored-by: Graham Campbell <[email protected]>
    Co-authored-by: Taylor Otwell <[email protected]>

commit 52f69fcf2529501bed81b2bc5b036c4edd729cd5
Author: Taylor Otwell <[email protected]>
Date:   Sat Mar 14 16:07:23 2020 -0500

    add sponsor link

commit f93f4ad8bf114116a7c6917e7da155b5656463af
Author: Mathieu TUDISCO <[email protected]>
Date:   Fri Mar 13 20:53:56 2020 +0100

    Fix session config changes (#5261)

    * Fix session config changes

    * Update session.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit 166abfa35c535f4572d5971a99aec45cc8c63ff6
Author: Barry vd. Heuvel <[email protected]>
Date:   Wed Mar 11 21:08:52 2020 +0100

    Update default CORS config (#5259)

commit c7a0002432351690d28223afa7caa272e769e226
Author: André Ricard <[email protected]>
Date:   Wed Mar 11 09:37:46 2020 -0300

    Fix the code indent of object operators (#5258)

    This commit fixes the code indent of object operators, as following the framework code standards -> 2.4. Indenting

commit b0ce2adc423ff175a20838ee5f2c858cbc63b11f
Author: Roberto Aguilar <[email protected]>
Date:   Fri Mar 6 15:16:30 2020 -0600

    Add new SQS queue suffix option (#5252)

    As described in laravel/framework#31784, this option will allow to
    define a queue name suffix.

commit 641fcfb60aa47266c5b4767830dc45bad00c561c
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 6 07:57:11 2020 -0600

    remove config entry

commit 36373983adaea3a021ef968b99de038b1fc4f55c
Merge: 3aa22403 5ddbfb84
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:48:34 2020 +0000

    Merge branch '6.x'

commit 5ddbfb845439fcd5a46c23530b8774421a931760
Author: Graham Campbell <[email protected]>
Date:   Fri Mar 6 11:47:59 2020 +0000

    Ensure that app.debug is a bool

commit 3aa22403c7d865049a735c51fadf60add498840e
Author: Taylor Otwell <[email protected]>
Date:   Wed Mar 4 16:45:31 2020 -0600

    remove empty line from phpunit.xml (#5245)

    I'm not sure if there's a style rule for this, but it seems very out of place to be the only empty line in the whole file.

commit efcf74f422b381a69da8f673061eb94487e6f557
Author: Mark van den Broek <[email protected]>
Date:   Wed Mar 4 15:05:25 2020 +0100

    [7.x] Add Mailgun and Postmark mailer (#5243)

    * Add Mailgun and Postmark mailer

    * Formatting

    * Update mail.php

    Co-authored-by: Taylor Otwell <[email protected]>

commit c9cf57a00c76c58afec25a822846f0798661e372
Author: Benedikt Franke <[email protected]>
Date:   Wed Mar 4 15:04:39 2020 +0100

    Add serialize option to array cache config (#5244)

    This documents the new configuration option from https://github.com/laravel/framework/pull/31295

commit 876142d709b99af0211315c4a8e8f93f38790f25
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 20:42:38 2020 +0100

    Update CHANGELOG.md

commit 2d7b45bfb465d838a9f670e35738ac13166410e9
Merge: 672f626d e773d388
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 18:18:11 2020 +0100

    Merge branch '6.x'

commit e773d3885b30ec77c8f0a3bbca31c914b80d3762
Author: Dries Vints <[email protected]>
Date:   Tue Mar 3 18:15:59 2020 +0100

    Update CHANGELOG.md

commit 672f626da1788a46bf6bc830d15725ee3ae668d8
Author: Maxime Willinger <[email protected]>
Date:   Mon Mar 2 17:52:06 2020 +0100

    Add array mailer (#5240)

commit 7bea49b8ee35728a791bf1e50e894b36f3c8843e
Author: Maxime Willinger <[email protected]>
Date:   Mon Mar 2 16:21:08 2020 +0100

    Use MAIL_MAILER in test environment (#5239)

commit d7c602c164bfa5db8d02c139769558e336f24d89
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 17:30:43 2020 +0100

    Update app.php (#5237)

commit 0b14a741eb62f7b7d316b27f7b0e8bff770e3f7b
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 16:26:30 2020 +0100

    Update app.php (#5237)

commit 88a763e36f1d39be9b9924bbd1007a4a7b2eee9f
Author: Dries Vints <[email protected]>
Date:   Thu Feb 27 16:21:15 2020 +0100

    Update app.php (#5237)

commit 705076ffc28a834a1eb76b3550be2b6269a8fefb
Author: Graham Campbell <[email protected]>
Date:   Mon Feb 24 14:48:16 2020 +0000

    Bumped min guzzle

commit 3233e6f8097816349137eb46d03c9e83a5321259
Merge: d529de06 8cece725
Author: Graham Campbell <[email protected]>
Date:   Mon Feb 24 14:47:21 2020 +0000

    Merge branch 'master' into develop

commit 8cece7259806b3e4af6f185ffa4772dded70cd21
Author: Sjors Ottjes <[email protected]>
Date:   Mon Feb 24 15:37:15 2020 +0100

    Remove redundant default attributes from phpunit.xml (#5233)

commit d529de062d16ac29f48c901ea02e9dacde10ef47
Author: Dries Vints <[email protected]>
Date:   Thu Feb 13 16:03:25 2020 +0100

    Update composer.json

commit d038d1f6b65ba1c48bd608b535cdc04d826821ba
Author: Dries Vints <[email protected]>
Date:   Thu Feb 13 16:00:10 2020 +0100

    Update composer.json

commit c434eae43d673a709bb840f5f2e03b58da30682b
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 12 16:20:50 2020 -0600

    guzzle

commit 6b9050226e9ada706143a8b3d90c4a4d5e4355e2
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 12 09:30:09 2020 -0600

    use phpunit 0

commit 2c4fa1ab2815fd10f6e797f76c407a5fddb294aa
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 5 16:46:09 2020 -0600

    formatting

commit d7f67f631d7743c4d877197089f17dc4b62ee792
Author: Andrew Brown <[email protected]>
Date:   Wed Feb 5 10:48:51 2020 -0600

    styling

commit 153746c2c17b6199294ec97f4fea95ed34241c7b
Author: Andrew Brown <[email protected]>
Date:   Wed Feb 5 10:33:45 2020 -0600

    add `links` option to filesystems config

    https://github.com/laravel/framework/pull/31355

commit eb3143ea720d229c54a31b07b582ead58a216a41
Author: Nuno Maduro <[email protected]>
Date:   Tue Feb 4 22:20:49 2020 +0100

    Uses latest stable of Collision (#5221)

commit c78a1d8184f00f8270d8a135cc21590837b6bfbd
Author: ARCANEDEV <[email protected]>
Date:   Fri Jan 31 14:48:04 2020 +0100

    Bump fzaninotto/faker version to support PHP 7.4 (#5218)

    Bumping `fzaninotto/faker` version to support PHP 7.4, especially when running composer with `--prefer-lowest` flag.

    PRs related to version `^1.9.1`:

    * https://github.com/fzaninotto/Faker/pull/1748
    * https://github.com/fzaninotto/Faker/pull/1843

commit c81712bdf46b9fbd8641f07641470195d5487709
Author: Andrey Helldar <[email protected]>
Date:   Thu Jan 30 17:14:42 2020 +0300

    [6.x] Update cross-env to the latest (#5216)

    This is not a fix for the vulnerability.
    Just updating the dependency to the latest version.

    @see https://yarnpkg.com/package/cross-env

    Yes, I know that they recently released version 6.0 and in a short time 7.0.

commit f04029a64d93401e0d6788253c5134cdf8804607
Author: Freek Van der Herten <[email protected]>
Date:   Mon Jan 27 15:53:34 2020 +0100

    use ignition v2 (#5211)

commit 38a1249a002bf1dd201bda614454b28ed8c41f59
Merge: 91dd1f61 2503ed68
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:49:40 2020 -0600

    Merge remote-tracking branch 'origin/develop' into develop

commit 91dd1f61cdd3c7949593a4435dff8b77322761f2
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:49:20 2020 -0600

    formatting

commit 2503ed687ff4e8d068a36a9fe6d990492ffdbbed
Merge: db596ba0 1d094a80
Author: Graham Campbell <[email protected]>
Date:   Fri Jan 24 13:48:38 2020 +0000

    Merge branch 'master' into develop

commit 550282b0944d10eb78bf3ff4e556fe10a83ad8d7
Merge: db596ba0 678901cc
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 24 07:46:08 2020 -0600

    Merge branch 'check-compiled' of https://github.com/browner12/laravel into browner12-check-compiled

commit 1d094a80849133899fa4a9ba9b7598de7bc6d370
Author: Andrey Helldar <[email protected]>
Date:   Fri Jan 24 16:43:48 2020 +0300

    [7.x] Update cross-env and resolve-url-loader to the latest (#5210)

commit 678901cc4d2ee139b547375299b43eac19a37674
Author: Andrew Brown <[email protected]>
Date:   Thu Jan 23 10:40:45 2020 -0600

    update name

commit 2fe113e606989e3dec86dc7e716833facafe55bc
Author: Andrew Brown <[email protected]>
Date:   Thu Jan 23 10:27:12 2020 -0600

    add new `check_compiled` option

commit db596ba02aaedd925be3dd3c51d486355da277db
Merge: ffc74ba1 b1f35786
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 17 16:15:48 2020 -0600

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit ffc74ba143a7de4a89f2c3fd525a5621ca879e38
Author: Taylor Otwell <[email protected]>
Date:   Fri Jan 17 16:15:38 2020 -0600

    remove hyphen on email

commit b1f35786eb6352d1a613ffe0e2b7e55f6e1a316e
Merge: 94f8ee3c 9d0862b3
Author: Dries Vints <[email protected]>
Date:   Tue Jan 14 17:52:04 2020 +0100

    Merge branch 'master' into develop

commit 9d0862b3340c8243ee072afc181e315ffa35e110
Merge: 9b6d1b14 f44f065a
Author: Dries Vints <[email protected]>
Date:   Tue Jan 14 17:50:01 2020 +0100

    Merge pull request #5201 from aimeos/master

    Use file session driver again

commit 9b6d1b14bcbeba1b52a75a48dedc0402b1f08bb5
Author: Caíque de Castro Soares da Silva <[email protected]>
Date:   Mon Jan 13 13:36:09 2020 -0300

    Update laravel mix and sass loader (#5203)

commit f121af8985d1dbb665cb9ca4b6a9f7dbb6211a7c
Author: Robert Korulczyk <[email protected]>
Date:   Sun Jan 12 16:06:29 2020 +0100

    Add missing full stop for some validation messages (#5205)

commit 94f8ee3cade8d08097ed0255e4fb0fc4e56a8cd3
Merge: 130b8c8b b46c16b4
Author: Dries Vints <[email protected]>
Date:   Thu Jan 9 12:42:11 2020 +0100

    Merge branch 'master' into develop

commit b46c16b4246c7dc648158221c49f5b2e785e7c30
Author: Dries Vints <[email protected]>
Date:   Thu Jan 9 12:41:21 2020 +0100

    Update CHANGELOG.md

commit 130b8c8bcb8f167e7013e7846004b2df3e405b72
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:16:33 2020 -0600

    add ses

commit e43d4546a9c0bde49dae51fd6f4e2766674f1152
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:14:01 2020 -0600

    fix comment

commit 61ec16fe392967766b68d865ed10d56275a78718
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:10:37 2020 -0600

    work on mail configuration file

commit 76d822768dcab14fa1ee1fd1f4a24065234860db
Author: Taylor Otwell <[email protected]>
Date:   Wed Jan 8 17:01:42 2020 -0600

    update mail configuration file

commit f44f065a2b2cad1a947a7e8adc08fcc13d18c49c
Author: Aimeos <[email protected]>
Date:   Wed Jan 8 12:44:53 2020 +0100

    Use file session driver again

commit eca7bc7d66cef63500a62e8deaa3fce1772f1641
Author: Aimeos <[email protected]>
Date:   Wed Jan 8 12:44:22 2020 +0100

    Use file session driver again

commit 7e5a9154857f598f69978559a6ef9c34c1348e15
Merge: 4bf7dffb 25c36eb5
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:26:17 2019 +0000

    Merge branch 'master' into develop

commit 25c36eb592c57e075acc32a12703005f67c4ec10
Merge: 195faa16 5df3b7b1
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:22:50 2019 +0000

    Merge pull request #5196 from laravel/revert-5006-analysis-qxPGgA

    [6.x] Revert "Apply fixes from StyleCI"

commit 5df3b7b1fe07a22d3275180ece0b31f45682f07e
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 31 12:21:39 2019 +0000

    Revert "Apply fixes from StyleCI (#5006)"

    This reverts commit 50176732d66b197de62d5567b79fc77f63e2cfbd.

commit 4bf7dffb90366438e849c0c96e06e2a638eec336
Author: Graham Campbell <[email protected]>
Date:   Mon Dec 30 18:23:10 2019 +0000

    Bumped defaults for Laravel 7 (#5195)

commit 8af8af0cbfc5cdfaa3f757afe736a9d28d83851c
Merge: 0bec06cd 195faa16
Author: Graham Campbell <[email protected]>
Date:   Sat Dec 28 00:35:40 2019 +0000

    Merge branch 'master' into develop

commit 0bec06cd45a7f6eda0d52f78dd5ff767d94ed5cc
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 27 08:56:53 2019 -0600

    formatting

commit c222f6d04ff29489daec178d15ae23a3c13838f8
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:54:10 2019 +0100

    CS

commit e4683c6ecaff9a7dc779fb0dfe39f6336832fc9d
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:48:38 2019 +0100

    Revert routes

commit 860ec9f2a48c65d30998942263a4f9a849e9b0a0
Author: Barry vd. Heuvel <[email protected]>
Date:   Thu Dec 26 19:46:41 2019 +0100

    Use config instead of middleware property

commit 195faa16cbeabc84b0eb9c9f4227ead762c93575
Author: Anton Komarev <[email protected]>
Date:   Wed Dec 25 18:05:29 2019 +0300

    Fix types consistency in database config (#5191)

commit 777baff7d5abdf38330714ccb5ff3dc3ee5d2f9c
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 22:28:34 2019 +0000

    Update composer.json

commit bee0e8c94c37bf3909e3fbe7e100a106dbf57fab
Author: Barry vd. Heuvel <[email protected]>
Date:   Tue Dec 24 22:26:06 2019 +0100

    Add HandleCors middleware

commit db940594ad86a22663acc3c119caab571344e2ee
Merge: 4d565e68 846f7a19
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 17:45:25 2019 +0000

    Merge branch 'master' into develop

commit 846f7a193a6c4ff92b6595596c9bbcb3cf8c426e
Author: Graham Campbell <[email protected]>
Date:   Tue Dec 24 17:35:58 2019 +0000

    Correct exception handler doc (#5187)

commit 4d565e681cbf496e0cdfb58743d4ae8238cef15e
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 15:10:23 2019 -0600

    import facades

commit f4c8190744bbab94e7751518bfd0fdce82ee3ab0
Merge: cf5e99e9 e6471a6f
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:48:16 2019 -0600

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit cf5e99e9aa998c56eda0765a9aefdc14c439e0df
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:48:04 2019 -0600

    change comment

commit e6471a6f2e73dd244f957751ab315aa5903c32ea
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:15:04 2019 -0600

    Apply fixes from StyleCI (#5186)

commit f13aef873333aef538d526217d023fe81e87acd7
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:14:43 2019 -0600

    move var

commit 12c28822f402a948dac389bf037c550524845ba3
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:14:01 2019 -0600

    one liner

commit 3ee0065bcd879b82ee42023165f8a8f71e893011
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 14:10:38 2019 -0600

    remove unnecessary variable

commit 13e43893ba2457c3e49898f0066a5ce8d7ea74f4
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 13:58:16 2019 -0600

    remove auth migration that is now in laravel/ui

commit b5bb91fea79a3bd5504cbcadfd4766f41f7d01ce
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 20 11:48:38 2019 -0600

    Remove controllers that are generated by laravel/ui package.

    These controllers will be installed and generated by the laravel/ui (2.0) package in Laravel 7.x.

commit 583d1fa773803f951653af490b3dcc89b967ddbb
Author: Graham Campbell <[email protected]>
Date:   Thu Dec 19 15:36:06 2019 +0000

    [7.x] Remove register in auth provider (#5182)

    * Remove register in auth provider

    * Update AuthServiceProvider.php

    * Update Kernel.php

commit 7d70bfe8289fce07fa595340578b13f4bdac495d
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 13:44:16 2019 -0600

    Utilize Authentication Middleware Contract  (#5181)

    * adjust auth middleware to point to contract

    * remove middleware priority

commit f589a7e89782a8419f7ad54b512289f60ffa8619
Merge: 5d50d30c 99f183b5
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:24:10 2019 -0600

    Merge branch 'master' into develop

commit 99f183b5c794354f7387d503b40d2be63e678a80
Merge: 140d4d9b b2734a9c
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:02:53 2019 -0600

    Merge branch 'master' of github.com:laravel/laravel

commit 140d4d9b0a4581cec046875361e87c2981b3f9fe
Author: Taylor Otwell <[email protected]>
Date:   Wed Dec 18 12:02:46 2019 -0600

    use class name to be consistent with web middleware

commit b2734a9c313ac637e9b8cffa80f9fa9d3da96a09
Author: Anton Komarev <[email protected]>
Date:   Wed Dec 18 20:17:32 2019 +0300

    Add MAIL_FROM_ADDRESS & MAIL_FROM_NAME to .env file (#5180)

commit c5f9126981fe340edf71de284b27926323d3271b
Author: Andrew Minion <[email protected]>
Date:   Wed Dec 18 09:41:11 2019 -0600

    default email from name to app name (#5178)

commit 17f0ff22057a028f28b8aa17fadbc7fe4136bf66
Author: Michael Stokoe <[email protected]>
Date:   Wed Dec 18 15:38:03 2019 +0000

    Updated config/logging.php (#5179)

    This adds a default emergency logger path to the logging config file.
    This change goes hand-in-hand with my changes found here:
    https://github.com/Stokoe0990/framework/commit/7a03776bc860bde4cdc82e69ab133a755b66dd2d

commit 89e83915e94142ae79db7480561ae8a7a525e114
Merge: dd93aca5 40f93daa
Author: Dries Vints <[email protected]>
Date:   Mon Dec 16 11:35:41 2019 +0100

    Merge pull request #5175 from canvural/patch-1

    [6.x] Update redirectTo return type PHPDoc

commit 40f93daa83b17ad47c51ec9beed4c1ba79eb66ed
Author: Can Vural <[email protected]>
Date:   Sat Dec 14 11:48:14 2019 +0100

    Update redirectTo return type PHPDoc

commit dd93aca5970290dfda651f00a80fdd78b66da226
Merge: f48e2d50 136085bf
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 13 22:43:22 2019 -0600

    Merge branch 'master' of github.com:laravel/laravel

commit f48e2d500cb53cc4a09dfcb40beb0abafd79de4f
Author: Taylor Otwell <[email protected]>
Date:   Fri Dec 13 22:42:46 2019 -0600

    change some default settings

commit 136085bfd8361969a7daedc2308e0b59dbd41f60
Author: Bert Heyman <[email protected]>
Date:   Fri Dec 13 15:18:09 2019 +0100

    Add "none" to supported same site options in session config (#5174)

commit 972f3cd2832cd8a8e9e0be96817d10840b735316
Author: Taylor Otwell <[email protected]>
Date:   Tue Dec 10 08:59:27 2019 -0600

    DRY up path (#5173)

commit f4b1dc6df04f4ef9b4b15e2c38668e8cb168c253
Author: Dries Vints <[email protected]>
Date:   Fri Dec 6 16:46:02 2019 +0100

    [6.x] Implement integration test and in-memory DB (#5169)

    * Use in-memory DB for testing

    * Extend from PHPUnit test case for unit tests

commit 9b6643226da6bd3803da22fb5dc695b1a279c5aa
Author: byjml <[email protected]>
Date:   Wed Dec 4 21:57:13 2019 +0300

    Consistent order (#5167)

    Keep the alphabetical order of the validation messages.

commit 5d50d30c94ab7c3dcf28562a7f2116cb8922183e
Author: Graham Campbell <[email protected]>
Date:   Wed Nov 27 15:26:11 2019 +0000

    Bumped versions

commit fb3e88c313d80735270385a825363e446fd77174
Merge: b7a5bc7f b56fe840
Author: Graham Campbell <[email protected]>
Date:   Wed Nov 27 15:21:41 2019 +0000

    Merge branch 'master' into develop

commit b56fe84011bdbc3b42b8ffdaadc9a113635a751e
Author: Graham Campbell <[email protected]>
Date:   Tue Nov 26 18:46:10 2019 +0000

    Use laravel/tinker v2 (#5161)

commit b7a5bc7f3ca6d305343624aded77fe68c26bc018
Author: Nuno Maduro <[email protected]>
Date:   Mon Nov 25 21:46:55 2019 +0100

    Bumps Collision dependency to v4.0 (#5160)

commit 2913a55d87461fabe94907c5728d7a9451bcae80
Author: Graham Campbell <[email protected]>
Date:   Mon Nov 25 14:46:29 2019 +0000

    [7.x] Switch to Symfony 5 (#5157)

    * Update exception handler

    * Explictly specify 'lax' same site config

    * Use the null secure option for session cookies

commit 2f8e55a9ec923a481c1a24733c70ae750480f178
Author: Mark van den Broek <[email protected]>
Date:   Mon Nov 25 15:10:36 2019 +0100

    Rename `encrypted` to `forceTLS`. (#5159)

commit c473b53626eab20c44075b02770e948a6e757c2b
Merge: 3c92fb3a 1ee38a10
Author: Dries Vints <[email protected]>
Date:   Thu Nov 21 18:29:26 2019 +0100

    Merge branch 'master' into develop

commit 1ee38a10f8884e24290c86c04d8d1ba5f8bc8d10
Author: Dries Vints <[email protected]>
Date:   Thu Nov 21 18:28:39 2019 +0100

    Update CHANGELOG.md

commit 3c92fb3a19a7fbff0085bfbbe887682095d61520
Merge: 21f24784 c15a5ee0
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 17:35:09 2019 +0100

    Merge branch 'master' into develop

commit c15a5ee0d205ade08ad86174cb9c38aafd2bd226
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 17:34:53 2019 +0100

    Update readme

commit 21f24784814092f44117ea2cb29b696422b66e93
Merge: 2e2be97c 94056af6
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:06:22 2019 +0100

    Merge branch 'master' into develop

commit 94056af6e84769c8e9ad394d49c0c235a6966772
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:06:05 2019 +0100

    Rename readme

commit 578018940241d894befdf90bb7b61672b0f7d055
Author: Dries Vints <[email protected]>
Date:   Tue Nov 12 16:05:52 2019 +0100

    Consistent readme

commit 2e2be97c2686bf919f06a47849902b80586cfa6c
Author: Dries Vints <[email protected]>
Date:   Fri Nov 1 13:53:14 2019 +0100

    Implement new primary key syntax (#5147)

commit b659069bced2435cc53fca6fd4290edcae5dd9e0
Merge: 89a80da1 bfd4b1e9
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:52:38 2019 +0000

    Merge branch 'master' into develop

commit bfd4b1e92f7c6b4e6b74cfdde995a5afad648d96
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:51:17 2019 +0000

    Update .styleci.yml

commit 89a80da13232c00d3e2ac8d8e372075086ced4fb
Merge: 9df12c3c 953b488b
Author: Graham Campbell <[email protected]>
Date:   Fri Nov 1 11:12:48 2019 +0000

    Merge branch 'master' into develop

commit 953b488b8bb681d4d6e12227645c7c1b7ac26935
Author: Taylor Otwell <[email protected]>
Date:   Mon Oct 21 13:47:27 2019 -0500

    fix key

commit ba2f2abe830f5d03c52fd9c88411859cf863abd6
Author: Taylor Otwell <[email protected]>
Date:   Mon Oct 21 13:42:31 2019 -0500

    tweak formatting

commit ace38c133f3d8088fc7477f56b9db6fdc0098d06
Author: Michael Chernyshev <[email protected]>
Date:   Fri Oct 18 13:57:19 2019 +0300

    Security fix: Waiting before retrying password reset

commit 400df0b02bcc0e3fc8bc1c75ea494242c3f392af
Author: Gert de Pagter <[email protected]>
Date:   Wed Oct 16 15:18:19 2019 +0200

    Add xml schema to phpunit (#5139)

    This allows an IDE to do auto completion, and show any errors in the configuration

commit 9df12c3ca1c27f0192c64d19ce64b18ec06213d3
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 15 13:15:52 2019 -0500

    ignition doesn't support laravel 7 yet

commit bb969c61d41ec479adbe4a6da797831002b75092
Author: Nuno Maduro <[email protected]>
Date:   Tue Oct 8 22:44:05 2019 +0200

    Fixes required version of the framework within `composer.json` (#5130)

commit dfa5c1f06e11bc6a557a0ead78f38b997235802f
Merge: ccef55ba 39c28801
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 18:39:31 2019 +0200

    Merge branch 'master' into develop

commit 39c28801e8d8a8cfc99c3eed4756c6acc7367e0c
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 18:38:02 2019 +0200

    Update CHANGELOG.md

commit 9bc23ee468e1fb3e5b4efccdc35f1fcee5a8b6bc
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:35:48 2019 -0500

    formatting

commit d1f7a5a886039e28a434905447865ca952032284
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:27:05 2019 -0500

    formatting

commit bc82317a02e96105ad9f3cc0616d491cb5585c62
Merge: 51a1297a ba3aae6c
Author: Taylor Otwell <[email protected]>
Date:   Tue Oct 8 07:24:50 2019 -0500

    Merge branch 'password-confirmation' of https://github.com/driesvints/laravel into driesvints-password-confirmation

commit ba3aae6c338314c2ba1779f336278c2532071b7c
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 13:45:40 2019 +0200

    Implement password confirmation

commit 4036f17416549758816894dc52dc54eabcc13914
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 13:39:57 2019 +0200

    Remove middleware from password reset

    It's not necessary for the user to be logged out when resetting their password. This allows users to reset their password while logged in. Can be used in combination with the new RequiresPassword middleware.

commit 050c1d880ec1d48ef40d7a0f2b2f1040c23cebb9
Author: Dries Vints <[email protected]>
Date:   Tue Oct 8 11:26:03 2019 +0200

    Add new password rule language line

commit 51a1297a2486e2b68883bba9e534ec903f0c10d4
Author: Sangrak Choi <[email protected]>
Date:   Thu Sep 26 21:24:53 2019 +0900

    [6.x] Added OP.GG sponsor (#5121)

    * Added OP.GG sponsor

    * Update readme.md

commit c70c986e58fe1a14f7c74626e6e97032d4084d5f
Author: Roger Vilà <[email protected]>
Date:   Fri Sep 13 21:47:34 2019 +0200

    [6.x] Add 'null' logging channel (#5106)

    * Add 'none' logging channel

    * Remove extra spaces

    * Rename 'none' channel to 'null'

    * Update logging.php

commit 42e864f3f5f8fe5bfbdbac66dc2e4b95159fedcb
Author: Tim MacDonald <[email protected]>
Date:   Fri Sep 13 22:19:06 2019 +1000

    remove testing bootstrap extension (#5107)

commit cba8d19f8603fc409c2a72a0f33a4b0a7fab2ee5
Author: James Merrix <[email protected]>
Date:   Thu Sep 12 13:48:34 2019 +0100

    Added Appoly sponsor (#5105)

commit 56157b9cd201b5dc6fbe5f9f73014fa32e5a7838
Author: Graham Campbell <[email protected]>
Date:   Wed Sep 11 13:10:18 2019 +0100

    Revert "According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)" (#5102)

    This reverts commit 74d84e9371b2d2486edcc8f458adc9f22957d68b.

commit ccef55ba553f9eb6e6d1a13aa19c457aefb6463e
Merge: 1f48b2c5 7d728506
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 20:42:16 2019 +0200

    Merge branch 'master' into develop

commit 7d728506191a39394c5d1fcf47a822b9183f50ed
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 20:41:25 2019 +0200

    Update CHANGELOG.md

commit 1f48b2c5e83374b658f03ca8da5220a6980e3e11
Merge: 55b314ea e6569320
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:27:12 2019 +0200

    Merge branch 'master' into develop

commit e656932002588bcaaa94476f1ed1850747eb4708
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:26:00 2019 +0200

    Apply fixes from StyleCI (#5100)

commit 79fb6af96ebf0325cef15c3132157fdf75f6fd6c
Author: Dries Vints <[email protected]>
Date:   Tue Sep 10 17:25:19 2019 +0200

    Order imports alphabetically

commit 74d84e9371b2d2486edcc8f458adc9f22957d68b
Author: Patrick Heppler <[email protected]>
Date:   Mon Sep 9 20:51:51 2019 +0200

    According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)

    https://bugs.php.net/bug.php?id=78516
    Argon2 requires at least 8KB
    On PHP 7.4 memory 1024 will throw:
    password_hash(): Memory cost is outside of allowed memory range

commit 55b314eadb06164943dbf2ba33b21391441ce237
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:41:28 2019 +0200

    Update CHANGELOG.md

commit 00c00b87bef4bf7fbb7c132015e10a20bbcf4ce4
Merge: cb5047c2 4dbe9888
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:40:26 2019 +0200

    Merge branch 'master' into develop

commit 4dbe9888a5599c270e9131b76eca0ff3527bd350
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:39:25 2019 +0200

    Update CHANGELOG.md

commit 9f2f3b1eeecd79acffcce72977dc3b107e7d2b43
Merge: 31394de4 ca3f91e7
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:29:25 2019 +0200

    Merge branch '5.8'

commit ca3f91e7ed47780ad4128c0592f5966efe51246b
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:29:02 2019 +0200

    Update CHANGELOG.md

commit 8b96bf012871a2e977a4558bf069062c5f03de95
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:26:19 2019 +0200

    Update CHANGELOG.md

commit cb5047c200931d26142e78a315daad03c932f1fc
Merge: 2967197b 31394de4
Author: Dries Vints <[email protected]>
Date:   Mon Sep 9 18:03:17 2019 +0200

    Merge branch 'master' into develop

commit 31394de4d736c171d40bb03d50313c60b0e4af38
Author: Taylor Otwell <[email protected]>
Date:   Sat Sep 7 02:18:51 2019 +0200

    Revert "Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)" (#5095)

    This reverts commit 86908e1eb4a6cc8f5474b1355db4c104c548619e.

commit 4992230ca97551a0a2530e339898037b0ad5af81
Merge: 86908e1e 42936c65
Author: Taylor Otwell <[email protected]>
Date:   Fri Sep 6 13:43:32 2019 -0500

    Merge branch 'patch-1' of https://github.com/SjorsO/laravel into SjorsO-patch-1

commit 86908e1eb4a6cc8f5474b1355db4c104c548619e
Author: Patrick Heppler <[email protected]>
Date:   Fri Sep 6 14:16:32 2019 +0200

    Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)

    With the values
    ````
    'argon' => [
            'memory' => 1024,
            'threads' => 2,
            'time' => 2,
        ],
    ```
    Hash::make() produces password_hash(): Memory cost is outside of allowed memory range on PHP 7.4

commit 2967197b8e2db87768b5534ca923f4f3b15e18f1
Merge: af15fe5e 65959b25
Author: Dries Vints <[email protected]>
Date:   Fri Sep 6 13:14:50 2019 +0200

    Merge branch 'master' into develop

commit 42936c656c70dc39d71dae7e79a487a716f2b1a6
Author: Sjors Ottjes <[email protected]>
Date:   Fri Sep 6 08:17:43 2019 +0200

    style

commit 731cd4c499638138c3331572f726310354d1b1ea
Author: Sjors Ottjes <[email protected]>
Date:   Fri Sep 6 08:16:34 2019 +0200

    add phpunit extension

commit 360993c11eb1fa6d1f5a4eb89a08636f96ccf3ef
Author: Sjors Ottjes <[email protected]>
Date:   Thu Sep 5 16:10:59 2019 +0200

    Update bootstrap.php

commit 65959b25bf791ab7afeac2ffa5a29394638c688f
Author: Darren Craig <[email protected]>
Date:   Tue Sep 3 17:37:05 2019 +0100

    Allowing optional use of yml/yaml file extensions in .editorconfig (#5090)

commit af15fe5ec688f59522e898dc74e0de54d84c3d96
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:54:41 2019 +0200

    Revert "Bump PHPUnit"

    This reverts commit 5fde1337d629bd116602f2e67ead75988ae7568f.

commit 5fde1337d629bd116602f2e67ead75988ae7568f
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:54:00 2019 +0200

    Bump PHPUnit

commit 054bb43038f4acb7f356dd668715225ffc2e55ba
Author: Dries Vints <[email protected]>
Date:   Tue Sep 3 15:53:35 2019 +0200

    Laravel 7

commit 13ab419d59e2f0d2e188a5157a3cc17f72db595c
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 3 08:37:49 2019 -0500

    add ignition

commit 41ee35d01f4e57c47e924400db8a805089664141
Author: Taylor Otwell <[email protected]>
Date:   Tue Sep 3 08:37:29 2019 -0500

    add ignition

commit e6becd2ca35a650f51ed49525935e8ca65671152
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 27 16:26:48 2019 -0500

    add new failed driver option

commit 6ff5d6c7b8df5936aa310a5af0ff2fc2ca866708
Merge: 665dfc43 aa74fcb3
Author: Taylor Otwell <[email protected]>
Date:   Fri Aug 23 11:59:05 2019 -0500

    Merge branch 'master' into develop

commit 665dfc4328daeabaa496ac6a0743476348657585
Author: Dries Vints <[email protected]>
Date:   Thu Aug 22 15:22:14 2019 +0200

    [6.0] Use phpredis as default Redis client (#5085)

    * Use phpredis as default Redis client

    Follow up for https://github.com/laravel/framework/pull/29688

    It's best that we already start using `phpredis` as a default to discourage usage of Predis.

    * Update database.php

commit b67acda8928117dc3048180e53f29d09c775b908
Author: Christopher Lass <[email protected]>
Date:   Wed Aug 21 15:14:32 2019 +0200

    Rename 2019_08_19_175727_create_failed_jobs_table.php to 2019_08_19_000000_create_failed_jobs_table.php (#5082)

commit aa74fcb38f9f318159657ba5050eda62ec043b11
Author: Jess Archer <[email protected]>
Date:   Wed Aug 21 22:47:43 2019 +1000

    Remove manual adding of X-CSRF-TOKEN header (#5083)

    This is unnessecery code because Axios already automatically adds
    a X-XSRF-TOKEN header from the XSRF-TOKEN cookie encrypted value on
    same-origin requests. The `VerifyCsrfToken` middleware and Passport's
    `TokenGuard` already allow using the `X-XSRF-TOKEN` header.

commit b84bcc6446d6fb7515082824679f63c701c269fa
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 20 15:04:04 2019 -0500

    Update readme.md

commit 41e915ae9059ecbc8069b38554df1a4f73844161
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 20 15:03:32 2019 -0500

    Update readme.md

commit b7d2b48b75afbaa34c82688cb30be2f00a7d8c57
Author: Taylor Otwell <[email protected]>
Date:   Mon Aug 19 12:57:41 2019 -0500

    add failed jobs table

commit 051dea594118c87506f5f0a15b2af2cff49959b3
Author: Taylor Otwell <[email protected]>
Date:   Wed Aug 14 09:19:31 2019 -0500

    formatting

commit c07809e224a09366914964716eab911c595a9ceb
Merge: 4852f483 bb433725
Author: Dries Vints <[email protected]>
Date:   Wed Aug 14 13:49:52 2019 +0200

    Merge branch 'master' into develop

commit bb433725483803a27f21d3b21317072610bc3e9c
Author: Taylor Otwell <[email protected]>
Date:   Tue Aug 13 15:05:56 2019 -0500

    formatting

commit 83d2ecc0e9cca7ae6989134dede4a5653a19430b
Author: Dries Vints <[email protected]>
Date:   Tue Aug 13 18:19:40 2019 +0200

    Remove Stripe config settings

    These now ship with a dedicated config file for Cashier.

commit 4852f483466bdc83bac132421832d3eec07bcfaf
Author: Dries Vints <[email protected]>
Date:   Mon Aug 12 14:48:54 2019 +0200

    Remove deprecated language line (#5074)

commit a5111cf70f7cc057ed528a28ead6ab1eb48b7852
Merge: fad6ef3d d5691a2e
Author: Dries Vints <[email protected]>
Date:   Mon Aug 12 11:56:28 2019 +0200

    Merge branch 'master' into develop

commit d5691a2e6d8725d64d8569f9b1682012ced83eda
Author: Dries Vints <[email protected]>
Date:   Tue Aug 6 14:32:07 2019 +0200

    Add missing trailing semicolon

commit fad6ef3d4b932fdf0173136b353eb3ce853e2c76
Author: Chuck Rincón <[email protected]>
Date:   Fri Aug 2 15:54:12 2019 -0500

    [6.0] - Add vapor link on the welcome view (#5072)

commit 8f2a27868f7f9e0a0bbf69fa83d06b8a7a1b7894
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 30 16:40:52 2019 -0500

    formatting

commit e21657dc5a45299b3c72007d0a9a6f42c3461d14
Merge: 5391ccca 8ca56226
Author: Taylor Otwell <[email protected]>
Date:   Tue Jul 30 16:36:53 2019 -0500

    Merge branch 'config_caching_v2' of https://github.com/timacdonald/laravel into timacdonald-config_caching_v2

commit 5391cccaad03f0c4bf8d49bfdd0f07fcf7e79f2d
Author: Dries Vints <[email protected]>
Date:   Mon Jul 29 11:22:12 2019 -0400

    Update version constraint (#5066)

commit 0dd31baf2a153629d7c84b0fb2cc69f575b0d376
Merge: 7c9e5ea4 f73795ac
Author: Dries Vints <[email protected]>
Date:   Thu Jul 25 00:49:45 2019 -0400

    Merge branch 'master' into develop

commit f73795ac0569554d3464eecb259aef0d2dc64f72
Author: Ryan Purcella <[email protected]>
Date:   Thu Jul 18 08:20:32 2019 -0500

    Update number of Laracasts videos (#5063)

commit ddbbd0e67b804c379f212233e3b1c91a7b649522
Author: Guilherme Pressutto <[email protected]>
Date:   Tue Jul 16 16:38:28 2019 -0300

    Using environment variable to set redis prefix (#5062)

    It was the only redis setting that wasn't overridable by an environment variable. It can help if you have multiple instances using the same `APP_NAME`, e.g. a staging instance

commit ff15a66d8c8d989ce6e1cee6fcc06c4025d06998
Author: Artem Pakhomov <[email protected]>
Date:   Mon Jul 15 19:41:13 2019 +0300

    Fixed lodash version (CVE-2019-10744) (#5060)

commit 7c9e5ea41293b63e051bd69f7929f8712893eea1
Author: Gergő D. Nagy <[email protected]>
Date:   Fri Jul 12 15:59:55 2019 +0200

    [5.9] Add ThrottleRequests to the priority array (#5057)

    * add ThrottleRequests to the priority array

    * Move ThrottleRequests under Authenticate middleware

commit afb7cd7311acd6e88a2c7faccdb8181583488d25
Author: Miloš Gavrilović <[email protected]>
Date:   Thu Jul 11 17:03:22 2019 +0200

    update deprecated pusher option (#5058)

commit e71f50f664b5b6a6ffbeffac668717bb40c36d93
Author: Gary Green <[email protected]>
Date:   Wed Jul 10 16:11:28 2019 +0100

    Move TrustProxies to highest priority - fixes maintenance mode ip whitelist if behind proxy e.g. Cloudflare (#5055)

commit 8ca562265e9efdd3548b4a1573156d8f185d378e
Author: Tim MacDonald <[email protected]>
Date:   Tue Jul 9 13:05:55 2019 +1000

    style fix

commit 56960ed2a0f5674c9906ce0b3e7dc67925bbce29
Author: Tim MacDonald <[email protected]>
Date:   Fri Jul 5 14:20:33 2019 +1000

    introduce test bootstrapping

commit 78143a1ea02ee1b63e04df3fcaa32bed3637a5ce
Merge: fc39b073 386a4e5c
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 27 20:01:41 2019 -0500

    Merge branch 'develop' of github.com:laravel/laravel into develop

commit fc39b073f3f61a22f1b48329e294ebb881700dbe
Author: Taylor Otwell <[email protected]>
Date:   Thu Jun 27 19:57:39 2019 -0500

    remove ui scaffolding

commit 386a4e5c9257612685e0e0b2e4904c3d576da3c3
Merge: 61a0829f ebc6f6e2
Author: Graham Campbell <[email protected]>
Date:   Fri Jun 21 14:24:52 2019 +0100

    Merge branch 'master' into develop

commit ebc6f6e2c794b07c6d432483fd654aebf2ffe222
Author: Sjors Ottjes <[email protected]>
Date:   Tue Jun 18 12:18:58 2019 +0200

    Update .gitignore (#5046)

commit 61a0829f4338ae36e4f9a203e82e69726299be4d
Merge: f053116c 6f3d68f6
Author: Taylor Otwell <[email protected]>
Date:   Tue Jun 4 08:10:42 2019 -0500

    Merge branch 'master' into develop

commit 6f3d68f67f3dab0e0d853719696ede8dfd9cc4e1
Author: Taylor Otwell <[email protected]>
Date:   Tue Jun 4 08:10:26 2019 -0500

    use generic default db config

commit 014a1f0f5e1e757b8669c2ae6e78c49fc8b2978d
Author: ziming <[email protected]>
Date:   Fri May 31 20:54:50 2019 +0800

    Update axios package (#5038)

    Update axios in package.json to ^0.19 so that I don't get security vulnerability notification emails from Github when I push to my laravel project repos even though ^0.18 covers 0.19 as well

commit bf60f7f74f9578902650c30887190f86515a1037
Author: Antoni Siek <[email protected]>
Date:   Thu May 30 18:22:45 2019 +0200

    Added support for new redis URL property in config/database.php (#5037)

    Regarding laravel/framework#28612

commit f053116c5680e77c3a6c73afd193984a17ea482d
Author: Taylor Otwell <[email protected]>
Date:   Thu May 30 08:07:52 2019 -0500

    remove dumpserver since doesn't work on 5.9

commit 953093795869beb658bdd9be9442188f39e62b6a
Author: Kristoffer Högberg <[email protected]>
Date:   Wed May 29 16:12:30 2019 +0200

    Add DYNAMODB_ENDPOINT to the cache config (#5034)

    This adds the DYNAMODB_ENDPOINT environment variable to the
    dynamodb store of the cache cofig.

    Its usage is implemented in the framework as laravel/framework#28600

commit a7a1f44018d781848f15875dfe34a09ed8b6dd03
Merge: 1c824f6f 762e987e
Author: Dries Vints <[email protected]>
Date:   Tue May 21 15:16:00 2019 +0200

    Merge branch 'master' into develop

commit 762e987e5bc4c87fb75f7868f967ec3d19a379e0
Author: Dries Vints <[email protected]>
Date:   Tue May 21 15:15:32 2019 +0200

    Uppercase doctype

    In similar fashion as https://github.com/laravel/framework/pull/28583

commit 1c824f6f9f6e7a3f7ddb98ad80ffdbdbf98c81e1
Merge: c9bb74c7 f8e455e3
Author: Dries Vints <[email protected]>
Date:   Tue May 21 13:41:13 2019 +0200

    Merge branch 'master' into develop

commit f8e455e358046e59deb17b555b8949059a38ff77
Author: Matt Hanley <[email protected]>
Date:   Tue May 14 14:28:37 2019 +0100

    Fix type hint for case of trusting all proxies (string) (#5025)

commit 93c687418963f7c99b641fda905015054c785eb4
Author: Jason McCreary <[email protected]>
Date:   Thu May 9 20:07:43 2019 -0400

    Add ends_with validation message (#5020)

commit c9bb74c7e01cffbb5e185990acecf3fcab7f5eda
Author: Taylor Otwell <[email protected]>
Date:   Wed May 8 08:06:25 2019 -0500

    formatting

commit fe9f8497d98ec0fa6a7d43a2ae4127285b777065
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:57:29 2019 +0200

    Remove services deleted from core

    See https://github.com/laravel/framework/pull/28441 and https://github.com/laravel/framework/pull/28442

commit 7e6af5c031988e7a7c576c6bbbd1747ddfe548cc
Merge: f70fff8a fbd3ad7b
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:52:54 2019 +0200

    Merge branch 'master' into develop

commit fbd3ad7bbb5e98c607f19f7c697552863363bde4
Author: Dries Vints <[email protected]>
Date:   Tue May 7 17:19:27 2019 +0200

    Update changelog

commit b0e0bdc060ce068b73371919b904f3c7f0c1cfa6
Author: Taylor Otwell <[email protected]>
Date:   Tue May 7 07:38:15 2019 -0500

    formatting

commit 1086e26b32fb828ee74c8848246788a26bad72d7
Author: Mathieu TUDISCO <[email protected]>
Date:   Tue May 7 13:49:22 2019 +0200

    Update database config relating to Url addition.

commit 4b78ba61eac32cefa41da09149e0500e23cb06ec
Merge: 65f82710 af15618b
Author: Taylor Otwell <[email protected]>
Date:   Mon May 6 08:30:56 2019 -0500

    fix conflicts

commit 65f8271032c113883fb3f1e8e7b3279821148ad1
Author: Taylor Otwell <[email protected]>
Date:   Mon May 6 08:30:33 2019 -0500

    update version

commit af15618b577be04fc999e3f11880d05f030d39ce
Merge: a6bf2413 ccea56b6
Author: Dries Vints <[email protected]>
Date:   Tue Apr 30 14:02:22 2019 +0200

    Merge pull request #5013 from laravel/revert-5012-feature/exported-files

    Revert "Exclude StyleCI config from exported files"

commit ccea56b6f910649d8a6ee25f61896d2b96e90496
Author: Dries Vints <[email protected]>
Date:   Tue Apr 30 14:02:09 2019 +0200

    Revert "Exclude StyleCI config from exported files (#5012)"

    This reverts commit a6bf24134d99be79e77b8969186b9f46ffee075a.

commit a6bf24134d99be79e77b8969186b9f46ffee075a
Author: Roberto Aguilar <[email protected]>
Date:   Mon Apr 29 16:21:59 2019 -0500

    Exclude StyleCI config from exported files (#5012)

    I noticed that this file was being included when i ran the
    `laravel new` command and even though some developers will run StyleCI,
    the purpose of this file seems more like it ensures the repository
    quality rather than providing an starting point for this service.

commit 3995828c13ddca61dec45b8f9511a669cc90a15c
Author: Diego <[email protected]>
Date:   Fri Apr 26 09:26:45 2019 -0300

    [5.9] Minor grammar fix in readme.md (#5010)

    * Fix grammar ('Boost *your* skills')

    * Update readme.md

commit f70fff8ad236374f66719b010fc5eea477c581e8
Merge: cedcbc86 50176732
Author: Dries Vints <[email protected]>
Date:   Thu Apr 25 13:28:34 2019 +0200

    Merge branch 'master' into develop

commit 50176732d66b197de62d5567b79fc77f63e2cfbd
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 24 07:38:42 2019 -0500

    Apply fixes from StyleCI (#5006)

commit 12a4885a47fbd272a4a942d49d7b1eb1b42f2b19
Author: Stefan Bauer <[email protected]>
Date:   Wed Apr 24 14:38:18 2019 +0200

    Fix phpdoc to order by syntax convention (#5005)

    Reorder the `@var` phpdoc syntax by convention, see http://docs.phpdoc.org/references/phpdoc/tags/var.html

commit 60db703a27bb09d0a51023131f850d5d424997db
Author: Graham Campbell <[email protected]>
Date:   Tue Apr 23 13:44:51 2019 +0100

    [5.8] Enable JS on StyleCI (#5000)

    * Enable JS on StyleCI

commit cedcbc863d4ae224430b83aa8c8e2781715ac3c5
Merge: bdc205c8 f574aa76
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 21:26:54 2019 +0200

    Merge branch 'master' into develop

commit f574aa76e3e1b8b1d77469e37d2857e27da14379
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 21:26:44 2019 +0200

    Disable JS checks for now

commit bdc205c830186eedc45fb03412c07aa14355d482
Merge: e80327f2 81fba471
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:07:04 2019 +0200

    Merge branch 'master' into develop

commit 81fba471aff24793be8ee3ee0d303d2b31056df2
Merge: 43b09ad0 91dc5ed2
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:06:16 2019 +0200

    Merge pull request #4998 from laravel/analysis-z9QV6a

    Apply fixes from StyleCI

commit 43b09ad0f326584d56d20fc0cf2bef99b83af877
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 16:06:06 2019 +0200

    Add file exclusions for styleci

commit 91dc5ed2869b5905a01b0b85d70f33bbd9267b93
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 14:06:03 2019 +0000

    Apply fixes from StyleCI

commit 597201a049a0d1920533e5d0970a8283898becd3
Author: Dries Vints <[email protected]>
Date:   Mon Apr 22 15:55:40 2019 +0200

    Add StyleCI config

commit 06162adc9839ada8b2525e006bef6b80914296d6
Merge: 0f58190c ef1ce665
Author: Taylor Otwell <[email protected]>
Date:   Sun Apr 14 15:41:37 2019 -0500

    Merge pull request #4990 from SjorsO/patch-1

    Add IDE typehint to UserFactory

commit ef1ce665eef55e90952cd606ae120cf8c619822d
Author: Sjors Ottjes <[email protected]>
Date:   Sun Apr 14 13:30:53 2019 +0200

    Update UserFactory.php

commit 0f58190c7ba955cf7a58b47a9469bf4c6c992abb
Merge: 20cdf65a 14b0a07d
Author: Dries Vints <[email protected]>
Date:   Fri Apr 12 12:06:24 2019 +0200

    Merge pull request #4989 from DrewRoberts/update-readme-laracasts

    Update readme with Laracasts count

commit 14b0a07d79a60ef45ce5b26f8b1c34ab9274dba7
Author: DrewRoberts <[email protected]>
Date:   Fri Apr 12 01:34:48 2019 -0400

    Update readme with Laracasts count

commit 20cdf65ae61ca7cfa45292d3dd642a252147ecc8
Merge: 005ec130 1bed031c
Author: Taylor Otwell <[email protected]>
Date:   Wed Apr 10 07:31:29 2019 -0500

    Merge pull request #4987 from DivineOmega/patch-1

    [5.8] Remove underscore from cache prefix

commit 1bed031c1f7cfcfeadf497934d301987c53b1e6e
Author: Jordan Hall <[email protected]>
Date:   Wed Apr 10 12:01:28 2019 +0100

    Remove underscore as cache prefixes automatically have a colon appended to them

commit 005ec1301e3600c0a5d5a8355495d4333cab138b
Merge: 35374927 3cbc5ac6
Author: Taylor Otwell <[email protected]>
Date:   Mon Apr 8 07:47:02 2019 -0500

    Merge pull request #4986 from DivineOmega/patch-1

    [5.8] Add underscores to cache and redis database prefixes

commit 3cbc5ac640022cb4e3fcad7fc50e2086d32af6ae
Author: Jordan Hall <[email protected]>
Date:   Mon Apr 8 08:52:06 2019 +0100

    Additional underscore on cache prefix

commit 159b0e79cd5b26bc7cd4699113951599a5b5d6d0
Author: Jordan Hall <[email protected]>
Date:   Mon Apr 8 08:50:48 2019 +0100

    Additional underscore on redis database prefix

commit 35374927bd570d578f7db4a715f2a64a2ce561c1
Merge: ae44ee00 e68ff0c6
Author: Taylor Otwell <[email protected]>
Date:   Fri Apr 5 08:55:41 2019 -0500

    Merge pull request #4982 from DivineOmega/patch-1

    [5.8] Prefix redis database connection by default

commit e68ff0c66aa1b3da2c9a14d86636d582fd73891e
Author: Jordan Hall <[email protected]>
Date:   Thu Apr 4 22:18:28 2019 +0100

    Use Str class instead of helper function

commit c8bc79e94ee7f4a992d70faa5ec140a9059e603f
Author: Jordan Hall <[email protected]>
Date:   Thu Apr 4 15:11:18 2019 +0100

    Prefix redis database connection by default to mitigate multiple sites on the same server potentially sharing the same queued jobs

commit ae44ee0059f6218aab26de5551b19f70329f8832
Merge: 3886012c 88636c22
Author: Taylor Otwell <[email protected]>
Date:   Mon Apr 1 10:54:27 2019 -0700

    Merge pull request #4979 from hyperhost/add-hyper-host-sponsor

    Added Hyper Host sponsor

commit 88636c2268aa5dada08a2cd08c098bd9d25880f4
Author: Tony James <[email protected]>
Date:   Mon Apr 1 16:23:23 2019 +0100

    Added Hyper Host sponsor

    Added Hyper Host name and url

commit 3886012c0f3ad5653d9d5138530f3fc4276eaf93
Merge: 4997f081 ccc1457e
Author: Taylor Otwell <[email protected]>
Date:   Sun Mar 24 08:11:19 2019 -0700

    Merge pull request #4971 from Lenophie/patch-1

    Ignore SQLite journals

commit ccc1457e572f7ec5b2b596436622f69e94bbf635
Author: Lenophie <[email protected]>
Date:   Sun Mar 24 12:01:21 2019 +0100

    Ignore SQLite journals

commit e80327f29926869b34aa4ba92d59324ce75cac09
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:25:28 2019 +0100

    Update changelog

commit cfd5929785845000f26db851b94675d6154737b9
Merge: 53b59cd0 4997f081
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:23:52 2019 +0100

    Merge branch 'master' into develop

commit 4997f08105d6fb941b1ed2c749ebd2f55fba5a74
Author: Dries Vints <[email protected]>
Date:   Tue Mar 12 17:22:48 2019 +0100

    Update changelog

commit 3b852a1f7f292953f47df64563cc01188db336ff
Merge: 3d325b84 54cd6d90
Author: Taylor Otwell <[email protected]>
Date:   Fri Mar 8 08:03:29 2019 -0600

    Merge pull request #4963 from chapeupreto/patch-1

    [5.8] upgrade the collision dependency from v2 to v3

commit 54cd6d90bbe317040a0195e09c4fc40318bb988d
Author: Rod Elias <[email protected]>
Date:   Thu Mar 7 23:20:15 2019 -0300

    upgrade the collision dependency from v2 to v3

commit 3d325b8485591bc77d1073f7aa73596acb76ec23
Author: Dries Vints <[email protected]>
Date:   Tue Mar 5 15:12:04 2019 +0100

    Update changelog

commit 3001f3c6e232ba7ce2ecdbdfe6e43b4c64ee05ad
Author: Taylor Otwell <[email protected]>
Date:   Thu Feb 28 14:31:42 2019 -0600

    check if extension loaded

commit a0f6bcc773f3895db0ca4a85101b9a3ef2f95782
Author: Taylor Otwell <[email protected]>
Date:   Thu Feb 28 08:34:10 2019 -0600

    comment out options

commit f4ff4f4176f7d931e301f36b95a46285ac61b8b8
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 27 07:24:37 2019 -0600

    comment

commit d4d4a69b76d1dfd87b47b7a51b4c0e2aed992793
Merge: f84a69ee b34328a1
Author: Taylor Otwell <[email protected]>
Date:   Wed Feb 27 07:20:20 2019 -0600

    Merge pull request #4956 from akalongman/master

    [5.8] Use correct env name for AWS region from env.example

commit b34328a16654d09461fa53f8c681c15fe4e35095
Author: Avtandil Kikabidze <[email protected]>
Date:   Wed Feb 27 14:05:01 2019 +0400

    Use correct env name for AWS region from env.example

commit f84a69ee852bd44363042a61995d330574b6b8c3
Author: Taylor Otwell …
codepem pushed a commit to codepem/vapor-core that referenced this pull request Mar 19, 2024
This ensures that the vapor connector receives the new suffix option
that was added in laravel/framework#31784
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants