From 14719d097ab638e508009a9ae1a04bdb887fae32 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Thu, 30 Jun 2022 15:31:18 +0200 Subject: [PATCH 01/12] Update .gitignore (#5924) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 87ead15d..38e5b253 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ .phpunit.result.cache Homestead.json Homestead.yaml +auth.json npm-debug.log yarn-error.log /.idea From 3c0c7a0d17a89ce45e49fc2a75ea330051a0a26d Mon Sep 17 00:00:00 2001 From: N'Bayramberdiyev Date: Fri, 1 Jul 2022 19:28:34 +0300 Subject: [PATCH 02/12] bump actions/checkout (#5928) --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9870c819..b27e503d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 From fa4c8c17e052bb864f75344dbb5e63857ee3fe3b Mon Sep 17 00:00:00 2001 From: "Irsyad A. Panjaitan" Date: Sat, 2 Jul 2022 03:37:51 +0700 Subject: [PATCH 03/12] Update bootstrap.js (#5929) Before it was use `VITE_PUSHER_CLUSTER`, it should be `VITE_PUSHER_APP_CLUSTER`. --- resources/js/bootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js index 57fbd3b0..d21a8c0f 100644 --- a/resources/js/bootstrap.js +++ b/resources/js/bootstrap.js @@ -26,7 +26,7 @@ window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; // window.Echo = new Echo({ // broadcaster: 'pusher', // key: import.meta.env.VITE_PUSHER_APP_KEY, -// wsHost: import.meta.env.VITE_PUSHER_HOST ?? `ws-${import.meta.env.VITE_PUSHER_CLUSTER}.pusher.com`, +// wsHost: import.meta.env.VITE_PUSHER_HOST ?? `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`, // wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80, // wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443, // forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https', From 1fa6b7dc52f9f7675ff1f8ca82a9a701e64249fa Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Sat, 2 Jul 2022 06:41:47 +1000 Subject: [PATCH 04/12] add default reloading to skeleton (#5927) --- vite.config.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/vite.config.js b/vite.config.js index dd941926..89f26f5d 100644 --- a/vite.config.js +++ b/vite.config.js @@ -3,9 +3,12 @@ import laravel from 'laravel-vite-plugin'; export default defineConfig({ plugins: [ - laravel([ - 'resources/css/app.css', - 'resources/js/app.js', - ]), + laravel({ + input: [ + 'resources/css/app.css', + 'resources/js/app.js', + ], + refresh: true, + }), ], }); From 91f49543af088eedd2f1742623092f3b1b0ff7a0 Mon Sep 17 00:00:00 2001 From: Jess Archer Date: Thu, 7 Jul 2022 01:50:30 +1000 Subject: [PATCH 05/12] 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. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 724e911f..90ff0793 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ }, "devDependencies": { "axios": "^0.25", - "laravel-vite-plugin": "^0.2.1", + "laravel-vite-plugin": "^0.3.0", "lodash": "^4.17.19", "postcss": "^8.1.14", "vite": "^2.9.11" From 3850b46cbe6ee13266abe43375d51980ecadba10 Mon Sep 17 00:00:00 2001 From: Jess Archer Date: Wed, 13 Jul 2022 23:57:43 +1000 Subject: [PATCH 06/12] Update to the latest version of laravel-vite-plugin (#5943) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 90ff0793..98b60ba6 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ }, "devDependencies": { "axios": "^0.25", - "laravel-vite-plugin": "^0.3.0", + "laravel-vite-plugin": "^0.4.0", "lodash": "^4.17.19", "postcss": "^8.1.14", "vite": "^2.9.11" From df07877444cee31f1017ad1e57fb58f21ce8603f Mon Sep 17 00:00:00 2001 From: driesvints Date: Wed, 13 Jul 2022 14:23:03 +0000 Subject: [PATCH 07/12] Update CHANGELOG --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6535994b..0f534dbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v9.2.0...9.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v9.2.1...9.x) + +## [v9.2.1](https://github.com/laravel/laravel/compare/v9.2.0...v9.2.1) - 2022-07-13 + +### Changed + +- Add auth.json to skeleton by @driesvints in https://github.com/laravel/laravel/pull/5924 +- Update `bootstrap.js` by @irsyadadl in https://github.com/laravel/laravel/pull/5929 +- Add default reloading to skeleton by @timacdonald in https://github.com/laravel/laravel/pull/5927 +- Update to the latest version of laravel-vite-plugin by @jessarcher in https://github.com/laravel/laravel/pull/5943 ## [v9.2.0](https://github.com/laravel/laravel/compare/v9.1.10...v9.2.0) - 2022-06-28 From 88419bfc583ecfa6f7ff0c563762fb5a7d70490b Mon Sep 17 00:00:00 2001 From: Ankur Kumar Date: Thu, 14 Jul 2022 23:35:03 +0530 Subject: [PATCH 08/12] Bump axios version (#5946) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 98b60ba6..755b091a 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "build": "vite build" }, "devDependencies": { - "axios": "^0.25", + "axios": "^0.27", "laravel-vite-plugin": "^0.4.0", "lodash": "^4.17.19", "postcss": "^8.1.14", From fa5e54a2ab6b1de8a4cef69b59bcfdecd07ab0cb Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Fri, 15 Jul 2022 14:38:49 +0100 Subject: [PATCH 09/12] [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 --- .gitattributes | 1 + app/Models/User.php | 2 +- app/Providers/AuthServiceProvider.php | 2 +- composer.json | 1 + database/seeders/DatabaseSeeder.php | 2 +- tests/Feature/ExampleTest.php | 2 +- 6 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 510d9961..7dbbf41a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,3 +8,4 @@ /.github export-ignore CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/app/Models/User.php b/app/Models/User.php index 89963686..23b40634 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -2,7 +2,7 @@ namespace App\Models; -use Illuminate\Contracts\Auth\MustVerifyEmail; +// use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php index 51b351b0..33b83f56 100644 --- a/app/Providers/AuthServiceProvider.php +++ b/app/Providers/AuthServiceProvider.php @@ -2,8 +2,8 @@ namespace App\Providers; +// use Illuminate\Support\Facades\Gate; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; -use Illuminate\Support\Facades\Gate; class AuthServiceProvider extends ServiceProvider { diff --git a/composer.json b/composer.json index ebc44b15..14da264d 100644 --- a/composer.json +++ b/composer.json @@ -13,6 +13,7 @@ }, "require-dev": { "fakerphp/faker": "^1.9.1", + "laravel/pint": "^1.0", "laravel/sail": "^1.0.1", "mockery/mockery": "^1.4.4", "nunomaduro/collision": "^6.1", diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php index c1c48a06..76d96dc7 100644 --- a/database/seeders/DatabaseSeeder.php +++ b/database/seeders/DatabaseSeeder.php @@ -2,7 +2,7 @@ namespace Database\Seeders; -use Illuminate\Database\Console\Seeds\WithoutModelEvents; +// use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 78ccc21f..1eafba61 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -2,7 +2,7 @@ namespace Tests\Feature; -use Illuminate\Foundation\Testing\RefreshDatabase; +// use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class ExampleTest extends TestCase From b124ab0fe6f3ab28e58a7aac1ce49095c144d4f7 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Wed, 20 Jul 2022 00:03:41 +1000 Subject: [PATCH 10/12] Vite 3 support (#5944) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 755b091a..6267eac1 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,9 @@ }, "devDependencies": { "axios": "^0.27", - "laravel-vite-plugin": "^0.4.0", + "laravel-vite-plugin": "^0.5.0", "lodash": "^4.17.19", "postcss": "^8.1.14", - "vite": "^2.9.11" + "vite": "^3.0.0" } } From 1e974481ad7cd643aef9ab0483b9afbeb8b14572 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 19 Jul 2022 14:22:59 +0000 Subject: [PATCH 11/12] Update CHANGELOG --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f534dbd..3a94d1db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v9.2.1...9.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.0...9.x) + +## [v9.3.0](https://github.com/laravel/laravel/compare/v9.2.1...v9.3.0) - 2022-07-20 + +### Added + +- Uses `laravel/pint` for styling by @nunomaduro in https://github.com/laravel/laravel/pull/5945 + +### Changed + +- Bump axios version by @ankurk91 in https://github.com/laravel/laravel/pull/5946 +- Vite 3 support by @timacdonald in https://github.com/laravel/laravel/pull/5944 ## [v9.2.1](https://github.com/laravel/laravel/compare/v9.2.0...v9.2.1) - 2022-07-13 From 52863d9e4aa41f63592e8c98e5fe717ee7f06a18 Mon Sep 17 00:00:00 2001 From: Abenet Tamiru Date: Sun, 24 Jul 2022 02:02:13 +0200 Subject: [PATCH 12/12] 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. --- resources/views/welcome.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index dd6a45db..de233926 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -7,7 +7,7 @@ Laravel - +