File tree 5 files changed +18
-4
lines changed
5 files changed +18
-4
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
- ## [ Unreleased] ( https://github.com/laravel/laravel/compare/v9.3.8 ...master )
3
+ ## [ Unreleased] ( https://github.com/laravel/laravel/compare/v9.3.12 ...master )
4
4
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 )
6
6
7
7
Laravel 10 includes a variety of changes to the application skeleton. Please consult the diff to see what's new.
Original file line number Diff line number Diff line change 71
71
'ipv4 ' => 'The :attribute must be a valid IPv4 address. ' ,
72
72
'ipv6 ' => 'The :attribute must be a valid IPv6 address. ' ,
73
73
'json ' => 'The :attribute must be a valid JSON string. ' ,
74
+ 'lowercase ' => 'The :attribute must be lowercase. ' ,
74
75
'lt ' => [
75
76
'array ' => 'The :attribute must have less than :value items. ' ,
76
77
'file ' => 'The :attribute must be less than :value kilobytes. ' ,
138
139
'timezone ' => 'The :attribute must be a valid timezone. ' ,
139
140
'unique ' => 'The :attribute has already been taken. ' ,
140
141
'uploaded ' => 'The :attribute failed to upload. ' ,
142
+ 'uppercase ' => 'The :attribute must be uppercase. ' ,
141
143
'url ' => 'The :attribute must be a valid URL. ' ,
142
144
'uuid ' => 'The :attribute must be a valid UUID. ' ,
143
145
Original file line number Diff line number Diff line change 6
6
},
7
7
"devDependencies" : {
8
8
"axios" : " ^1.1.2" ,
9
- "laravel-vite-plugin" : " ^0.6 .0" ,
9
+ "laravel-vite-plugin" : " ^0.7 .0" ,
10
10
"lodash" : " ^4.17.19" ,
11
11
"postcss" : " ^8.1.14" ,
12
12
"vite" : " ^3.0.0"
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
26
26
// window.Echo = new Echo({
27
27
// broadcaster: 'pusher',
28
28
// 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`,
30
30
// wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80,
31
31
// wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443,
32
32
// forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https',
You can’t perform that action at this time.
0 commit comments