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

[9.x] Make password rule errors translatable #42060

Merged
merged 2 commits into from
Apr 20, 2022

Conversation

reziamini
Copy link
Contributor

@reziamini reziamini commented Apr 20, 2022

Right now, the only way to translate password errors is to set messages into a JSON file.
And we can't use lang/{language}/validation.php in our system to translate error messages.

With this change, we will be able to use PHP files to use translation.

For example, we can change the lang/en/validation.php file into:

return [
    'password' => [
         'mixedCase' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
         'letters' => 'The :attribute must contain at least one letter.',
         'symbols' => 'The :attribute must contain at least one symbol.',
         'numbers' => 'The :attribute must contain at least one number.',
         'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
    ],
];

These changes do not break any old changes, and old users still can use JSON files to translate this message.

If it will be merged, I'll add these messages to lang/en/validation.php in laravel/laravel repo.

And we don't need to create en.json file anymore.

@taylorotwell taylorotwell merged commit df67f44 into laravel:9.x Apr 20, 2022
@reziamini reziamini deleted the translate_password_errors branch April 20, 2022 16:51
jnoordsij added a commit to jnoordsij/laravel-laravel that referenced this pull request Apr 27, 2022
Required for password rule translations to work properly (see laravel/framework#42060)
driesvints pushed a commit to laravel/laravel that referenced this pull request Apr 27, 2022
Required for password rule translations to work properly (see laravel/framework#42060)
Jchedev added a commit to jchedev-legacy/laravel that referenced this pull request Jul 20, 2023
* [8.x] Auto update changelog file with a new release (#5801)

* Create update-changelog.md

* Update .gitattributes

* Rename update-changelog.md to update-changelog.yml

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md

* Adds Laravel `v9.x` to changelog (#5803)

* Adds Laravel `v9.x` to changelog

* Update CHANGELOG.md

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Laravel 10

* revert 10 for now

* add discovery method default

* Fix .gitattributes consistency with .editorconfig (#5802)

`lf` EOL is defined in `.editorconfig` but missed in `.gitattributes`, so here is the fix.
This little fix helps keep the EOL consistent across the project and ensures it doesn't get messed up by GitHub Desktop or any other GIT client.

* Improve typing on user factory

* Align min PHP version with docs

* Revert "Fix .gitattributes consistency with .editorconfig (#5802)" (#5809)

This reverts commit 207a23e.

* [9.x] Remove redundant `null`s (#5811)

* follow up of #5791

* Update app.php

Co-authored-by: Dries Vints <dries@vints.io>

* [10.x] Prep Laravel 10 (#5805)

* Prep Laravel 10

* Update composer.json

* Update Kernel.php

* Update composer.json

* Update composer.json

* Add Redis facade as comment in app.config (#5813)

* Revert "Add Redis facade as comment in app.config (#5813)" (#5814)

This reverts commit efd49c6.

* [9.x] Fix lang alphabetical order (#5812)

* Fix lang alphabetical order

* Update pagination.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* add default address

* Update RouteServiceProvider.php (#5816)

* Add underscore to prefix in database cache key (#5817)

For Redis caching prefix with underscore : 
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),

but when cache stored in database, then the key is created "merged" with prefix, by this line:  'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), for example, if "key" is a key for cache, then the result is: "laravel_cachekey", not a preferable "laravel_cache_key"

* Update CHANGELOG.md

* Update RouteServiceProvider.php (#5818)

* [9.x] Update sanctum config file (#5820)

* Update sanctum config file

* Update composer.json

Co-authored-by: suyaqi <suyaqi@wy.net>
Co-authored-by: Dries Vints <dries@vints.io>

* Replace Laravel CORS package (#5825)

* Update CHANGELOG.md

* Small typo fix in filesystems.php (#5827)

* Update filesystems.php

* Update filesystems.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Add option to configure Mailgun transporter scheme (#5831)

* [9.x] add throw to filesystems config (#5835)

* Update mail.php (#5836)

* Update CHANGELOG.md

* The docker-compose.override.yml should not be ignored by default (#5838)

While this file can be used for local overrides, that is not its
only intended usage. E.g. a common setup would be like this:

- *docker-compose.yml*: services shared across builds
- *docker-compose.override.yml*: services only used in development
- *docker-compose.production.yml*: configuration needed for building production images.

Now for regular development you just need to run `docker-compose up --build` and only
in you CI you would build and run for production by explicitly naming the yml files.

TL;DR: Excluding docker-compose.override.yml seems to be a personal preference of
someone and they should do that in their global .gitignore if the are so inclined.

* Update CHANGELOG.md

* Update .styleci.yml (#5843)

* Update .styleci.yml

* [9.x] Add an example to the class aliases (#5846)

* Add an example to the class aliases

* Update app.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* The comment for cache key prefix needed an update (#5849)

* The comment for cache key prefix needed an update

* formatting

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Update update-changelog.yml

* Add username in config to use with phpredis + ACL (#5851)

Linked to https://github.com/laravel/framework/pull/41683/commits

* Drop PHP 8.0 (#5854)

* Remove "password" validation key (#5856)

* [9.x] Make authenticate session a route middleware (#5842)

* make authenticate session a route middleware

* Update Kernel.php

* Update CHANGELOG

* add encryption configuration

* Update CHANGELOG

* wip

* remove packages file for a better experience

* revert change - unnecessary :)

* Create pull-requests.yml

* Update RouteServiceProvider.php (#5862)

* Update server.php (#5863)

* add levels to handler

* update wording

* fix docblock

* Update CHANGELOG.md

* Update CHANGELOG

* move password lines into main translation file

* [9.x] Add missing maintenance to config (#5868)

* [9.x] Add missing maintenance to config

#40102

* fix spacing

* fix cache store for maintenance config

* formatting

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Update CHANGELOG

* Bump laravel/framework version to latest (#5870)

Required for password rule translations to work properly (see laravel/framework#42060)

* Fix alphabetical order for password rules (#5872)

* [9.x] Run tests for skeleton (#5873)

* Run tests for skeleton

* wip

* wip

* Update logging.php (#5874)

* Bump minimum Laravel version

* Update CHANGELOG

* Update mail.php (#5877)

Add `local_domain` as an option to the smtp configuration. This can be used to change the domain that is used to send the `EHLO` command during the SMTP handshake.

`null` is a sensible default since Symfony/Mailer will use it's own default (`127.0.0.1`) to send the mail.

Co-authored-by: Bram in 't Zandt <bram@bigspark.com>

* [9.x] Add specific test user in seeder (#5879)

* Update DatabaseSeeder.php

* formatting

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* a few wording changes

* Update CHANGELOG

* Switch to ESM imports (#5895)

This improves the transition for Vite users.

* Update CHANGELOG

* add language line

* [9.x] Improve Pusher configuration for easy development (#5897)

* Improve Pusher configuration for easy development

* Fix style-ci

* Update CHANGELOG

* Sorting (#5899)

Sort Alphabetically for newly added `doesnt_start_with`.

* Update pull-requests.yml

* Update update-changelog.yml

* use global functino

* [9.x] Vite (#5904)

* Use Vite

* Gitignore Vite build directory

* Use CSS entry points

* Update plugin

* Linting

* Update plugin

* [9.x] Added support for easy development configuration in bootstrap.js (#5900)

* Added support for easy development configuration in bootstrap.js

* Added extra variables for existing configuration in broadcasting

* Update bootstrap.js

* Setting default for empty variable

* Update .env.example

* Update .env.example

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Update composer.json

* Update CHANGELOG

* Update .gitignore (#5924)

* bump actions/checkout (#5928)

* Update bootstrap.js (#5929)

Before it was use `VITE_PUSHER_CLUSTER`, it should be `VITE_PUSHER_APP_CLUSTER`.

* add default reloading to skeleton (#5927)

* Update to the latest version of laravel-vite-plugin (#5932)

The `laravel-vite-plugin` had a pre-1.x major version bump due to a change in the plugin return type.

* Update to the latest version of laravel-vite-plugin (#5943)

* Update CHANGELOG

* Bump axios version (#5946)

* [9.x] Uses `laravel/pint` for styling (#5945)

* Uses `laravel/pint` for styling

* Makes `.styleci.yml` ignored on export

* Update composer.json

Co-authored-by: Dries Vints <dries@vints.io>

* Vite 3 support (#5944)

* Update CHANGELOG

* Update font delivery (#5952)

Seeing the non compliance of Google Fonts to GDPR I thought to update the CDN.
My non-designer eyes could see no difference on the site.

* wip

* [9.x] Don't need to ignore vite config file (#5953)

* Don't need to ignore vite config file

* Apply fixes from StyleCI

Co-authored-by: StyleCI Bot <bot@styleci.io>

* Update CHANGELOG

* Update laravel/sanctum version (#5957)

* Update composer.json (#5959)

* Update CHANGELOG

* Validation added `doesnt_end_with` translation (#5962)

* Validation added doesnt_end_with translation

* fix order

* Update CHANGELOG

* Add ValidateSignature middleware for ignore params (#5942)

* Add ValidateSignature middleware for ignore params

* Comment out query parameters by default

* Remove leading slash

* Update Kernel ValidateSignature middleware path

* wip

* wip

* Update CHANGELOG

* add alt to laravel logo image (#5973)

* use short closure

* use except

* [9.x] feature: `max_digits` and `min_digits` validation translations (#5975)

* feature: `max_digits` and `min_digits` validation translations

* Update validation.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Update CHANGELOG

* bump the Vite version (#5977)

* Update CHANGELOG

* Make email unique (#5978)

When seeding large amounts of users there is a chance for a duplicate entry SQL error because the email column is unique. https://github.com/laravel/laravel/blob/64e01753985749fab6626a370b27baa8431e74e6/database/migrations/2014_10_12_000000_create_users_table.php#L19

* Update CHANGELOG

* Validation added `required_if_accepted` (#5987)

Added translation for new validation [`required_if_accepted`](laravel/framework#44035) rule

* Add Laravel Bootcamp to Learning Laravel (#5991)

* Add Laravel Bootcamp to Learning Laravel

* Update README.md

* GitHub Workflows security hardening (#5992)

* build: harden update-changelog.yml permissions
Signed-off-by: Alex <aleksandrosansan@gmail.com>

* build: harden tests.yml permissions
Signed-off-by: Alex <aleksandrosansan@gmail.com>

* Update update-changelog.yml

* Update tests.yml

Co-authored-by: Dries Vints <dries@vints.io>

* Update CHANGELOG

* Update tests.yml

* PHP 8.2 build (#5999)

* PHP 8.2 build

* wip

* wip

* Update tests.yml (#6000)

* update colours (#6002)

* ignore .env.production (#6004)

* Upgrade axios to v1.x (#6008)

https://github.com/axios/axios/releases/tag/v1.0.0

* Shorten pusher host config (#6009)

* Shorten pusher host config

* Update broadcasting.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Sort EditorConfig rules (#6012)

* Add /.fleet directory to .gitignore (#6011)

* Remove 8.0 build

* Update CHANGELOG

* Changing .env to make Pusher work without editing the commented out part in the bootstrap.js (#6021)

* edit file

* This works for null, undefined and '', because it's JavaScript

* Update CHANGELOG

* Adds lowercase validation rule translation (#6028)

* Adds lowercase validation rule translation

* Update validation.php

Co-authored-by: Dries Vints <dries@vints.io>

* Update validation.php (#6029)

* validation rules sorting consistency (#6031)

* Update CHANGELOG

* bump vite plugin (#6038)

* Update CHANGELOG

* Create issues.yml

* Add ulid and ascii validation message (#6046)

* vite 4 support (#6043)

* Update package.json

* Update CHANGELOG

* add decimal translation

* Update CHANGELOG

* Updated tests badge (#6050)

The old badge was still referencing Travis CI, last time it ran was 2 years ago.

* Update to Heroicons v2 (#6051)

* [9.x] Support pusher-js v8.0 (#6059)

* Specify cluster for Pusher

* Update bootstrap.js

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Updated git configuration to use LF line endings by default (#6061)

* switch email to a primary key (#6064)

switching from a normal index here to a primary index works the same except for adding a `UNIQUE` constraint.

The `DatabaseTokenRepository` deletes existing records with an email first, before creating a new one, so this additional constraint will be okay.

https://github.com/laravel/framework/blob/9.x/src/Illuminate/Auth/Passwords/DatabaseTokenRepository.php#L88

* [10.x] Uses PHP Native Type Declarations 🐘 (#6010)

* Adds basic typing around method's arguments and return types

* Adds missing `closure` type

* Adds typing on tests

* Fixes `RedirectIfAuthenticated`

* Fixes `Authenticate`

* Improves `RedirectIfAuthenticated` types

* Fixes user factory `unverified` return type

* Update CHANGELOG

* Update composer.json

* Update composer.json

* use min stability stable

* Removes redundant composer setting

* Keeps `"prefer-stable": true`

* Use dev stability for master

* Update CHANGELOG

* Adds "missing" validation rule translations (#6078)

* Uses Laravel Ignition `v2.x` (#6079)

* adjust wording

* remove dispatches job trait

* Use nullable typing (#6084)

* rename property for clarity

* rename password reset tokens table in skeleton

* document new options

* update example

* Update CHANGELOG

* sets ASSET_URL to use / as the default value (#6089)

* [10.x] Adds PHPUnit 10 support (#6052)

* Adds PHPUnit 10 support

* Reverts `noNamespaceSchemaLocation`

* Improves PHPUnit configuration file

* remove lang directory by default

* update change log

* [10.x] A fresh welcome page (#6093)

* wip

* minor tweaks

* Use cool gray for dark mode

* Use the same grays for light and dark

* Improve dots bg

* Add some red back into dark mode

* Replace Tailwind CDN with compiled CSS

* Remove unnecessary class

* Restore font-display: swap

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* remove shop for now while store being redone

* [9.x] Adds clarification to throttle auth setting (#6096)

* adds clarification to throttle auth setting

* Update auth.php

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* remove lodash (#6095)

* Tweaks Laravel description (#6099)

* Update package.json (#6100)

* update min stability

* Update CHANGELOG.md

* Remove branch-alias from composer.json (#6103)

Co-authored-by: s-damian <contact@damian-freelance.fr>

* note ses-v2

* Add PHPUnit result cache to gitignore (#6105)

* Allow php-http/discovery as a composer plugin (#6106)

* Update CHANGELOG

* remove unneeded call

* Update CHANGELOG

* Missing comma (#6111)

* add ses-v2 mailer in config (#6112)

* Revert "add ses-v2 mailer in config (#6112)" (#6115)

This reverts commit a1ef009.

* Remove redundant `@return` docblock in UserFactory (#6119)

* Reverts #6089 (#6122)

* Update .gitignore (#6123)

Reorder

* Update CHANGELOG.md

* Update CHANGELOG

* Fix typo (#6128)

* Specify facility in the syslog driver config (#6130)

* Update CHANGELOG

* [10.x] Add replace_placeholders to log channels (#6139)

* add replace_placeholders to log channels

* Update logging.php

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Update CHANGELOG

* Add job batching options to Queue configuration file (#6149)

* add batching config options to queue config file

This adds the batching configuration options to the queue configuration skeleton, so everyone has a faster way of knowing that it's possible to customize the database connection and table options.

* formatting

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>

* Update CHANGELOG

* clean up comment

* Adds `phpunit/phpunit@10.1` support (#6155)

* [10.x] Minor skeleton slimming (#6159)

* remove rate limiter from route provider by default

* remove policy place holder

* remove broadcast skeleton in favor of new provider in core

* use default provider collection

* Remove unnecessary properties from exception handler.

* add back broadcast provider

* update comment

* add rate limiting

* Apply fixes from StyleCI

* fix formatting

---------

Co-authored-by: StyleCI Bot <bot@styleci.io>

* Update CHANGELOG

* Update CHANGELOG

* Fix laravel/framework constraints for Default Service Providers (#6160)

* Update CHANGELOG

* Update welcome.blade.php (#6163)

"Set z-index to 10 for Login/Register container to ensure it appears on top of other elements"

* Migrate to modules (#6090)

* Update mail.php (#6170)

* Update CHANGELOG

* Add hashed cast to user password (#6171)

* Add `hashed` cast to user password

* Update composer.json

* Bring back cluster config option, as required by pusher-js v8.0. (#6174)

* Update CHANGELOG

* add lock path

* Update CHANGELOG

* update description

* Update CHANGELOG

* Update Kernel.php (#6193)

* Update CHANGELOG

* Allow accessing APP_NAME in Vite (#6204)

* Omit default values for suffix in phpunit.xml (#6210)

The values specified for `suffix` are their respective defaults and can be omitted.

* shorten directories

* Update CHANGELOG

* Commit changes

* Code clean up

* First round of fixes

* Format lang

* Add Routes

* Authentication ready

---------

Co-authored-by: Dries Vints <dries@vints.io>
Co-authored-by: Taylor Otwell <taylor@laravel.com>
Co-authored-by: driesvints <driesvints@users.noreply.github.com>
Co-authored-by: Nuno Maduro <enunomaduro@gmail.com>
Co-authored-by: ThisGitHubUsernameWasAvailable <89264810+ThisGitHubUsernameWasAvailable@users.noreply.github.com>
Co-authored-by: Choraimy Kroonstuiver <3661474+axlon@users.noreply.github.com>
Co-authored-by: Jonathan Goode <u01jmg3@users.noreply.github.com>
Co-authored-by: Felix Dorn <github@felixdorn.fr>
Co-authored-by: Markus Machatschek <mmachatschek@users.noreply.github.com>
Co-authored-by: Shuvro Roy <shuvro.nsu.cse@gmail.com>
Co-authored-by: m4tlch <m4tlch@users.noreply.github.com>
Co-authored-by: emargareten <46111162+emargareten@users.noreply.github.com>
Co-authored-by: suyar <296399959@qq.com>
Co-authored-by: suyaqi <suyaqi@wy.net>
Co-authored-by: Roy Shay <tooshay@users.noreply.github.com>
Co-authored-by: Jesper Noordsij <45041769+jnoordsij@users.noreply.github.com>
Co-authored-by: Ankur Kumar <ankurk91@users.noreply.github.com>
Co-authored-by: Matthias Niess <mniess@gmail.com>
Co-authored-by: Noboru Shiroiwa <14008307+nshiro@users.noreply.github.com>
Co-authored-by: Jack Ellis <jack@jackellisweb.com>
Co-authored-by: neoteknic <neoteknic@gmail.com>
Co-authored-by: Graham Campbell <hello@gjcampbell.co.uk>
Co-authored-by: Graham Campbell <GrahamCampbell@users.noreply.github.com>
Co-authored-by: Mateusz Nastalski <mnastalski@outlook.com>
Co-authored-by: Ostap Brehin <osbre@protonmail.com>
Co-authored-by: Bruno Tomé <ibrunotome@gmail.com>
Co-authored-by: Andréas Lundgren <1066486+adevade@users.noreply.github.com>
Co-authored-by: Bram in 't Zandt <bintzandt@users.noreply.github.com>
Co-authored-by: Bram in 't Zandt <bram@bigspark.com>
Co-authored-by: Jess Archer <jess@jessarcher.com>
Co-authored-by: Oanh Nguyen <oanhnn.bk@gmail.com>
Co-authored-by: Farid Aghili <faridaghili@hotmail.com>
Co-authored-by: rennokki <alex@renoki.org>
Co-authored-by: N'Bayramberdiyev <nbayramberdiyev@gmail.com>
Co-authored-by: Irsyad A. Panjaitan <irsyadpanjaitan@gmail.com>
Co-authored-by: Tim MacDonald <hello@timacdonald.me>
Co-authored-by: Abenet Tamiru <me@abenet.email>
Co-authored-by: StyleCI Bot <bot@styleci.io>
Co-authored-by: kichetof <kichetof@users.noreply.github.com>
Co-authored-by: Stephen Rees-Carter <stephen@rees-carter.net>
Co-authored-by: Masudul Haque Shihab <shihab.gsc10@gmail.com>
Co-authored-by: Dan Harrin <git@danharrin.com>
Co-authored-by: Martin Ro <martin-ro@users.noreply.github.com>
Co-authored-by: Luis Parrado <luisprmat@gmail.com>
Co-authored-by: Julius Kiekbusch <jubeki99@gmail.com>
Co-authored-by: Alex <aleksandrosansan@gmail.com>
Co-authored-by: I Putu Bagus Purnama Yasa <yasapurnama@gmail.com>
Co-authored-by: Bùi Thế Hạnh <buihanh2304@gmail.com>
Co-authored-by: Zep Fietje <hey@zepfietje.com>
Co-authored-by: Dominik Rajkowski <dom.rajkowski@gmail.com>
Co-authored-by: Corné Veldman <cveldman@hotmail.com>
Co-authored-by: Michael Nabil <46572405+michaelnabil230@users.noreply.github.com>
Co-authored-by: Adrien Leloup <adrien@whitecube.be>
Co-authored-by: Vytautas M <balu-lt@users.noreply.github.com>
Co-authored-by: Wendell Adriel <me@wendelladriel.com>
Co-authored-by: Andrew Brown <browner12@gmail.com>
Co-authored-by: Jason McCreary <jason@pureconcepts.net>
Co-authored-by: Arne_ <a.perschke@hctec.net>
Co-authored-by: Stephen Damian - PHP / Laravel 10 / Vue.js / React <stephen.d.dev@protonmail.com>
Co-authored-by: s-damian <contact@damian-freelance.fr>
Co-authored-by: Shakil Alam <30234430+itxshakil@users.noreply.github.com>
Co-authored-by: Nicolas Grekas <nicolas.grekas@gmail.com>
Co-authored-by: taylorotwell <taylorotwell@users.noreply.github.com>
Co-authored-by: Ngô Quốc Đạt <datlechin@gmail.com>
Co-authored-by: TENIOS <40282681+TENIOS@users.noreply.github.com>
Co-authored-by: Izzudin Anuar <izzudinanuar96@gmail.com>
Co-authored-by: Nico <3315078+nicolus@users.noreply.github.com>
Co-authored-by: Alan Poulain <contact@alanpoulain.eu>
Co-authored-by: André Olsen <andreolsen4200@gmail.com>
Co-authored-by: Ayman Atmeh <ayman.atmeh@gmail.com>
Co-authored-by: Saya <379924+chu121su12@users.noreply.github.com>
Co-authored-by: Jesse Leite <jesseleite@gmail.com>
Co-authored-by: Domantas Petrauskas <hello@domnantas.lt>
Co-authored-by: Benedikt Franke <benedikt@franke.tech>
totoprayogo1916 added a commit to totoprayogo1916/OpenDK that referenced this pull request Sep 4, 2023
commit 5b60b604c4167b30286a6e033723a6b274e8452d
Author: Arne_ <a.perschke@hctec.net>
Date:   Sun Feb 12 21:06:25 2023 +0100

    [9.x] Adds clarification to throttle auth setting (#6096)

    * adds clarification to throttle auth setting

    * Update auth.php

    ---------

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit c0b60c0ac74e599122a6a417171798f609f16814
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Jan 31 15:10:57 2023 +0000

    Update CHANGELOG

commit 6092ff46b3d5e4436948b8d576894b51955f3a5e
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Jan 31 09:05:09 2023 -0600

    update example

commit 9c26e612121be5cbc63efd9ec725d30d79233119
Author: Tim MacDonald <hello@timacdonald.me>
Date:   Fri Jan 20 13:31:28 2023 +1100

    Adds "missing" validation rule translations (#6078)

commit 6b7fc50985142f794b1513edf2e224365c543d1e
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Jan 17 16:28:00 2023 +0000

    Update CHANGELOG

commit 5c7cc8eee40c4bf910f48244b3837100342d8b37
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Wed Jan 11 15:50:07 2023 +0000

    Keeps `"prefer-stable": true`

commit 75d22431af8b54da05526a305668a88b4dd67cf5
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Wed Jan 11 15:21:12 2023 +0000

    Removes redundant composer setting

commit c1092ec084bb294a61b0f1c2149fddd662f1fc55
Author: Taylor Otwell <taylor@laravel.com>
Date:   Wed Jan 11 08:11:39 2023 -0600

    use min stability stable

commit b4573d5cdefab25240f91a0348bfd86c0769aca7
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Jan 3 17:20:21 2023 +0000

    Update CHANGELOG

commit 091aa7d8823cfd2b81b32344ea273120e442192d
Author: Andrew Brown <browner12@gmail.com>
Date:   Mon Jan 2 08:45:35 2023 -0600

    switch email to a primary key (#6064)

    switching from a normal index here to a primary index works the same except for adding a `UNIQUE` constraint.

    The `DatabaseTokenRepository` deletes existing records with an email first, before creating a new one, so this additional constraint will be okay.

    https://github.com/laravel/framework/blob/9.x/src/Illuminate/Auth/Passwords/DatabaseTokenRepository.php#L88

commit ca01443b96e02ca79ef138d615d5a36b7484a03c
Author: Vytautas M <balu-lt@users.noreply.github.com>
Date:   Tue Dec 27 18:39:26 2022 +0200

    [9.x] Support pusher-js v8.0 (#6059)

    * Specify cluster for Pusher

    * Update bootstrap.js

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit 1fd1e03fcc7070b172e0352648c87570f2f64661
Author: Dries Vints <dries@vints.io>
Date:   Thu Dec 22 15:40:18 2022 +0100

    Update to Heroicons v2 (#6051)

commit f1f20728ab853d362b2820626ba6284f4aab81e7
Author: Adrien Leloup <adrien@whitecube.be>
Date:   Wed Dec 21 16:51:13 2022 +0100

    Updated tests badge (#6050)

    The old badge was still referencing Travis CI, last time it ran was 2 years ago.

commit 42f585783bb3970ee83ea6e46deef96a51d30573
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Dec 20 17:15:30 2022 +0000

    Update CHANGELOG

commit 39f4830e92a7467b2a7fe6bc23d0ec14bc3b46a6
Author: Taylor Otwell <taylor@laravel.com>
Date:   Mon Dec 19 11:35:07 2022 -0600

    add decimal translation

commit 52b741c79b6a8a4a6b900231203561f48af35b1c
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Thu Dec 15 14:58:31 2022 +0000

    Update CHANGELOG

commit 1b0d33cd8d6885bc3d97825d2733375f770e8abd
Author: Dries Vints <dries@vints.io>
Date:   Thu Dec 15 15:57:23 2022 +0100

    Update package.json

commit bc420da074db4e88168ab22317ee9da94a283fbc
Author: Tim MacDonald <hello@timacdonald.me>
Date:   Fri Dec 16 01:55:53 2022 +1100

    vite 4 support (#6043)

commit d412d5bae85319ede43d4ba8eb60c3dc925077de
Author: Noboru Shiroiwa <14008307+nshiro@users.noreply.github.com>
Date:   Mon Dec 12 23:51:57 2022 +0900

    Add ulid and ascii validation message (#6046)

commit 88b2d177fcff54cc9356d29ba7d3b36efda800c6
Author: Dries Vints <dries@vints.io>
Date:   Wed Nov 23 10:05:05 2022 +0100

    Create issues.yml

commit 71c77805deb2362199e2326bccd2d40e4516b591
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Nov 22 16:33:48 2022 +0000

    Update CHANGELOG

commit 8a8730c994849967db6fb493f524e42f66a05ab5
Author: Tim MacDonald <hello@timacdonald.me>
Date:   Tue Nov 22 08:26:23 2022 +1100

    bump vite plugin (#6038)

commit 040d548810dd2d517bbd5cc792818b5d0429a0fc
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Nov 15 17:07:34 2022 +0000

    Update CHANGELOG

commit 21964ec81f4f71d63017fd6b19d1bf51ee6716f9
Author: Farid Aghili <faridaghili@hotmail.com>
Date:   Mon Nov 14 18:48:18 2022 +0330

    validation rules sorting consistency (#6031)

commit 69e2cce9cb81f2b18a22bcdad2f5ebdf8d14d455
Author: Michael Nabil <46572405+michaelnabil230@users.noreply.github.com>
Date:   Mon Nov 14 15:15:20 2022 +0200

    Update validation.php (#6029)

commit 3762b41729b92fa263d942d0b650f0a5b78277d9
Author: Tim MacDonald <hello@timacdonald.me>
Date:   Thu Nov 10 01:55:21 2022 +1100

    Adds lowercase validation rule translation (#6028)

    * Adds lowercase validation rule translation

    * Update validation.php

    Co-authored-by: Dries Vints <dries@vints.io>

commit 7b7823264b3e9d6a3133db3062abf623b985b7d4
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Nov 1 17:24:48 2022 +0000

    Update CHANGELOG

commit d938bfd0d0126f66581db5b26359101cb08cd897
Author: Corné Veldman <cveldman@hotmail.com>
Date:   Fri Oct 28 15:38:26 2022 +0200

    Changing .env to make Pusher work without editing the commented out part in the bootstrap.js (#6021)

    * edit file

    * This works for null, undefined and '', because it's JavaScript

commit 48e3855963f867733c71fa494f329f55ddd869bf
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Oct 25 16:29:19 2022 +0000

    Update CHANGELOG

commit 586b9e7bf5efef4d205552cc285a3f8498767578
Author: Dominik Rajkowski <dom.rajkowski@gmail.com>
Date:   Mon Oct 17 16:18:45 2022 +0200

    Add /.fleet directory to .gitignore (#6011)

commit 1f27a2245b59863ff5db5a8fec9a14932fe363fe
Author: Zep Fietje <hey@zepfietje.com>
Date:   Mon Oct 17 16:17:59 2022 +0200

    Sort EditorConfig rules (#6012)

commit 5daa02c70b27212aea4b2e302c4ac5ba65b1e789
Author: Bùi Thế Hạnh <buihanh2304@gmail.com>
Date:   Tue Oct 11 20:43:53 2022 +0700

    Shorten pusher host config (#6009)

    * Shorten pusher host config

    * Update broadcasting.php

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit 5fb72c0d92ca126f32bf1e850f25f35c48390209
Author: Ankur Kumar <ankurk91@users.noreply.github.com>
Date:   Mon Oct 10 18:52:38 2022 +0530

    Upgrade axios to v1.x (#6008)

    https://github.com/axios/axios/releases/tag/v1.0.0

commit 7f62c14563d835ba6ce1b258a02abc5828083c54
Author: I Putu Bagus Purnama Yasa <yasapurnama@gmail.com>
Date:   Thu Oct 6 22:02:37 2022 +0800

    ignore .env.production (#6004)

commit 5138bc36dbc884098ea68942e805b2267e7a627f
Author: Tim MacDonald <hello@timacdonald.me>
Date:   Wed Oct 5 13:26:47 2022 +1100

    update colours (#6002)

commit 2f975d75278186498927f7d798af485789cab556
Author: Dries Vints <dries@vints.io>
Date:   Tue Oct 4 15:48:17 2022 +0200

    Update tests.yml (#6000)

commit b47c4bc20df5b8adc85c3017014937994fd41448
Author: Dries Vints <dries@vints.io>
Date:   Tue Oct 4 15:30:48 2022 +0200

    PHP 8.2 build (#5999)

    * PHP 8.2 build

    * wip

    * wip

commit e87bfd60ed4ca30109aa73c4d23250c113fe75ff
Author: Dries Vints <dries@vints.io>
Date:   Tue Sep 20 17:01:46 2022 +0200

    Update tests.yml

commit ff696f4a6619a398c715dc86142a6bffd15173ca
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Sep 20 14:59:49 2022 +0000

    Update CHANGELOG

commit 9725129d74ca465f1b27b20a561de3c133fb6a78
Author: Alex <aleksandrosansan@gmail.com>
Date:   Tue Sep 20 15:19:54 2022 +0200

    GitHub Workflows security hardening (#5992)

    * build: harden update-changelog.yml permissions
    Signed-off-by: Alex <aleksandrosansan@gmail.com>

    * build: harden tests.yml permissions
    Signed-off-by: Alex <aleksandrosansan@gmail.com>

    * Update update-changelog.yml

    * Update tests.yml

    Co-authored-by: Dries Vints <dries@vints.io>

commit 4a73b5d57e518bd907875e97d5261c8546703e79
Author: Julius Kiekbusch <jubeki99@gmail.com>
Date:   Fri Sep 16 16:18:22 2022 +0200

    Add Laravel Bootcamp to Learning Laravel (#5991)

    * Add Laravel Bootcamp to Learning Laravel

    * Update README.md

commit 1bec4f82cf934fe49f89ad7a5adc70cbd272637f
Author: Luis Parrado <luisprmat@gmail.com>
Date:   Thu Sep 15 08:15:04 2022 -0500

    Validation added `required_if_accepted` (#5987)

    Added translation for new validation [`required_if_accepted`](https://github.com/laravel/framework/pull/44035) rule

commit c1dc4199b83466a3a6a8c70953250b0e2ec70001
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Sep 6 15:58:31 2022 +0000

    Update CHANGELOG

commit ad219e82aa5cb350bc3828d0515820e48210e300
Author: Martin Ro <martin-ro@users.noreply.github.com>
Date:   Fri Sep 2 22:10:54 2022 +0800

    Make email unique (#5978)

    When seeding large amounts of users there is a chance for a duplicate entry SQL error because the email column is unique. https://github.com/laravel/laravel/blob/64e01753985749fab6626a370b27baa8431e74e6/database/migrations/2014_10_12_000000_create_users_table.php#L19

commit 64e01753985749fab6626a370b27baa8431e74e6
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Aug 30 15:23:27 2022 +0000

    Update CHANGELOG

commit 8438ba5d219d2462f20a3dc0748e0a0842679d2b
Author: Tim MacDonald <hello@timacdonald.me>
Date:   Mon Aug 29 23:54:18 2022 +1000

    bump the Vite version (#5977)

commit e5e46b4293104e95afdceb973c1e660541259177
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Aug 23 15:04:04 2022 +0000

    Update CHANGELOG

commit d18332bdeffbb1f4bf0da620d01b3ff26b349623
Author: Dan Harrin <git@danharrin.com>
Date:   Mon Aug 22 14:26:36 2022 +0100

    [9.x] feature: `max_digits` and `min_digits` validation translations (#5975)

    * feature: `max_digits` and `min_digits` validation translations

    * Update validation.php

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit e2e25f607a894427d6545f611ad3c8d94d022e9d
Author: Taylor Otwell <taylor@laravel.com>
Date:   Sat Aug 20 12:46:21 2022 -0500

    use except

commit 7b17f5f32623c2ee75f2bff57a42bb8f180ac779
Author: Taylor Otwell <taylor@laravel.com>
Date:   Sat Aug 20 12:22:43 2022 -0500

    use short closure

commit c233957734b1353d8952e07c1dae462f8cddc3d4
Author: Masudul Haque Shihab <shihab.gsc10@gmail.com>
Date:   Sat Aug 20 23:02:56 2022 +0600

    add alt to laravel logo image (#5973)

commit 57400e95451524c81fae6945c2b63c534ead4a49
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Aug 16 15:06:46 2022 +0000

    Update CHANGELOG

commit 858a3ca66286d18144f8548692e8f4ad59338a77
Author: Taylor Otwell <taylor@laravel.com>
Date:   Mon Aug 15 10:21:08 2022 -0500

    wip

commit 951c9c85019d211601465c93bf04d9e447626a59
Author: Taylor Otwell <taylor@laravel.com>
Date:   Mon Aug 15 10:20:30 2022 -0500

    wip

commit dbced6ac8c122280966e807ad93ba63d4798f8bc
Author: Stephen Rees-Carter <stephen@rees-carter.net>
Date:   Tue Aug 16 01:19:56 2022 +1000

    Add ValidateSignature middleware for ignore params (#5942)

    * Add ValidateSignature middleware for ignore params

    * Comment out query parameters by default

    * Remove leading slash

    * Update Kernel ValidateSignature middleware path

commit 4135d5834505e3253e6ff8a68180bf40dfb50112
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Aug 9 15:36:37 2022 +0000

    Update CHANGELOG

commit 74dfb6cec4d2c1f6d7e1a1e29e4bc9d610dc7031
Author: kichetof <kichetof@users.noreply.github.com>
Date:   Wed Aug 3 15:42:10 2022 +0200

    Validation added `doesnt_end_with` translation (#5962)

    * Validation added doesnt_end_with translation

    * fix order

commit ba8ed9d65d77ce37ee94bd920ec353a0a8ca8c41
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Aug 2 15:06:21 2022 +0000

    Update CHANGELOG

commit 3ea3861e4bab0f39322e8ac2ac9ffd8c6481fbe6
Author: Dries Vints <dries@vints.io>
Date:   Mon Aug 1 15:54:38 2022 +0200

    Update composer.json (#5959)

commit 6e1103180b439bf6970b4a50e9e42cc5de9f9bf3
Author: suyar <296399959@qq.com>
Date:   Fri Jul 29 21:01:11 2022 +0800

    Update laravel/sanctum version (#5957)

commit 944c87da745bd7ee031d165af18177468d9ae207
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Jul 26 15:27:11 2022 +0000

    Update CHANGELOG

commit ce62296fa91534a394a4037b0fd2a775826c4fbf
Author: Graham Campbell <GrahamCampbell@users.noreply.github.com>
Date:   Tue Jul 26 14:05:37 2022 +0100

    [9.x] Don't need to ignore vite config file (#5953)

    * Don't need to ignore vite config file

    * Apply fixes from StyleCI

    Co-authored-by: StyleCI Bot <bot@styleci.io>

commit 52863d9e4aa41f63592e8c98e5fe717ee7f06a18
Author: Abenet Tamiru <me@abenet.email>
Date:   Sun Jul 24 02:02:13 2022 +0200

    Update font delivery (#5952)

    Seeing the non compliance of Google Fonts to GDPR I thought to update the CDN.
    My non-designer eyes could see no difference on the site.

commit 1e974481ad7cd643aef9ab0483b9afbeb8b14572
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Jul 19 14:22:59 2022 +0000

    Update CHANGELOG

commit b124ab0fe6f3ab28e58a7aac1ce49095c144d4f7
Author: Tim MacDonald <hello@timacdonald.me>
Date:   Wed Jul 20 00:03:41 2022 +1000

    Vite 3 support (#5944)

commit fa5e54a2ab6b1de8a4cef69b59bcfdecd07ab0cb
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Fri Jul 15 14:38:49 2022 +0100

    [9.x] Uses `laravel/pint` for styling (#5945)

    * Uses `laravel/pint` for styling

    * Makes `.styleci.yml` ignored on export

    * Update composer.json

    Co-authored-by: Dries Vints <dries@vints.io>

commit 88419bfc583ecfa6f7ff0c563762fb5a7d70490b
Author: Ankur Kumar <ankurk91@users.noreply.github.com>
Date:   Thu Jul 14 23:35:03 2022 +0530

    Bump axios version (#5946)

commit df07877444cee31f1017ad1e57fb58f21ce8603f
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Wed Jul 13 14:23:03 2022 +0000

    Update CHANGELOG

commit 3850b46cbe6ee13266abe43375d51980ecadba10
Author: Jess Archer <jess@jessarcher.com>
Date:   Wed Jul 13 23:57:43 2022 +1000

     Update to the latest version of laravel-vite-plugin (#5943)

commit 91f49543af088eedd2f1742623092f3b1b0ff7a0
Author: Jess Archer <jess@jessarcher.com>
Date:   Thu Jul 7 01:50:30 2022 +1000

    Update to the latest version of laravel-vite-plugin (#5932)

    The `laravel-vite-plugin` had a pre-1.x major version bump due to a change in the plugin return type.

commit 1fa6b7dc52f9f7675ff1f8ca82a9a701e64249fa
Author: Tim MacDonald <hello@timacdonald.me>
Date:   Sat Jul 2 06:41:47 2022 +1000

    add default reloading to skeleton (#5927)

commit fa4c8c17e052bb864f75344dbb5e63857ee3fe3b
Author: Irsyad A. Panjaitan <irsyadpanjaitan@gmail.com>
Date:   Sat Jul 2 03:37:51 2022 +0700

    Update bootstrap.js (#5929)

    Before it was use `VITE_PUSHER_CLUSTER`, it should be `VITE_PUSHER_APP_CLUSTER`.

commit 3c0c7a0d17a89ce45e49fc2a75ea330051a0a26d
Author: N'Bayramberdiyev <nbayramberdiyev@gmail.com>
Date:   Fri Jul 1 19:28:34 2022 +0300

    bump actions/checkout (#5928)

commit 14719d097ab638e508009a9ae1a04bdb887fae32
Author: Dries Vints <dries@vints.io>
Date:   Thu Jun 30 15:31:18 2022 +0200

    Update .gitignore (#5924)

commit bb7320563888264e956294fb70ed07b017ddfef1
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Jun 28 14:37:38 2022 +0000

    Update CHANGELOG

commit f46db07ef581dbda69dec3fee8064b87a1db2ead
Author: Dries Vints <dries@vints.io>
Date:   Tue Jun 28 16:36:21 2022 +0200

    Update composer.json

commit d694bc06ccbf66f4f8ce432c39b71deea6766135
Author: rennokki <alex@renoki.org>
Date:   Fri Jun 24 21:35:29 2022 +0300

    [9.x] Added support for easy development configuration in bootstrap.js (#5900)

    * Added support for easy development configuration in bootstrap.js

    * Added extra variables for existing configuration in broadcasting

    * Update bootstrap.js

    * Setting default for empty variable

    * Update .env.example

    * Update .env.example

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit 86b4b1b65659a7b0f4b3dad1e753aa1efa5a7642
Author: Jess Archer <jess@jessarcher.com>
Date:   Thu Jun 23 04:07:47 2022 +1000

    [9.x] Vite (#5904)

    * Use Vite

    * Gitignore Vite build directory

    * Use CSS entry points

    * Update plugin

    * Linting

    * Update plugin

commit 0c3d1fabe5a9319131aa4e9d74b27f29e74a50fb
Author: Taylor Otwell <taylor@laravel.com>
Date:   Wed Jun 22 11:02:43 2022 -0500

    use global functino

commit 1f9eee06ddb38abf86e2f7df37a20281cd774e3d
Author: Dries Vints <dries@vints.io>
Date:   Wed Jun 8 11:02:46 2022 +0200

    Update update-changelog.yml

commit 2e823dd31bed673730ab49382b305cffd7279c5d
Author: Dries Vints <dries@vints.io>
Date:   Wed Jun 8 11:02:33 2022 +0200

    Update pull-requests.yml

commit 3d7b0778d6c9f5573270aa1dda3974294cd2ce56
Author: Farid Aghili <faridaghili@hotmail.com>
Date:   Tue Jun 7 20:45:24 2022 +0430

    Sorting (#5899)

    Sort Alphabetically for newly added `doesnt_start_with`.

commit c5c731a8aa51dc146645c4024b0f34b9dc3a28ac
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Jun 7 15:20:23 2022 +0000

    Update CHANGELOG

commit 93cc51ed00dd84df64ff028bfc31be2165c3dcfe
Author: Oanh Nguyen <oanhnn.bk@gmail.com>
Date:   Tue Jun 7 22:03:59 2022 +0700

    [9.x] Improve Pusher configuration for easy development (#5897)

    * Improve Pusher configuration for easy development

    * Fix style-ci

commit b084aacc5ad105e39c2b058e9523e73655be8d1f
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Jun 7 10:03:18 2022 -0500

    add language line

commit bb0de1f14803b7ad2c05914e03f2f439ef69c320
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue May 31 15:19:55 2022 +0000

    Update CHANGELOG

commit 2e3563d9aa0ad4ff46412c51d70ab6b8c5e80068
Author: Jess Archer <jess@jessarcher.com>
Date:   Sat May 28 10:36:33 2022 +1000

    Switch to ESM imports (#5895)

    This improves the transition for Vite users.

commit 8d3a964edc67125f336f14ccfca31b62623bca65
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue May 10 15:38:08 2022 +0000

    Update CHANGELOG

commit 7216fa7e9a797227f303630d937a0722878b753b
Author: Taylor Otwell <taylor@laravel.com>
Date:   Thu May 5 14:52:23 2022 -0500

    a few wording changes

commit 5c5a300bfd83cd3432eb342fdabf2b85bfaee4bd
Author: Dries Vints <dries@vints.io>
Date:   Thu May 5 15:53:49 2022 +0200

    [9.x] Add specific test user in seeder (#5879)

    * Update DatabaseSeeder.php

    * formatting

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit 14b6505bbabe0a5dede5a853508ca61fa35781cd
Author: Bram in 't Zandt <bintzandt@users.noreply.github.com>
Date:   Wed May 4 16:05:31 2022 +0200

    Update mail.php (#5877)

    Add `local_domain` as an option to the smtp configuration. This can be used to change the domain that is used to send the `EHLO` command during the SMTP handshake.

    `null` is a sensible default since Symfony/Mailer will use it's own default (`127.0.0.1`) to send the mail.

    Co-authored-by: Bram in 't Zandt <bram@bigspark.com>

commit ffd790eae1e0a5bf3e64ca1ef09005446a89d4d6
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue May 3 15:52:34 2022 +0000

    Update CHANGELOG

commit 5840c98d8fde042efd8652f053d8e879a736ed3b
Author: Dries Vints <dries@vints.io>
Date:   Tue May 3 17:51:16 2022 +0200

    Bump minimum Laravel version

commit 62cb9052cdf0c399d1287ea38752864bc9a24f29
Author: Dries Vints <dries@vints.io>
Date:   Tue May 3 16:31:17 2022 +0200

    Update logging.php (#5874)

commit f662352123ab7c52965726a8ecf78e034ec5b7cc
Author: Dries Vints <dries@vints.io>
Date:   Mon May 2 16:11:15 2022 +0200

    [9.x] Run tests for skeleton (#5873)

    * Run tests for skeleton

    * wip

    * wip

commit 17fbcaaa10342b42396518bf8647db4b9fff9ff0
Merge: 52e99847 78ad150a
Author: Dries Vints <dries@vints.io>
Date:   Fri Apr 29 15:51:16 2022 +0200

    Merge branch '8.x' into 9.x

commit 52e99847d0e97ab87b53182d4beb1c091896b5c0
Author: Andréas Lundgren <1066486+adevade@users.noreply.github.com>
Date:   Thu Apr 28 15:08:50 2022 +0200

    Fix alphabetical order for password rules (#5872)

commit d0603437cbbb478586979a3792d49e0d157ce554
Author: Jesper Noordsij <45041769+jnoordsij@users.noreply.github.com>
Date:   Wed Apr 27 17:11:10 2022 +0200

    Bump laravel/framework version to latest (#5870)

    Required for password rule translations to work properly (see https://github.com/laravel/framework/pull/42060)

commit ba5f2dd26afb5d6af0dbd8f99341b277fef2865f
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Wed Apr 27 13:42:49 2022 +0000

    Update CHANGELOG

commit 9d39835571f813e6918eac01d4efbd5fc72cef02
Author: Bruno Tomé <ibrunotome@gmail.com>
Date:   Wed Apr 20 17:29:25 2022 -0300

     [9.x] Add missing maintenance to config (#5868)

    * [9.x] Add missing maintenance to config

    * fix spacing

    * fix cache store for maintenance config

    * formatting

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit db0d052ece1c17c506633f4c9f5604b65e1cc3a4
Author: Taylor Otwell <taylor@laravel.com>
Date:   Wed Apr 20 09:16:59 2022 -0500

    move password lines into main translation file

commit ba23174f1cd12b92eca79e1b1f84069a1870317e
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Apr 12 15:23:51 2022 +0000

    Update CHANGELOG

commit 78ad150a947f6677d9cb4e3eb9a257d312fe14c3
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Apr 12 15:09:15 2022 +0000

    Update CHANGELOG.md

commit d5d2b67dcbefdee6b04da06bcb0e82e689193614
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Apr 12 09:34:17 2022 -0500

    fix docblock

commit a8cefc2dd15a7af467b17bd2c058054a76e39902
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Apr 12 09:31:23 2022 -0500

    update wording

commit a507e1424339633ce423729ec0ac49b99f0e57d7
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Apr 12 09:30:44 2022 -0500

    add levels to handler

commit 843a4f81eb25b88b225a89d75a2d3c274e81be6b
Author: Dries Vints <dries@vints.io>
Date:   Tue Apr 12 15:37:49 2022 +0200

    Update server.php (#5863)

commit b630eae0b31c8dbb87aefa46d66c1cdfa687911e
Author: Ostap Brehin <osbre@protonmail.com>
Date:   Mon Apr 11 17:07:05 2022 +0300

    Update RouteServiceProvider.php (#5862)

commit 039a99ad14dbb6cfebb6a04be4679f0916f639a4
Author: Dries Vints <dries@vints.io>
Date:   Fri Apr 8 11:05:03 2022 +0200

    Create pull-requests.yml

commit 19272e0bd3a321ec38d8633ab661ff7948f8a157
Author: Taylor Otwell <taylor@laravel.com>
Date:   Thu Apr 7 09:15:43 2022 -0500

    revert change - unnecessary :)

commit 9986d516f0b68c4fa10a43a0f592a98a8bf7e6dc
Author: Taylor Otwell <taylor@laravel.com>
Date:   Wed Apr 6 11:12:17 2022 -0500

    remove packages file for a better experience

commit d70eb3e1d1e97712623e4e1970832a72e0edacab
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Apr 5 20:53:39 2022 -0500

    wip

commit 61d1448ce90b312e43d7c477db02e2a75783a0bf
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Apr 5 15:28:45 2022 +0000

    Update CHANGELOG

commit f7b982ebdf7bd31eda9f05f901bd92ed32446156
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Mar 29 14:50:18 2022 -0500

    add encryption configuration

commit 55db9d681a1420271ebba4053a2576854d7d42db
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Mar 29 14:52:38 2022 +0000

    Update CHANGELOG

commit d650fa2a30270f016a406c2f53408d229d18165b
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Mar 29 09:48:17 2022 -0500

    [9.x] Make authenticate session a route middleware (#5842)

    * make authenticate session a route middleware

    * Update Kernel.php

commit c532e14680c01fcdc6e9531046cc4bafe9073254
Author: Mateusz Nastalski <mnastalski@outlook.com>
Date:   Mon Mar 28 15:50:02 2022 +0200

    Remove "password" validation key (#5856)

commit 8594815f5e85a8e9d12519c5df1bbda6efb1ae95
Author: neoteknic <neoteknic@gmail.com>
Date:   Fri Mar 25 16:38:42 2022 +0100

    Add username in config to use with phpredis + ACL (#5851)

    Linked to https://github.com/laravel/framework/pull/41683/commits

commit c4f8ed0915417fe668fb8d25b3f3c40b48d408c1
Author: Dries Vints <dries@vints.io>
Date:   Wed Mar 23 13:33:54 2022 +0100

    Update update-changelog.yml

commit 9ffc18aa427450c14026596024f36155c93c4707
Author: Jack Ellis <jack@jackellisweb.com>
Date:   Mon Mar 21 17:35:38 2022 -0500

    The comment for cache key prefix needed an update (#5849)

    * The comment for cache key prefix needed an update

    * formatting

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit d8f0e93c561fac7b7c5ae988f566c220d4f88b24
Author: Noboru Shiroiwa <14008307+nshiro@users.noreply.github.com>
Date:   Tue Mar 22 01:00:48 2022 +0900

    [9.x] Add an example to the class aliases (#5846)

    * Add an example to the class aliases

    * Update app.php

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit 222908f96f7369fe5039d6cda4b84d15cacc1fb6
Author: Dries Vints <dries@vints.io>
Date:   Thu Mar 17 11:05:03 2022 +0100

    Update .styleci.yml

commit b18216ad5de3886c6325afa238a67016af1db83e
Author: Dries Vints <dries@vints.io>
Date:   Thu Mar 17 10:53:43 2022 +0100

    Update .styleci.yml (#5843)

commit 660417c9f7d236bb702ca3d1f9e26d1764493e7a
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Mar 15 15:58:42 2022 +0000

    Update CHANGELOG.md

commit 9605fb17a3263a7d95124589e17bcee34df60200
Author: Matthias Niess <mniess@gmail.com>
Date:   Wed Mar 9 17:34:17 2022 +0100

    The docker-compose.override.yml should not be ignored by default (#5838)

    While this file can be used for local overrides, that is not its
    only intended usage. E.g. a common setup would be like this:

    - *docker-compose.yml*: services shared across builds
    - *docker-compose.override.yml*: services only used in development
    - *docker-compose.production.yml*: configuration needed for building production images.

    Now for regular development you just need to run `docker-compose up --build` and only
    in you CI you would build and run for production by explicitly naming the yml files.

    TL;DR: Excluding docker-compose.override.yml seems to be a personal preference of
    someone and they should do that in their global .gitignore if the are so inclined.

commit 67be95196b9b980d251a53b614bb7f8d6889bb22
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Mar 8 16:29:41 2022 +0000

    Update CHANGELOG.md

commit 95fec9a3e8a98bc58f6a932875f84d62a1693308
Author: Dries Vints <dries@vints.io>
Date:   Tue Mar 8 15:38:39 2022 +0100

    Update mail.php (#5836)

commit 93395a3468b7827bae2117de7543eddd5eb4a4e5
Author: Ankur Kumar <ankurk91@users.noreply.github.com>
Date:   Sun Mar 6 22:00:51 2022 +0530

    [9.x] add throw to filesystems config (#5835)

commit 4ecd97bcf7e996e35b7672c69e3974b8e233bb1b
Author: Jesper Noordsij <45041769+jnoordsij@users.noreply.github.com>
Date:   Thu Mar 3 15:13:57 2022 +0100

    Add option to configure Mailgun transporter scheme (#5831)

commit 969ff64e02b5ba316ebfe58aba76ca9ceac34542
Author: Roy Shay <tooshay@users.noreply.github.com>
Date:   Tue Feb 22 21:05:53 2022 +0000

    Small typo fix in filesystems.php (#5827)

    * Update filesystems.php

    * Update filesystems.php

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit dcf59f0ef8035abe9b03eb34e30c4e3f3b53fab6
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Feb 22 16:06:37 2022 +0000

    Update CHANGELOG.md

commit ecf7b06c4b2286eab6f4fc946588300c95e2cabb
Author: Dries Vints <dries@vints.io>
Date:   Tue Feb 22 16:42:30 2022 +0100

    Replace Laravel CORS package (#5825)

commit 871ff9e65fea5588b1018d8770db6fc6ad37069d
Author: suyar <296399959@qq.com>
Date:   Thu Feb 17 23:16:40 2022 +0800

    [9.x] Update sanctum config file (#5820)

    * Update sanctum config file

    * Update composer.json

    Co-authored-by: suyaqi <suyaqi@wy.net>
    Co-authored-by: Dries Vints <dries@vints.io>

commit 4a6229aa654faae58f8ea627f4b771351692508c
Author: emargareten <46111162+emargareten@users.noreply.github.com>
Date:   Wed Feb 16 16:18:19 2022 +0200

    Update RouteServiceProvider.php (#5818)

commit 345e46569d4b6a5c7093991a3257cdc0dcfe776b
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Feb 15 18:07:39 2022 +0000

    Update CHANGELOG.md

commit 19f4e346d4e50eeab3a8840b93f89c9f1ffe2a42
Author: m4tlch <m4tlch@users.noreply.github.com>
Date:   Tue Feb 15 17:09:29 2022 +0200

    Add underscore to prefix in database cache key (#5817)

    For Redis caching prefix with underscore :
    'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),

    but when cache stored in database, then the key is created "merged" with prefix, by this line:  'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), for example, if "key" is a key for cache, then the result is: "laravel_cachekey", not a preferable "laravel_cache_key"

commit 376ed676eedac46346a9aad5e6c1a07491fd6279
Author: Dries Vints <dries@vints.io>
Date:   Tue Feb 15 15:32:48 2022 +0100

    Update RouteServiceProvider.php (#5816)

commit 20b7e19a6584821f04db43f71ce446036db1cac8
Author: Taylor Otwell <taylor@laravel.com>
Date:   Mon Feb 14 12:25:37 2022 -0600

    add default address

commit 5eef672a6a8703bb834e2528090a8e25a8a2912d
Author: Shuvro Roy <shuvro.nsu.cse@gmail.com>
Date:   Mon Feb 14 23:20:49 2022 +0600

    [9.x] Fix lang alphabetical order (#5812)

    * Fix lang alphabetical order

    * Update pagination.php

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit f2b8023df3725631db1af11480b7f0f0b2576c74
Author: Taylor Otwell <taylor@laravel.com>
Date:   Mon Feb 14 11:05:44 2022 -0600

    Revert "Add Redis facade as comment in app.config (#5813)" (#5814)

    This reverts commit efd49c6b94a575f3523f5809690314dc6d8bccf5.

commit efd49c6b94a575f3523f5809690314dc6d8bccf5
Author: Markus Machatschek <mmachatschek@users.noreply.github.com>
Date:   Mon Feb 14 18:05:17 2022 +0100

    Add Redis facade as comment in app.config (#5813)

commit e077976680bdb2644698fb8965a1e2a8710b5d4b
Author: Felix Dorn <github@felixdorn.fr>
Date:   Fri Feb 11 15:22:45 2022 +0100

    [9.x] Remove redundant `null`s (#5811)

    * follow up of #5791

    * Update app.php

    Co-authored-by: Dries Vints <dries@vints.io>

commit 6c1f430aa76809084668f9a97121bd2ca8bafa10
Author: Dries Vints <dries@vints.io>
Date:   Thu Feb 10 17:51:03 2022 +0100

    Revert "Fix .gitattributes consistency with .editorconfig (#5802)" (#5809)

    This reverts commit 207a23e4a1267e65b268a1ee09afdbc5f5e1beea.

commit 90be1e323e11afaa2bdf86ee6eb4d5fea5c246e8
Merge: a49d1c2a 8097a3da
Author: Dries Vints <dries@vints.io>
Date:   Thu Feb 10 10:07:19 2022 +0100

    Merge pull request #5807 from u01jmg3/9.x

    Align min PHP version with docs

commit 8097a3da49748cb54e49807e3180b5abe9362e4e
Author: Jonathan Goode <u01jmg3@users.noreply.github.com>
Date:   Thu Feb 10 01:08:38 2022 +0000

    Align min PHP version with docs

commit a49d1c2aa100f588227edc69ed6f1bbc8c57a4b9
Merge: 5901059e 6479a60e
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Wed Feb 9 20:34:02 2022 +0000

    Merge pull request #5806 from axlon/patch-1

    [9.x] Improve typing on user factory

commit 6479a60e956eb91748a2d46a3f37e7bb4e1cafb6
Author: Choraimy Kroonstuiver <3661474+axlon@users.noreply.github.com>
Date:   Wed Feb 9 21:24:35 2022 +0100

    Improve typing on user factory

commit 207a23e4a1267e65b268a1ee09afdbc5f5e1beea
Author: ThisGitHubUsernameWasAvailable <89264810+ThisGitHubUsernameWasAvailable@users.noreply.github.com>
Date:   Wed Feb 9 17:55:45 2022 +0300

    Fix .gitattributes consistency with .editorconfig (#5802)

    `lf` EOL is defined in `.editorconfig` but missed in `.gitattributes`, so here is the fix.
    This little fix helps keep the EOL consistent across the project and ensures it doesn't get messed up by GitHub Desktop or any other GIT client.

commit 5901059ebaf268ca536f51d6a33c840846a86596
Author: Taylor Otwell <taylor@laravel.com>
Date:   Wed Feb 9 08:53:22 2022 -0600

    add discovery method default

commit 1d9e53f90d484e636dfca1812e38953befd97158
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Tue Feb 8 16:27:21 2022 +0000

    Adds Laravel `v9.x` to changelog (#5803)

    * Adds Laravel `v9.x` to changelog

    * Update CHANGELOG.md

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit 4c6186ac6207336b35bfdaf2669012711ac06d83
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Feb 8 16:08:54 2022 +0000

    Update CHANGELOG.md

commit 4c2104ac101b18ee7c3916cdb15b8ad5566489c2
Author: driesvints <driesvints@users.noreply.github.com>
Date:   Tue Feb 8 15:54:01 2022 +0000

    Update CHANGELOG.md

commit fb72538c96f94682385ec4efb3428f2cac6f5471
Author: Dries Vints <dries@vints.io>
Date:   Tue Feb 8 16:52:58 2022 +0100

    Update CHANGELOG.md

commit 130b8de9ccf25bfc887230138ac2c5bbd783a101
Author: Dries Vints <dries@vints.io>
Date:   Tue Feb 8 16:52:33 2022 +0100

    Update CHANGELOG.md

commit b0934a91182fb3bcf703fb6864927e46f508a8f2
Merge: 71efaae0 79805bc1
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Feb 8 09:21:31 2022 -0600

    Merge branch '8.x'

commit 79805bc1c4a4db517bbb14b05b43c76ff185d5a6
Author: Dries Vints <dries@vints.io>
Date:   Tue Feb 8 15:36:57 2022 +0100

    [8.x] Auto update changelog file with a new release (#5801)

    * Create update-changelog.md

    * Update .gitattributes

    * Rename update-changelog.md to update-changelog.yml

commit 71efaae0a5f2e27753aa614775f49f93ad1f0ea9
Merge: b86a62a6 4c5b7742
Author: Dries Vints <dries@vints.io>
Date:   Tue Feb 8 13:28:17 2022 +0100

    Merge branch '8.x'

commit b86a62a6b865d0632ade6fe334dfa1358d18d500
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Mon Feb 7 14:26:16 2022 +0000

    Reverts analysing routes folder as it causes issues with html coverage reporter (#5800)

commit 4c5b7742946736fc72d2e32a3d82ba75426ab784
Author: Andrey Helldar <helldar@ai-rus.com>
Date:   Mon Feb 7 01:42:53 2022 +0300

    Added missing dot in `required_array_keys` validation rule (#5798)

commit f7bc33d584a33e3c6667be71ebf21a970728a4b5
Merge: 939b0ce9 6e1e4dd1
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Sat Feb 5 11:35:55 2022 +0000

    Merge pull request #5797 from ArnaudLier/patch-1

    [9.x] Remove `server.php` from StyleCI

commit 6e1e4dd13870e958c21ac8149420cf4e909c0539
Author: Arnaud Lier <arnaud@eclixo.com>
Date:   Sat Feb 5 12:03:43 2022 +0100

    Update .styleci.yml

commit 939b0ce9bac208e413b9d579def782abb9319021
Author: Taylor Otwell <taylor@laravel.com>
Date:   Fri Feb 4 09:34:38 2022 -0600

    remove session key

commit 096638ea9a883495f4eddace63fde5a7fb1b2b1f
Author: Dries Vints <dries@vints.io>
Date:   Thu Feb 3 16:06:00 2022 +0100

    Update the default Argon2 options

commit 94771229eaf6039a97dbdd84b09a4525732b7e97
Merge: 926c48e8 9051a027
Author: Dries Vints <dries@vints.io>
Date:   Thu Feb 3 10:38:16 2022 +0100

    Merge pull request #5795 from emaia/patch-1

    Fix alphabetical order

commit 9051a027c56a415e81063ad587a143b276956ad9
Author: Emaia <dina.maia@gmail.com>
Date:   Wed Feb 2 22:57:23 2022 -0300

    Fix alphabetical order

commit 8819ee7097584775444432d271f79e6794d50b46
Author: Anjorin Damilare <damilareanjorin1@gmail.com>
Date:   Wed Feb 2 15:41:54 2022 +0100

    [9.x]: remove redundant argument `null` since default parameter is `null` (#5791)

commit 926c48e8562e36811159d615ba27ebb2929d0378
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Feb 1 11:48:12 2022 -0600

    add validation language line

commit d43dcb1c54b1bfe660137c5cc55d125f6b0ec7fa
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Feb 1 11:42:34 2022 -0600

    document json session serialization (#5787)

commit 5ae2f24a0411d6907adca42ceb2d1e7f7ffa7fd9
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Feb 1 08:43:03 2022 -0600

    fix spacing

commit 54a249cd3c3a9794017b221babf77f2b2b20fa42
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Sun Jan 30 16:16:02 2022 +0000

    Bumps `nunomaduro/collision` dependency (#5782)

commit aed682e0deeac10ba6465a398ef4cb4856a6d35e
Author: Beau Simensen <beau@dflydev.com>
Date:   Thu Jan 27 12:00:18 2022 -0600

    [9.x] Make it easier to support Papertrail on Vapor out of the box (#5780)

    * Make it easier to support Papertrail on Vapor

    * Fixed style

commit b2dbbafab9667bc9bf52d8f59ffa866c2f570ea1
Author: Anjorin Damilare <damilareanjorin1@gmail.com>
Date:   Thu Jan 27 18:50:11 2022 +0100

    [9.x] remove `null` since default parameter is `null` (#5779)

commit 4db44f80e571c8904f2209cfe3f058e61b641d8a
Merge: f346b9a2 1db81e7e
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Fri Jan 21 14:59:27 2022 +0000

    Merge pull request #5774 from morrislaptop/user-factory-type

    [9.x] Add type to UserFactory for generic parent class

commit f346b9a2f0d64d2daffcbbbc0f5cb869a863f622
Author: Vytautas M <balu-lt@users.noreply.github.com>
Date:   Fri Jan 21 16:49:38 2022 +0200

    Bump axios version (#5773)

commit 1db81e7e8cc624c0b6992d451646d32fe2d5f358
Author: Craig Morris <craig.michael.morris@gmail.com>
Date:   Fri Jan 21 12:32:08 2022 +0000

    use FQN

commit 4c94086856e5a876dd8d0ae933bf96d14964ba70
Author: Craig Morris <craig.michael.morris@gmail.com>
Date:   Fri Jan 21 12:21:38 2022 +0000

    switch to extends

commit 7bff7c6c61aa5865966cdd6cea93409771f97413
Author: Craig Morris <craig.michael.morris@gmail.com>
Date:   Fri Jan 21 12:03:57 2022 +0000

    add type to UserFactory for generic parent class

commit e92f1e9729ed20e0ad43fa0d8fce979000210a13
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Thu Jan 20 15:55:58 2022 +0000

    [9.x] Analysis routes files test coverage (#5771)

commit 0df17db8d938161fc6bfcd1f09f21f1b6a259137
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Mon Jan 17 19:28:59 2022 +0000

    Improves app's default aliases configuration file (#5769)

commit 9b93e0d2d4a5fddb39ce69200877e9b17fe5fe32
Author: Jason McCreary <jason@pureconcepts.net>
Date:   Sat Jan 15 10:05:53 2022 -0500

    Use <env> element (#5765)

commit 929571decd5ec0c499f5931088f573b561811fac
Author: Graham Campbell <GrahamCampbell@users.noreply.github.com>
Date:   Fri Jan 14 13:04:13 2022 +0000

    Bumped minimum guzzle version to match that of the framework suggest list (#5766)

commit 9b4e424d98dc97e27c97afd37f3d20a96b4cddec
Author: Dries Vints <dries@vints.io>
Date:   Thu Jan 13 15:48:35 2022 +0100

    Add Ignition (#5764)

commit 726e0bb10f1444dc0387b876773eb927a4a1971e
Merge: 9c182f86 3701593e
Author: Dries Vints <dries@vints.io>
Date:   Thu Jan 13 10:34:58 2022 +0100

    Merge pull request #5763 from laravel/revert-5762-master

    Revert "[9.x] Add Ignition"

commit 3701593e66c96315af5586a59c3533929293be9a
Author: Dries Vints <dries@vints.io>
Date:   Thu Jan 13 10:34:51 2022 +0100

    Revert "[9.x] Add Ignition"

commit 9c182f861dabdaf1ce86dd60ca147af07201b4a7
Merge: b58d346b 70a8b4a1
Author: Dries Vints <dries@vints.io>
Date:   Thu Jan 13 10:28:37 2022 +0100

    Merge pull request #5762 from freekmurze/master

    [9.x] Add Ignition

commit 70a8b4a108fa24c0862fdad78a339d85089c432f
Author: Freek Van der Herten <freek@spatie.be>
Date:   Wed Jan 12 23:47:13 2022 +0100

    Update composer.json

commit b58d346ba93ff295a2cfac1636ca13865d70d1a4
Author: Dries Vints <dries@vints.io>
Date:   Wed Jan 12 16:51:03 2022 +0100

    Update composer.json (#5761)

commit 8d08717f15d1bddf3d28124b928ccc3a5cfdf84b
Author: Taylor Otwell <taylor@laravel.com>
Date:   Thu Jan 6 15:31:01 2022 -0600

    Update README.md

commit 6808b20560faaa8e083e1ff4d96230878c1c72f3
Author: Barry vd. Heuvel <barryvdh@gmail.com>
Date:   Mon Jan 3 16:02:45 2022 +0100

    Use latest version of laravel-cors (#5758)

commit 409992eed004edff2b47b7beddc4048f97470928
Author: Reza Amini <rezaaminiroyal@gmail.com>
Date:   Sun Jan 2 21:49:56 2022 +0330

    [9.x] Make .env.example sync with new changes (#5757)

    In this PR #5568  the key has been changed!

commit 2b7464fad4ded81f1991eaa255a8948ee9edaad3
Merge: 013b1779 56a73db2
Author: Dries Vints <dries@vints.io>
Date:   Wed Dec 22 11:09:09 2021 +0100

    Merge branch '8.x'

commit 56a73db2e34f5aa8befffcce40aaaa92e2d7393c
Author: Dries Vints <dries@vints.io>
Date:   Wed Dec 22 11:07:28 2021 +0100

    Update CHANGELOG.md

commit 013b17793da5db79bccb29566633ed937f296a20
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Mon Dec 20 14:48:17 2021 -0500

    [9.x] Removes Core Class Aliases from the skeleton (#5751)

    * Removes Core Class Aliases from the skeleton

    * Updates configuration file

    * use array merge

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit f79296dcd548c0ced169f6453d75f231fee407fc
Author: Bilal Al-Massry <33354606+bilalalmassry@users.noreply.github.com>
Date:   Mon Dec 20 17:12:28 2021 +0200

    Add mac_address validation message (#5754)

commit 1ea351916efb0e6d96c5761996fcd361dee4630c
Author: Dries Vints <dries@vints.io>
Date:   Fri Dec 17 15:40:10 2021 +0100

    Update validation.php (#5753)

commit 472d31e5f2f6ce36e1b4146bfae0eb77f15ac0c0
Author: Zeros Developer <33526722+ZerosDev@users.noreply.github.com>
Date:   Thu Dec 16 22:06:59 2021 +0700

    Simplify the maintenance file call (#5752)

    * Simplify the maintenance file call

    * Update index.php

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit e999e1d07c9f56b0d18cce8fa9addc736339e904
Author: Dries Vints <dries@vints.io>
Date:   Wed Dec 15 14:49:21 2021 +0100

    Update composer.json (#5750)

commit 583281c4090ea89c7426853e0bae1151e7abc253
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Tue Dec 14 08:55:22 2021 -0500

    Removes `server.php` file (#5747)

commit 2a88c174b6a52764aa509877acc1c5a54411de6d
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Fri Dec 10 13:16:58 2021 +0000

    Imports without model events trait on seeds (#5745)

commit 4bc502bba6b7bcbc8007c061621266fe8f989e07
Author: underwood <scott@underwood.co>
Date:   Thu Dec 9 16:09:19 2021 -0600

    Delete web.config (#5744)

    During a security audit one of the few recommendations they made was to remove or limit access to web.config.

    Since this is mainly used by Microsoft IIS server it isn't necessary for most Laravel projects and could be added if someone is using Microsoft server.

commit c97ba79ab31698ff56f88f800ad3bdec7da9cf3d
Author: rennokki <alex@renoki.org>
Date:   Wed Dec 8 15:58:10 2021 +0200

    [9.x] Add client_options to Pusher driver (#5743)

    * Add client_options to Pusher driver

    * Update broadcasting.php

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit 274d1bdd7294b4b357ef3a348c6787617d7de315
Merge: fcb4d9df 7e78e26c
Author: Dries Vints <dries@vints.io>
Date:   Tue Dec 7 17:10:58 2021 +0100

    Merge branch '8.x'

commit 7e78e26c7ce45fe1716b82ecbecd6a808a0e7f8b
Author: Dries Vints <dries@vints.io>
Date:   Tue Dec 7 17:10:22 2021 +0100

    Update CHANGELOG.md

commit 68a0dbed64604405aeb23739ef1304c561f3bc82
Author: Rob Lister <rob@lonap.net>
Date:   Mon Dec 6 14:24:41 2021 +0000

    [8.x] Add option to set sendmail path. Fix default (#5741)

    * Add option to set sendmail path. Fix default

    Testing this in an application, it would seem that sendmail -bs is the wrong option for this case?

    What Laravel appears to do is pipe an RFC-2822 formatted message on STDIN and requires the sendmail emulation to deal with it,
    rather than -bs which initiates an SMTP session.

    if Exim is the default MTA then -t would seem to be the correct option.

    If you have an alternative installed instead of sendmail/exim, then there's no way to set the path, so I added MAIL_SENDMAIL_PATH
    so you can do, e.g.:

    MAIL_SENDMAIL_PATH="/usr/bin/msmtp -t --tls=off --from=${MAIL_FROM_ADDRESS} --auto-from=off"

    msmtp doesn't support -bs at all

    * Update mail.php

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit 8a62ca263323b3b8415b627aeda7533ab2bb5da8
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Fri Dec 3 15:04:57 2021 +0000

    Improves generic types on the skeleton (#5740)

commit 7bf32280e20d1cbb487ed009ef9d6f268e4badf6
Author: Bram <bram.agjm1@gmail.com>
Date:   Thu Dec 2 21:40:24 2021 +0100

    [8.x] Add types to arrays in boilerplate (#5738)

    * Add more specific types

    * Update Authenticate.php

    * Update Authenticate.php

commit e35899f0aa2698f31cae410116d9a75e0d5a201a
Author: Micheal Mand <micheal@kmdwebdesigns.com>
Date:   Wed Nov 24 19:07:41 2021 -0700

    Fix asset publishing if they were already published (#5734)

    Thank you @sebdesign for the fix.

commit fcb4d9df1a86b01748c73fb9737a5dffadc47c70
Merge: 21c3ef96 901879dd
Author: Dries Vints <dries@vints.io>
Date:   Tue Nov 23 18:31:32 2021 +0100

    Merge branch '8.x'

commit 901879dd68d276af4d937b3bf0e2a2467d8efa09
Author: Dries Vints <dries@vints.io>
Date:   Tue Nov 23 18:31:14 2021 +0100

    Update CHANGELOG.md

commit 0eb4a40eb38a92102be63234b041954914c5bbce
Author: Dries Vints <dries@vints.io>
Date:   Tue Nov 23 18:30:45 2021 +0100

    Update CHANGELOG.md

commit 3de91bca75bd8745e2a8f7d0dd4a3548e3fe2098
Author: N'Bayramberdiyev <nbayramberdiyev@gmail.com>
Date:   Fri Nov 19 16:51:42 2021 +0300

    sort validation rules alphabetically (#5728)

commit 33ceba78baba318237964646980f275df12e413f
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Thu Nov 18 16:18:32 2021 +0000

    Removes the commands property (#5727)

commit 21c3ef96f471f2cf79f5f72a36810404acb28f23
Merge: 195a7e03 f8ff35e0
Author: Dries Vints <dries@vints.io>
Date:   Tue Nov 16 17:50:11 2021 +0100

    Merge branch '8.x'

commit f8ff35e070e29e7415069b5d1bfabab1c8cb9c55
Author: Dries Vints <dries@vints.io>
Date:   Tue Nov 16 17:49:31 2021 +0100

    Update CHANGELOG.md

commit 195a7e03746b71e91838b73d8ed763c16985fd1c
Author: Ben Johnson <ben@indiehd.com>
Date:   Tue Nov 16 09:26:41 2021 -0500

    Replace schema with search_path in pgsql config (#5726)

    Per https://github.com/laravel/framework/pull/35588 , the term "schema" (a namespace) has been corrected to "search_path" (a list of namespaces), where appropriate, throughout the framework.

    Accordingly, the `schema` configuration key should be changed to `search_path` to better reflect the fact that it may specify a _list_ of schemata (schemas), and not just a single schema. (In several Laravel versions prior to 9.0, the `schema` key could already specify more than one schema, but this fact was undocumented and non-obvious without examining the implementation carefully.)

    As of Laravel 9.0, the `search_path` may specify any number of schemata, in any of the following formats:

    'search_path' => 'public',
    'search_path' => 'public,laravel',
    'search_path' => ['public', '"laravel"', "'foobar'", '$bat'],
    'search_path' => '\'public\', "laravel", "\'foobar\'", \'$bat\'',
    'search_path' => '"$user", public',

    Note that in the last example, the `$user` variable refers to PostgreSQL's special $user variable, as described in the Schema Documentation ( https://www.postgresql.org/docs/current/ddl-schemas.html ).

    Note also that Laravel's default `search_path` value, 'public', is not necessarily the best choice for every use case. Developers should consult the "Usage Patterns" section of the aforementioned documentation before deciding how best to set the `search_path`, as it has security implications.

commit 2079d34cfcc9cd987f4e00055e5f98df84358660
Author: Rahul Dey <rahul900day@gmail.com>
Date:   Tue Nov 16 02:40:04 2021 +0530

    Update sanctum.php (#5725)

commit c112d149c4778d2eb75f0b514fe73f653f8f9ac6
Author: Nicklas Kevin Frank <Frozire@users.noreply.github.com>
Date:   Thu Nov 11 15:20:34 2021 +0100

    Added declined and declined_if validation rules (#5723)

commit aa71b038b43dbba69d8886624b70231f3dfd7f84
Merge: d54907c2 bad350d1
Author: Dries Vints <dries@vints.io>
Date:   Tue Nov 9 18:29:57 2021 +0100

    Merge branch '8.x'

commit bad350d1999cbaf2036db9646ddef63d77537e80
Author: Dries Vints <dries@vints.io>
Date:   Tue Nov 9 18:29:24 2021 +0100

    Update CHANGELOG.md

commit 399d435c4f0b41a5b6d3e14894195f9196d36bb8
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Nov 9 09:56:23 2021 -0600

    add facade

commit 79249c920b45943ecdddb5d968d0a05d0a4bf3d6
Author: Braden Keith <bradenkeith@gmail.com>
Date:   Fri Nov 5 10:45:57 2021 -0400

    Added Romega Software to Sponsorships (#5721)

commit ca8e5d65da361d070e637d0d82a8eb49b6a41afb
Author: Adam Mospan <adammospan@gmail.com>
Date:   Fri Nov 5 15:00:12 2021 +0200

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

commit d54907c27d001c85e008c49175e6ef4e14f2bfe2
Merge: 1117ebd8 5d22b246
Author: Dries Vints <dries@vints.io>
Date:   Tue Oct 26 17:22:00 2021 +0200

    Merge branch '8.x'

commit 5d22b2464c9d64443ecf60d5788d753430eff7fa
Author: Dries Vints <dries@vints.io>
Date:   Tue Oct 26 17:20:51 2021 +0200

    Update CHANGELOG.md

commit 15427830022447443e63991c0e9fc0e3099dbcb9
Author: Can Vural <can9119@gmail.com>
Date:   Mon Oct 25 20:16:13 2021 +0200

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

commit 9915831d22c150d68e562f443aca303151d70a4d
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Fri Oct 22 19:11:06 2021 +0100

    Guess database factory model by default (#5713)

commit 8f63479d4487915b6dc62cb2f576289ed4cd0b96
Author: Dries Vints <dries@vints.io>
Date:   Wed Oct 20 15:15:52 2021 +0200

    Update CHANGELOG.md

commit bf2a67c6a287d16c1926c4e6a3f4fe2e173fabaa
Author: Taylor Otwell <taylorotwell@gmail.com>
Date:   Tue Oct 19 10:20:44 2021 -0500

    wip

commit 1980ca13eae79cd6f8a5a2f8dc018c289d26e954
Author: Nuno Maduro <enunomaduro@gmail.com>
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 <taylorotwell@gmail.com>

commit 1117ebd8aa9bb7e4189aba8c0c9961f1cecc2800
Author: Taylor Otwell <taylorotwell@gmail.com>
Date:   Thu Oct 14 14:45:08 2021 -0500

    added password translation rules

commit 196a27593b288f7e4d3ce30585ebd881933726b4
Author: Mohamed ELIDRISSI <67818913+elidrissidev@users.noreply.github.com>
Date:   Mon Oct 11 14:58:39 2021 +0100

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

commit ab2b6061245316d949ee8f4339e0e6c65b1db301
Author: Dries Vints <dries@vints.io>
Date:   Mon Oct 11 11:06:14 2021 +0200

    Temporarily remove tinker from master

    Until https://github.com/bobthecow/psysh/commit/2c061f5bd1a543dd69ad68a0f2a488ac855e3814 has been re-introduced.

commit e124d6d98d7df4be7ef382e05456418ffba3ef3c
Merge: 7156a27c a3b76dbe
Author: Dries Vints <dries@vints.io>
Date:   Tue Oct 5 20:42:43 2021 +0200

    Merge branch '8.x'

commit a3b76dbeb71518f3b82d50983d039a20bf49ce8e
Author: Dries Vints <dries@vints.io>
Date:   Tue Oct 5 20:40:50 2021 +0200

    Update CHANGELOG.md

commit 6a68092228844b1793bbcf4f0bf7c5ba2c9bd16c
Author: Taylor Otwell <taylor@laravel.com>
Date:   Tue Oct 5 09:23:35 2021 -0500

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

    This reverts commit 4578193d52f148c79b16a552db65e29a65fee209.

commit 7156a27cdbaa0e69bfd04bb5ef083d9906bf543c
Author: Taylor Otwell <taylorotwell@gmail.com>
Date:   Sat Oct 2 11:19:50 2021 -0500

    move lang directory

commit bdcb9681a6c592089a7579364a19cdd9edb4ad06
Merge: 2c644455 78e1d56c
Author: Taylor Otwell <taylorotwell@gmail.com>
Date:   Sat Oct 2 10:47:56 2021 -0500

    fix conflicts

commit 78e1d56c4285392f96fd90b445fef2faa7a8b9c7
Author: Alex Elkins <alexelkins2012@gmail.com>
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 2c644455dabb133ad305f367379857094631f35f
Author: Markus Machatschek <mmachatschek@users.noreply.github.com>
Date:   Wed Sep 29 16:44:21 2021 +0200

    Use anonymous migration for personal_access_tokens table (#5698)

    * Use new migration class name style for personal_access_tokens table

    * Update 2019_12_14_000001_create_personal_access_tokens_table.php

commit 4578193d52f148c79b16a552db65e29a65fee209
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Wed Sep 29 14:20:24 2021 +0100

    Uses `LazilyRefreshDatabase` by default (#5696)

commit ef9d0e4c78a097fb61218b38dd4e4c55a2278178
Author: Nuno Maduro <enunomaduro@gmail.com>
Date:   Wed Sep 29 14:17:58 2021 +0100

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

    Co-authored-by: Taylor Otwell <taylor@laravel.com>

commit aa9cb884d2caef6d1e606ffbb61e92c90f9bd6de
Author: Dries Vints <dries@vints.io>
Date:   Wed Sep 29 11:51:32 2021 +0200

    Bump Mockery and PHPUnit

commit 5f7395b289f32e5e5f5ece1dddb7d4ecf7ddadcc
Author: JuanDMeGon <JuanDMeGon@users.noreply.github.com>
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 <surajitbasak109@gmail.com>
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 <surajit@adrobit.com>

commit 0d939c9ebfcf1cac8ef1a26a7a2dce50a31e74ba
Author: Julius Kiekbusch <jubeki99@gmail.com>
Date:   Mon Sep 20 16:03:10 2021 +0200

    Remove auth_mode from config/mail.php (#5688)

commit a6d1019bcfd0077a2e09c77cd4cbeba9f7286c8b
Merge: ec9ff4cd 4f8a0f35
Author: Dries Vints <dries@vints.io>
Date:   Tue Sep 7 16:34:35 2021 +0200

    Merge branch '8.x'

commit 4f8a0f35fabd8603fb756122bf820719a259ac9b
Author: Dries Vints <dries@vints.io>
Date:   Tue Sep 7 16:33:40 2021 +0200

    Update CHANGELOG.md

commit 0bc525860ccb093f0d452b410b2549b3e01432e7
Author: Samuel Levy <sam+gh@samuellevy.com>
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 <taylor@laravel.com>

commit a36f02c4f2c5617bfe355709ca1955884b11e2d3
Author: Roy van Veldhuizen <18717340+royvanv@users.noreply.github.com>
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 ec9ff4cd68d48da6466b13a717fa5f8b2c10cacf
Merge: 6b946caa 75a7dba9
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 24 18:00:23 2021 +0200

    Merge branch '8.x'

commit 75a7dba9c44ce3555cc57dd1826467839fd9774f
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 24 17:59:48 2021 +0200

    Update CHANGELOG.md

commit 7c993468018d950d549fae77241a53cb4f68e2ad
Author: Maarten Buis <buismaarten@outlook.com>
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 <contact@gabrielpillet.com>
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 <taylorotwell@gmail.com>
Date:   Fri Aug 20 07:59:36 2021 -0500

    wip

commit c512ba2b160d1e87205dd45b60d8c0cfab230025
Author: Dries Vints <dries@vints.io>
Date:   Thu Aug 19 16:03:02 2021 +0200

    Update app.php (#5674)

commit 3399464a7452ac8067cef8fb224b2413e8991a4b
Author: Dwight Watson <dwightwatson@users.noreply.github.com>
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 6b946caa62078ec46cc808a4f20da35d089c0964
Merge: 5f9dbb41 b55e3fbb
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 17 17:57:45 2021 +0200

    Merge branch '8.x'

commit b55e3fbb14ab8806057f451fcbfeec8fca625793
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 17 17:56:01 2021 +0200

    Update CHANGELOG.md

commit 6e10e9653f5f2cd3b8bd6b9fe69df2dc002eede2
Author: Pradeep Kumar <webreinvent@gmail.com>
Date:   Tue Aug 17 18:40:33 2021 +0530

    Add WebReinvent as a Sponsor (#5668)

commit 5f9dbb41b54a0e091a2effd7c1d72941fef9ba18
Author: Iman <imanghafoori1@gmail.com>
Date:   Tue Aug 17 17:39:03 2021 +0430

    [9.x] Use php 8 null safe operator (#5670)

    This PR leverages php 8 "null safe operator" instead of thrr `optional()` helper

commit d57cc57c6d8101cd3001cc5c2285649977e3f36c
Merge: 6dde1832 a199c3bc
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 17 10:23:34 2021 +0200

    Merge pull request #5669 from laravel/8.x

    Update .styleci.yml

commit a199c3bcea13efb32cbd5755ab9588e8311bd19c
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 17 10:22:10 2021 +0200

    Update .styleci.yml

commit 6dde1832b495b467d9983ffa75457ef8e165a6d8
Author: Dries Vints <dries@vints.io>
Date:   Thu Aug 12 15:46:34 2021 +0200

    Sanctum dev-develop

commit 018bb3c1579a29a245d036afc8f76c0839591734
Merge: 4d0f40f9 226d1bfc
Author: Dries Vints <dries@vints.io>
Date:   Thu Aug 12 15:39:10 2021 +0200

    Merge branch '8.x'

commit 226d1bfc3c774e24a79e68e9f1264b5ca359551f
Author: Taylor Otwell <taylor@laravel.com>
Date:   Wed Aug 11 13:44:34 2021 -0500

    [8.x] Sanctum (#5663)

    * initial sanctum poc

    * add files

    * remove token

commit 4d0f40f98c21eea139870a8a8ad97a854988d65b
Merge: 7f68c301 236b3187
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 10 19:28:02 2021 +0200

    Merge branch '8.x'

commit 236b31872d193eaec8c5e00813e8e88dbab6dca3
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 10 19:27:09 2021 +0200

    Update CHANGELOG.md

commit b6f4ee7661d31ceab2f517a3273aaecfd8465e17
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 10 15:41:29 2021 +0200

    Use new TrustProxies middleware (#5662)

commit 7f68c301790654953c2a29544d56f117159e5d85
Author: Dries Vints <dries@vints.io>
Date:   Mon Aug 9 20:52:42 2021 +0200

    [9.x] Allow develop installs (#5660)

    * Allow develop installs

    * Disable CORS middleware

    * Re-add laravel-cors

    * Re-adds collision

    Co-authored-by: Nuno Maduro <enunomaduro@gmail.com>

commit 542fdfdc1e8718e62acb9384d2d9d6f3c750332a
Merge: 4c552aef 59f33209
Author: Graham Campbell <hello@gjcampbell.co.uk>
Date:   Sun Aug 8 20:15:40 2021 +0100

    Merge branch '8.x'

commit 59f33209d5afc2f9f1c6c3c38280ae9eb5b15aed
Merge: e5962266 ecf460a8
Author: Graham Campbell <hello@gjcampbell.co.uk>
Date:   Sun Aug 8 20:15:22 2021 +0100

    Merge branch '6.x' into 8.x

commit e5962266d79ab4aa3b7e49d1d5cddb7f85c057e6
Author: Cristiano Fromagio <16294559+cristianofromagio@users.noreply.github.com>
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 <taylor@laravel.com>

commit 4c552aefbe2b2e5564ccfd767c9144d867c9cb41
Merge: 77086029 82b51356
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 3 20:13:53 2021 +0200

    Merge branch '8.x'

commit 82b5135652f3172c6d4febf1a4da967a49345a79
Author: Dries Vints <dries@vints.io>
Date:   Tue Aug 3 20:12:15 2021 +0200

    Update CHANGELOG.md

commit d286a15b093d3b1c85c5cfe22e8b0bfb54f7a111
Author: Igor Finagin <Igor@Finag.in>
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 <taylor@laravel.com>

commit 54c0b5bc5268b4b3b2265b2dd9b52b80627cab0d
Author: Taylor Otwell <taylorotwell@gmail.com>
Date:   Wed Jul 28 09:34:27 2021 -0500

    wip

commit 77086029af21522a87af3c44e3b945cd02618f79
Merge: 7c977fb9 8e551045
Author: Dries Vints <dries@vints.io>
Date:   Tue Jul 13 16:12:52 2021 +0200

    Merge branch '8.x'

commit 8e5510458e1a4c0bf4b78024d9b0cf56102c8207
Author: Dries Vints <dries@vints.io>
Date:   Tue Jul 13 16:12:18 2021 +0200

    Update CHANGELOG.md

commit 7c977fb9a57bf0ff8b34cb6866b50a192c84ca8d
Author: Dries Vints <dries@vints.io>
Date:   Tue Jul 13 14:59:41 2021 +0200

    Drop PHP 7.4 support

commit c636fd0f678008caf30683833b740fb6f31d9de6
Author: Claas Augner <github@caugner.de>
Date:   Sat Jul 10 17:23:22 2021 +0200

    add RateLimiter facade alias (#5642)

commit 1e4312f20755302bb4d275d9385968e9b6e63eab
Author: Dries Vints <dries@vints.io>
Date:   Tue Jul 6 18:47:19 2021 +0200

    Update CHANGELOG.md

commit 866589128430c55385cb13ddae0061c628245be2
Author: Josh Salway <josh.salway@gmail.com>
Date:   Thu Jul 1 23:38:06 2021 +1000

    Update validation.php (#5636)

commit c5f6f6187c24e160309df372b98d20380b786784
Author: Josh Salway <josh.salway@gmail.com>
Date:   Thu Jul 1 23:37:19 2021 +1000

    Update validation.php (#5637)

commit c0363f626c1193aa5e1263dbb272784eeba2e554
Author: Igor Finagin <Igor@Finag.in>
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 d4ff3b72e7b60b896965dd21803972aab499d7a6
Merge: 92cd828c 99d5ca28
Author: Dries Vints <dries@vints.io>
Date:   Tue Jun 15 17:49:26 2021 +0200

    Merge branch '8.x'

commit 99d5ca2845a7f1d24a28a6c1e756f1ede8641f96
Author: Dries Vints <dries@vints.io>
Date:   Tue Jun 15 17:48:56 2021 +0200

    Update CHANGELOG.md

commit c1587b52c98727f007340417458c5da42d5fbbdc
Author: netpok <netpok@gmail.com>
Date:   Sun Jun 13 17:46:57 2021 +0200

    Add translation for current_password rule (#5628)

commit 92cd828c64339a8802f42ae437d2a0069dd300aa
Merge: 507d4995 0296bb63
Author: Dries Vints <dries@vints.io>
Date:   Tue Jun 1 17:49:55 2021 +0200

    Merge branch '8.x'

commit 0296bb63e1d465bcfff1f84f00313aeb26a2c84b
Author: Dries Vints <dries@vints.io>
Date:   Tue Jun 1 17:49:26 2021 +0200

    Update CHANGELOG.md

commit 131a10260e73e83e6b1cd63788b8f6584dd3e98a
Author: Michael de Oliveira Ferreira <oliveiramichael@outlook.com>
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 <taylorotwell@gmail.com>
Date:   Tue May 18 17:01:26 2021 -0500

    update skeleton for filesystem tweaks to make sail usage easier

commit 507d499577e4f3edb51577e144b61e61de4fb57f
Merge: 72c6aaa8 afa06fac
Author: Dries Vints <dries@vints.io>
Date:   Tue May 18 17:38:28 2021 +0200

    Merge branch '8.x'

commit afa06fac2aa9a83ad843b9968a21bb013f015704
Author: Dries Vints <dries@vints.io>
Date:   Tue May 18 17:37:20 2021 +0200

    Update CHANGELOG.md

commit d3efbaab58945ee97c4719283b04632fe474c0e7
Author: Hiren Keraliya <hirenkeradiya@gmail.com>
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 <taylor@laravel.com>

commit 637c85d624bf19355025b68aaa90e6cadf8a2881
Author: Taylor Otwell <taylorotwell@gmail.com>
Date:   Fri May 14 10:09:46 2021 -0500

    wip

commit 3131f789ae05bb727e8f8b65981f6957391a5e3d
Author: Seyed Morteza Ebadi <47121888+seyed-me@users.noreply.github.com>
Date:   Fri May 14 19:39:09 2021 +0430

    Add Octane cache store (#5610)

commit 72c6aaa8dfb626e6cfd7ae162ec1ffbf5dec9731
Merge: 4ce641d5 b1b28a6b
Author: Dries Vints <dries@vints.io>
Date:   Tue May 11 22:50:27 2021 +0200

    Merge branch '8.x'

commit b1b28a6bb120a3d1bb3786ca47f66a95bcb292aa
Author: Dries Vints <dries@vints.io>
Date:   Tue May 11 22:49:31 2021 +0200

    Update CHANGELOG.md

commit ecf460a874e5943c1063ef9585bc7491ead15b0a
Author: Dries Vints <dries@vints.io>
Date:   Tue May 11 22:47:22 2021 +0200

    Update CHANGELOG.md

commit 4ce641d5713738d58032fa3fb407b4c37115ebde
Author: Dries Vints <dries@vints.io>
Date:   Fri May 7 12:54:25 2021 +0200

    Apply fixes from StyleCI (#5607)

commit eb484ce7ed554981bad83de8f9805872d74bae83
Author: Sarwar Ahmed <sarwar.amas@gmail.com>
Date:   Fri May 7 15:38:21 2021 +0600

    Laracasts contains 2000 video tutorials

commit ca7f3866666d1ec724a4c72389d8f096201d788a
Author: Umar <madugu01@gmail.com>
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-aut…
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.

3 participants