From 48e3855963f867733c71fa494f329f55ddd869bf Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 25 Oct 2022 16:29:19 +0000 Subject: [PATCH 01/10] Update CHANGELOG --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f62f10e75..79a9f0925 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.8...9.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.9...9.x) + +## [v9.3.9](https://github.com/laravel/laravel/compare/v9.3.8...v9.3.9) - 2022-10-17 + +### Changed + +- Update welcome page colours by @timacdonald in https://github.com/laravel/laravel/pull/6002 +- Ignore .env.production by @yasapurnama in https://github.com/laravel/laravel/pull/6004 +- Upgrade axios to v1.x by @ankurk91 in https://github.com/laravel/laravel/pull/6008 +- Shorten pusher host config by @buihanh2304 in https://github.com/laravel/laravel/pull/6009 ## [v9.3.8](https://github.com/laravel/laravel/compare/v9.3.7...v9.3.8) - 2022-09-20 From d938bfd0d0126f66581db5b26359101cb08cd897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corn=C3=A9=20Veldman?= Date: Fri, 28 Oct 2022 15:38:26 +0200 Subject: [PATCH 02/10] 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 --- 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 d21a8c0f2..366c49d09 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_APP_CLUSTER}.pusher.com`, +// wsHost: import.meta.env.VITE_PUSHER_HOST ? 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 7b7823264b3e9d6a3133db3062abf623b985b7d4 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 1 Nov 2022 17:24:48 +0000 Subject: [PATCH 03/10] Update CHANGELOG --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a9f0925..2f090663c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.9...9.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.10...9.x) + +## [v9.3.10](https://github.com/laravel/laravel/compare/v9.3.9...v9.3.10) - 2022-10-28 + +### Changed + +- Changing .env to make Pusher work without editing the commented out part in the bootstrap.js by @cveldman in https://github.com/laravel/laravel/pull/6021 ## [v9.3.9](https://github.com/laravel/laravel/compare/v9.3.8...v9.3.9) - 2022-10-17 From 3762b41729b92fa263d942d0b650f0a5b78277d9 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Thu, 10 Nov 2022 01:55:21 +1100 Subject: [PATCH 04/10] Adds lowercase validation rule translation (#6028) * Adds lowercase validation rule translation * Update validation.php Co-authored-by: Dries Vints --- lang/en/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/en/validation.php b/lang/en/validation.php index 5ea01fa77..ac8ddb0a4 100644 --- a/lang/en/validation.php +++ b/lang/en/validation.php @@ -71,6 +71,7 @@ return [ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lowercase' => 'The :attribute must be lowercase.', 'lt' => [ 'array' => 'The :attribute must have less than :value items.', 'file' => 'The :attribute must be less than :value kilobytes.', From 69e2cce9cb81f2b18a22bcdad2f5ebdf8d14d455 Mon Sep 17 00:00:00 2001 From: Michael Nabil <46572405+michaelnabil230@users.noreply.github.com> Date: Mon, 14 Nov 2022 15:15:20 +0200 Subject: [PATCH 05/10] Update validation.php (#6029) --- lang/en/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/en/validation.php b/lang/en/validation.php index ac8ddb0a4..83d6f1f8e 100644 --- a/lang/en/validation.php +++ b/lang/en/validation.php @@ -72,6 +72,7 @@ return [ 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', 'lowercase' => 'The :attribute must be lowercase.', + 'uppercase' => 'The :attribute must be uppercase.', 'lt' => [ 'array' => 'The :attribute must have less than :value items.', 'file' => 'The :attribute must be less than :value kilobytes.', From 21964ec81f4f71d63017fd6b19d1bf51ee6716f9 Mon Sep 17 00:00:00 2001 From: Farid Aghili Date: Mon, 14 Nov 2022 18:48:18 +0330 Subject: [PATCH 06/10] validation rules sorting consistency (#6031) --- lang/en/validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/en/validation.php b/lang/en/validation.php index 83d6f1f8e..f3d8cc5fa 100644 --- a/lang/en/validation.php +++ b/lang/en/validation.php @@ -72,7 +72,6 @@ return [ 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', 'lowercase' => 'The :attribute must be lowercase.', - 'uppercase' => 'The :attribute must be uppercase.', 'lt' => [ 'array' => 'The :attribute must have less than :value items.', 'file' => 'The :attribute must be less than :value kilobytes.', @@ -140,6 +139,7 @@ return [ 'timezone' => 'The :attribute must be a valid timezone.', 'unique' => 'The :attribute has already been taken.', 'uploaded' => 'The :attribute failed to upload.', + 'uppercase' => 'The :attribute must be uppercase.', 'url' => 'The :attribute must be a valid URL.', 'uuid' => 'The :attribute must be a valid UUID.', From 040d548810dd2d517bbd5cc792818b5d0429a0fc Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 15 Nov 2022 17:07:34 +0000 Subject: [PATCH 07/10] Update CHANGELOG --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f090663c..c96aa8f9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.10...9.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.11...9.x) + +## [v9.3.11](https://github.com/laravel/laravel/compare/v9.3.10...v9.3.11) - 2022-11-14 + +### Changed + +- Adds lowercase validation rule translation by @timacdonald in https://github.com/laravel/laravel/pull/6028 +- Adds uppercase validation rule translation by @michaelnabil230 in https://github.com/laravel/laravel/pull/6029 ## [v9.3.10](https://github.com/laravel/laravel/compare/v9.3.9...v9.3.10) - 2022-10-28 From 8a8730c994849967db6fb493f524e42f66a05ab5 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Tue, 22 Nov 2022 08:26:23 +1100 Subject: [PATCH 08/10] bump vite plugin (#6038) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 36489d96c..a11c53af5 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ }, "devDependencies": { "axios": "^1.1.2", - "laravel-vite-plugin": "^0.6.0", + "laravel-vite-plugin": "^0.7.0", "lodash": "^4.17.19", "postcss": "^8.1.14", "vite": "^3.0.0" From 71c77805deb2362199e2326bccd2d40e4516b591 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 22 Nov 2022 16:33:48 +0000 Subject: [PATCH 09/10] Update CHANGELOG --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c96aa8f9f..a32e0b4c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.11...9.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.12...9.x) + +## [v9.3.12](https://github.com/laravel/laravel/compare/v9.3.11...v9.3.12) - 2022-11-22 + +### Changed + +- Bump vite plugin version by @timacdonald in https://github.com/laravel/laravel/pull/6038 ## [v9.3.11](https://github.com/laravel/laravel/compare/v9.3.10...v9.3.11) - 2022-11-14 From 88b2d177fcff54cc9356d29ba7d3b36efda800c6 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Wed, 23 Nov 2022 10:05:05 +0100 Subject: [PATCH 10/10] Create issues.yml --- .github/workflows/issues.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/issues.yml diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml new file mode 100644 index 000000000..9634a0edb --- /dev/null +++ b/.github/workflows/issues.yml @@ -0,0 +1,12 @@ +name: issues + +on: + issues: + types: [labeled] + +permissions: + issues: write + +jobs: + help-wanted: + uses: laravel/.github/.github/workflows/issues.yml@main