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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d3bea2a5..c0dce4298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.8...master) +## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.12...master) -## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.3.8...master) +## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.3.12...master) Laravel 10 includes a variety of changes to the application skeleton. Please consult the diff to see what's new. diff --git a/lang/en/validation.php b/lang/en/validation.php index 5ea01fa77..f3d8cc5fa 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.', @@ -138,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.', 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" 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',