From 14cec1e9a35f03bbfb7826a212ffbac29fe0fc1e Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 8 Apr 2025 18:47:30 +0000 Subject: [PATCH 01/12] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afb514cdd92..20adc1d4a60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.4...12.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.5...12.x) + +## [v12.0.5](https://github.com/laravel/laravel/compare/v12.0.4...v12.0.5) - 2025-04-02 + +* [12.x] Update `config/mail.php` to match the latest core configuration by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6594 ## [v12.0.4](https://github.com/laravel/laravel/compare/v12.0.3...v12.0.4) - 2025-03-31 From 7a7015534e6cdde94a8d9e224b98a20735b11491 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Apr 2025 13:50:02 -0500 Subject: [PATCH 02/12] use in memory database by default --- phpunit.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index 506b9a38ec7..61c031c478e 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -22,8 +22,8 @@ - - + + From fc42b7132ae810a49b24fe599fe4a26f0c974578 Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 8 Apr 2025 18:50:46 +0000 Subject: [PATCH 03/12] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20adc1d4a60..fc8a06c76c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.5...12.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.6...12.x) + +## [v12.0.6](https://github.com/laravel/laravel/compare/v12.0.5...v12.0.6) - 2025-04-08 + +**Full Changelog**: https://github.com/laravel/laravel/compare/v12.0.5...v12.0.6 ## [v12.0.5](https://github.com/laravel/laravel/compare/v12.0.4...v12.0.5) - 2025-04-02 From 43ad1946fc85a82ebe1ea124c646e91c38cacc4d Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Fri, 11 Apr 2025 23:21:14 +0800 Subject: [PATCH 04/12] Add `composer run test` command (#6598) This prevents the application from running tests with cached config. --- composer.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/composer.json b/composer.json index 9c446ae87e7..dfe9c82cc09 100644 --- a/composer.json +++ b/composer.json @@ -50,6 +50,10 @@ "dev": [ "Composer\\Config::disableProcessTimeout", "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite" + ], + "test": [ + "@php artisan config:clear --ansi", + "@php artisan test" ] }, "extra": { From e654bf366241d3777e6215d0283224693c61f971 Mon Sep 17 00:00:00 2001 From: Josh Cirre Date: Tue, 15 Apr 2025 08:24:16 -0700 Subject: [PATCH 05/12] Premium partner changes (#6599) --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 1a4c26ba329..6851ea97b19 100644 --- a/README.md +++ b/README.md @@ -37,17 +37,12 @@ We would like to extend our thanks to the following sponsors for funding Laravel - **[Vehikl](https://vehikl.com/)** - **[Tighten Co.](https://tighten.co)** -- **[WebReinvent](https://webreinvent.com/)** - **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** - **[64 Robots](https://64robots.com)** - **[Curotec](https://www.curotec.com/services/technologies/laravel/)** -- **[Cyber-Duck](https://cyber-duck.co.uk)** - **[DevSquad](https://devsquad.com/hire-laravel-developers)** -- **[Jump24](https://jump24.co.uk)** -- **[Redberry](https://redberry.international/laravel/)** +- **[Redberry](https://redberry.international/laravel-development/)** - **[Active Logic](https://activelogic.com)** -- **[byte5](https://byte5.de)** -- **[OP.GG](https://op.gg)** ## Contributing From 126a6638bd9d559d790ecfed9434beac5946a5da Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 15 Apr 2025 15:46:02 +0000 Subject: [PATCH 06/12] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc8a06c76c7..11cf15b2518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.6...12.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.7...12.x) + +## [v12.0.7](https://github.com/laravel/laravel/compare/v12.0.6...v12.0.7) - 2025-04-15 + +* Add `composer run test` command by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/laravel/pull/6598 +* Partner Directory Changes in ReadME by [@joshcirre](https://github.com/joshcirre) in https://github.com/laravel/laravel/pull/6599 ## [v12.0.6](https://github.com/laravel/laravel/compare/v12.0.5...v12.0.6) - 2025-04-08 From f6e4638ee6ca1cd40aa7c56311d89ea3d91a24f8 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Wed, 16 Apr 2025 13:37:18 +0200 Subject: [PATCH 07/12] Clean up URL formatting in README (#6601) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6851ea97b19..75c347a835a 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,13 @@ We would like to extend our thanks to the following sponsors for funding Laravel ### Premium Partners -- **[Vehikl](https://vehikl.com/)** +- **[Vehikl](https://vehikl.com)** - **[Tighten Co.](https://tighten.co)** - **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** - **[64 Robots](https://64robots.com)** -- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel)** - **[DevSquad](https://devsquad.com/hire-laravel-developers)** -- **[Redberry](https://redberry.international/laravel-development/)** +- **[Redberry](https://redberry.international/laravel-development)** - **[Active Logic](https://activelogic.com)** ## Contributing From 2d8f562092a376cf80d07e3e4583bb8463bb51bf Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 11 May 2025 20:55:57 -0500 Subject: [PATCH 08/12] remove apc --- config/session.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/session.php b/config/session.php index ba0aa60b074..50a0dd84014 100644 --- a/config/session.php +++ b/config/session.php @@ -13,8 +13,8 @@ | incoming requests. Laravel supports a variety of storage options to | persist session data. Database storage is a great default choice. | - | Supported: "file", "cookie", "database", "apc", - | "memcached", "redis", "dynamodb", "array" + | Supported: "file", "cookie", "database", "memcached", + | "redis", "dynamodb", "array" | */ From 076415262619e367cff906276809369adf632512 Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 13 May 2025 14:47:36 +0000 Subject: [PATCH 09/12] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11cf15b2518..cf64faa76e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.7...12.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.8...12.x) + +## [v12.0.8](https://github.com/laravel/laravel/compare/v12.0.7...v12.0.8) - 2025-05-12 + +* [12.x] Clean up URL formatting in README by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6601 ## [v12.0.7](https://github.com/laravel/laravel/compare/v12.0.6...v12.0.7) - 2025-04-15 From 468d94583612c416bb9f113c9ef235a8f29f579b Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Thu, 15 May 2025 18:09:47 +0300 Subject: [PATCH 10/12] remove apc (#6611) --- config/session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/session.php b/config/session.php index 50a0dd84014..b5fa5319447 100644 --- a/config/session.php +++ b/config/session.php @@ -97,7 +97,7 @@ | define the cache store which should be used to store the session data | between requests. This must match one of your defined cache stores. | - | Affects: "apc", "dynamodb", "memcached", "redis" + | Affects: "dynamodb", "memcached", "redis" | */ From 3731b09a43d40de17dfd3776a30754d4df1cdcbe Mon Sep 17 00:00:00 2001 From: Martin Bean Date: Thu, 15 May 2025 16:11:00 +0100 Subject: [PATCH 11/12] Add JSON Schema to package.json (#6613) Co-authored-by: Martin Bean --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 4e4ab6fed34..ef47e425e4c 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,5 @@ { + "$schema": "https://json.schemastore.org/package.json", "private": true, "type": "module", "scripts": { From 1c027454d9a1522b9e2ad86f41bb0b6980f2faf3 Mon Sep 17 00:00:00 2001 From: Wogan May <225550+woganmay@users.noreply.github.com> Date: Mon, 19 May 2025 19:03:18 +0200 Subject: [PATCH 12/12] Minor language update (#6615) PhpStorm's Natural Language module recommends this change to a countable noun, which happens to be exactly 6 characters long, so as to not affect the overall length of the line, while still making it ever-so-slightly more parseable. --- config/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/auth.php b/config/auth.php index 0ba5d5d8f10..7d1eb0de5f7 100644 --- a/config/auth.php +++ b/config/auth.php @@ -104,7 +104,7 @@ | Password Confirmation Timeout |-------------------------------------------------------------------------- | - | Here you may define the amount of seconds before a password confirmation + | Here you may define the number of seconds before a password confirmation | window expires and users are asked to re-enter their password via the | confirmation screen. By default, the timeout lasts for three hours. |