From a546b52b3bbbfd06361d9feada3932f95eb5ef82 Mon Sep 17 00:00:00 2001 From: Eliezer Margareten <46111162+emargareten@users.noreply.github.com> Date: Mon, 13 Nov 2023 18:36:45 +0200 Subject: [PATCH 1/3] Update package.json (#6272) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0e6480f2..e9319dfe 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "build": "vite build" }, "devDependencies": { - "axios": "^1.1.2", + "axios": "^1.6.1", "laravel-vite-plugin": "^0.8.0", "vite": "^4.0.0" } From 4d3c3a130f5e46d3cbca2efa34dce0c714ccd963 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 14 Nov 2023 18:50:10 +0000 Subject: [PATCH 2/3] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f43e43fc..5e8baa21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.8...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.9...10.x) + +## [v10.2.9](https://github.com/laravel/laravel/compare/v10.2.8...v10.2.9) - 2023-11-13 + +- Update axios to latest version by [@emargareten](https://github.com/emargareten) in https://github.com/laravel/laravel/pull/6272 ## [v10.2.8](https://github.com/laravel/laravel/compare/v10.2.7...v10.2.8) - 2023-11-02 From 73cf5bc5bcbf8af21d70a41a00473b53e6cc04d4 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 21 Nov 2023 02:20:28 +1100 Subject: [PATCH 3/3] [10.x] Fixes missing property description (#6275) * Fixes missing property description * Update UserFactory.php --------- Co-authored-by: Taylor Otwell --- database/factories/UserFactory.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index cde014af..584104c9 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -11,6 +11,9 @@ use Illuminate\Support\Str; */ class UserFactory extends Factory { + /** + * The current password being used by the factory. + */ protected static ?string $password; /**