Skip to content

Commit 9fb954f

Browse files
committed
Merge branch '9.x'
# Conflicts: # CHANGELOG.md
2 parents 720f757 + 88b2d17 commit 9fb954f

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

.github/workflows/issues.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: issues
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
help-wanted:
12+
uses: laravel/.github/.github/workflows/issues.yml@main

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.8...master)
3+
## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.12...master)
44

5-
## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.3.8...master)
5+
## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.3.12...master)
66

77
Laravel 10 includes a variety of changes to the application skeleton. Please consult the diff to see what's new.

lang/en/validation.php

+2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
'ipv4' => 'The :attribute must be a valid IPv4 address.',
7272
'ipv6' => 'The :attribute must be a valid IPv6 address.',
7373
'json' => 'The :attribute must be a valid JSON string.',
74+
'lowercase' => 'The :attribute must be lowercase.',
7475
'lt' => [
7576
'array' => 'The :attribute must have less than :value items.',
7677
'file' => 'The :attribute must be less than :value kilobytes.',
@@ -138,6 +139,7 @@
138139
'timezone' => 'The :attribute must be a valid timezone.',
139140
'unique' => 'The :attribute has already been taken.',
140141
'uploaded' => 'The :attribute failed to upload.',
142+
'uppercase' => 'The :attribute must be uppercase.',
141143
'url' => 'The :attribute must be a valid URL.',
142144
'uuid' => 'The :attribute must be a valid UUID.',
143145

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"devDependencies": {
88
"axios": "^1.1.2",
9-
"laravel-vite-plugin": "^0.6.0",
9+
"laravel-vite-plugin": "^0.7.0",
1010
"lodash": "^4.17.19",
1111
"postcss": "^8.1.14",
1212
"vite": "^3.0.0"

resources/js/bootstrap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
2626
// window.Echo = new Echo({
2727
// broadcaster: 'pusher',
2828
// key: import.meta.env.VITE_PUSHER_APP_KEY,
29-
// wsHost: import.meta.env.VITE_PUSHER_HOST ?? `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`,
29+
// wsHost: import.meta.env.VITE_PUSHER_HOST ? import.meta.env.VITE_PUSHER_HOST : `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`,
3030
// wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80,
3131
// wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443,
3232
// forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https',

0 commit comments

Comments
 (0)