Skip to content

Commit 3ef3f7b

Browse files
author
Version Bot
committed
[Version-Bot] Add Laravel Version
1 parent ec2c3df commit 3ef3f7b

30 files changed

+17562
-1
lines changed

diffs/v9.0.0...v9.4.1.diff

+1,318
Large diffs are not rendered by default.

diffs/v9.0.1...v9.4.1.diff

+1,195
Large diffs are not rendered by default.

diffs/v9.1.0...v9.4.1.diff

+1,144
Large diffs are not rendered by default.

diffs/v9.1.1...v9.4.1.diff

+1,078
Large diffs are not rendered by default.

diffs/v9.1.10...v9.4.1.diff

+705
Large diffs are not rendered by default.

diffs/v9.1.2...v9.4.1.diff

+1,065
Large diffs are not rendered by default.

diffs/v9.1.3...v9.4.1.diff

+977
Large diffs are not rendered by default.

diffs/v9.1.4...v9.4.1.diff

+968
Large diffs are not rendered by default.

diffs/v9.1.5...v9.4.1.diff

+916
Large diffs are not rendered by default.

diffs/v9.1.6...v9.4.1.diff

+867
Large diffs are not rendered by default.

diffs/v9.1.7...v9.4.1.diff

+830
Large diffs are not rendered by default.

diffs/v9.1.8...v9.4.1.diff

+748
Large diffs are not rendered by default.

diffs/v9.1.9...v9.4.1.diff

+711
Large diffs are not rendered by default.

diffs/v9.2.0...v9.4.1.diff

+605
Large diffs are not rendered by default.

diffs/v9.2.1...v9.4.1.diff

+591
Large diffs are not rendered by default.

diffs/v9.3.0...v9.4.1.diff

+515
Large diffs are not rendered by default.

diffs/v9.3.1...v9.4.1.diff

+469
Large diffs are not rendered by default.

diffs/v9.3.10...v9.4.1.diff

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml
2+
new file mode 100644
3+
index 00000000..9634a0ed
4+
--- /dev/null
5+
+++ b/.github/workflows/issues.yml
6+
@@ -0,0 +1,12 @@
7+
+name: issues
8+
+
9+
+on:
10+
+ issues:
11+
+ types: [labeled]
12+
+
13+
+permissions:
14+
+ issues: write
15+
+
16+
+jobs:
17+
+ help-wanted:
18+
+ uses: laravel/.github/.github/workflows/issues.yml@main
19+
diff --git a/CHANGELOG.md b/CHANGELOG.md
20+
index 79a9f092..a62b64a5 100644
21+
--- a/CHANGELOG.md
22+
+++ b/CHANGELOG.md
23+
@@ -1,6 +1,35 @@
24+
# Release Notes
25+
26+
-## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.9...9.x)
27+
+## [Unreleased](https://github.com/laravel/laravel/compare/v9.4.0...9.x)
28+
+
29+
+## [v9.4.0](https://github.com/laravel/laravel/compare/v9.3.12...v9.4.0) - 2022-12-15
30+
+
31+
+### Added
32+
+
33+
+- Vite 4 support by @timacdonald in https://github.com/laravel/laravel/pull/6043
34+
+
35+
+### Changed
36+
+
37+
+- Add ulid and ascii validation message by @nshiro in https://github.com/laravel/laravel/pull/6046
38+
+
39+
+## [v9.3.12](https://github.com/laravel/laravel/compare/v9.3.11...v9.3.12) - 2022-11-22
40+
+
41+
+### Changed
42+
+
43+
+- Bump vite plugin version by @timacdonald in https://github.com/laravel/laravel/pull/6038
44+
+
45+
+## [v9.3.11](https://github.com/laravel/laravel/compare/v9.3.10...v9.3.11) - 2022-11-14
46+
+
47+
+### Changed
48+
+
49+
+- Adds lowercase validation rule translation by @timacdonald in https://github.com/laravel/laravel/pull/6028
50+
+- Adds uppercase validation rule translation by @michaelnabil230 in https://github.com/laravel/laravel/pull/6029
51+
+
52+
+## [v9.3.10](https://github.com/laravel/laravel/compare/v9.3.9...v9.3.10) - 2022-10-28
53+
+
54+
+### Changed
55+
+
56+
+- 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
57+
58+
## [v9.3.9](https://github.com/laravel/laravel/compare/v9.3.8...v9.3.9) - 2022-10-17
59+
60+
diff --git a/lang/en/validation.php b/lang/en/validation.php
61+
index 5ea01fa7..af94bd42 100644
62+
--- a/lang/en/validation.php
63+
+++ b/lang/en/validation.php
64+
@@ -22,6 +22,7 @@ return [
65+
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
66+
'alpha_num' => 'The :attribute must only contain letters and numbers.',
67+
'array' => 'The :attribute must be an array.',
68+
+ 'ascii' => 'The :attribute must only contain single-byte alphanumeric characters and symbols.',
69+
'before' => 'The :attribute must be a date before :date.',
70+
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
71+
'between' => [
72+
@@ -36,6 +37,7 @@ return [
73+
'date' => 'The :attribute is not a valid date.',
74+
'date_equals' => 'The :attribute must be a date equal to :date.',
75+
'date_format' => 'The :attribute does not match the format :format.',
76+
+ 'decimal' => 'The :attribute must have :decimal decimal places.',
77+
'declined' => 'The :attribute must be declined.',
78+
'declined_if' => 'The :attribute must be declined when :other is :value.',
79+
'different' => 'The :attribute and :other must be different.',
80+
@@ -71,6 +73,7 @@ return [
81+
'ipv4' => 'The :attribute must be a valid IPv4 address.',
82+
'ipv6' => 'The :attribute must be a valid IPv6 address.',
83+
'json' => 'The :attribute must be a valid JSON string.',
84+
+ 'lowercase' => 'The :attribute must be lowercase.',
85+
'lt' => [
86+
'array' => 'The :attribute must have less than :value items.',
87+
'file' => 'The :attribute must be less than :value kilobytes.',
88+
@@ -138,7 +141,9 @@ return [
89+
'timezone' => 'The :attribute must be a valid timezone.',
90+
'unique' => 'The :attribute has already been taken.',
91+
'uploaded' => 'The :attribute failed to upload.',
92+
+ 'uppercase' => 'The :attribute must be uppercase.',
93+
'url' => 'The :attribute must be a valid URL.',
94+
+ 'ulid' => 'The :attribute must be a valid ULID.',
95+
'uuid' => 'The :attribute must be a valid UUID.',
96+
97+
/*
98+
diff --git a/package.json b/package.json
99+
index 36489d96..0b32ba69 100644
100+
--- a/package.json
101+
+++ b/package.json
102+
@@ -6,9 +6,9 @@
103+
},
104+
"devDependencies": {
105+
"axios": "^1.1.2",
106+
- "laravel-vite-plugin": "^0.6.0",
107+
+ "laravel-vite-plugin": "^0.7.2",
108+
"lodash": "^4.17.19",
109+
"postcss": "^8.1.14",
110+
- "vite": "^3.0.0"
111+
+ "vite": "^4.0.0"
112+
}
113+
}

diffs/v9.3.11...v9.4.1.diff

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml
2+
new file mode 100644
3+
index 00000000..9634a0ed
4+
--- /dev/null
5+
+++ b/.github/workflows/issues.yml
6+
@@ -0,0 +1,12 @@
7+
+name: issues
8+
+
9+
+on:
10+
+ issues:
11+
+ types: [labeled]
12+
+
13+
+permissions:
14+
+ issues: write
15+
+
16+
+jobs:
17+
+ help-wanted:
18+
+ uses: laravel/.github/.github/workflows/issues.yml@main
19+
diff --git a/CHANGELOG.md b/CHANGELOG.md
20+
index 2f090663..a62b64a5 100644
21+
--- a/CHANGELOG.md
22+
+++ b/CHANGELOG.md
23+
@@ -1,6 +1,29 @@
24+
# Release Notes
25+
26+
-## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.10...9.x)
27+
+## [Unreleased](https://github.com/laravel/laravel/compare/v9.4.0...9.x)
28+
+
29+
+## [v9.4.0](https://github.com/laravel/laravel/compare/v9.3.12...v9.4.0) - 2022-12-15
30+
+
31+
+### Added
32+
+
33+
+- Vite 4 support by @timacdonald in https://github.com/laravel/laravel/pull/6043
34+
+
35+
+### Changed
36+
+
37+
+- Add ulid and ascii validation message by @nshiro in https://github.com/laravel/laravel/pull/6046
38+
+
39+
+## [v9.3.12](https://github.com/laravel/laravel/compare/v9.3.11...v9.3.12) - 2022-11-22
40+
+
41+
+### Changed
42+
+
43+
+- Bump vite plugin version by @timacdonald in https://github.com/laravel/laravel/pull/6038
44+
+
45+
+## [v9.3.11](https://github.com/laravel/laravel/compare/v9.3.10...v9.3.11) - 2022-11-14
46+
+
47+
+### Changed
48+
+
49+
+- Adds lowercase validation rule translation by @timacdonald in https://github.com/laravel/laravel/pull/6028
50+
+- Adds uppercase validation rule translation by @michaelnabil230 in https://github.com/laravel/laravel/pull/6029
51+
52+
## [v9.3.10](https://github.com/laravel/laravel/compare/v9.3.9...v9.3.10) - 2022-10-28
53+
54+
diff --git a/lang/en/validation.php b/lang/en/validation.php
55+
index f3d8cc5f..af94bd42 100644
56+
--- a/lang/en/validation.php
57+
+++ b/lang/en/validation.php
58+
@@ -22,6 +22,7 @@ return [
59+
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
60+
'alpha_num' => 'The :attribute must only contain letters and numbers.',
61+
'array' => 'The :attribute must be an array.',
62+
+ 'ascii' => 'The :attribute must only contain single-byte alphanumeric characters and symbols.',
63+
'before' => 'The :attribute must be a date before :date.',
64+
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
65+
'between' => [
66+
@@ -36,6 +37,7 @@ return [
67+
'date' => 'The :attribute is not a valid date.',
68+
'date_equals' => 'The :attribute must be a date equal to :date.',
69+
'date_format' => 'The :attribute does not match the format :format.',
70+
+ 'decimal' => 'The :attribute must have :decimal decimal places.',
71+
'declined' => 'The :attribute must be declined.',
72+
'declined_if' => 'The :attribute must be declined when :other is :value.',
73+
'different' => 'The :attribute and :other must be different.',
74+
@@ -141,6 +143,7 @@ return [
75+
'uploaded' => 'The :attribute failed to upload.',
76+
'uppercase' => 'The :attribute must be uppercase.',
77+
'url' => 'The :attribute must be a valid URL.',
78+
+ 'ulid' => 'The :attribute must be a valid ULID.',
79+
'uuid' => 'The :attribute must be a valid UUID.',
80+
81+
/*
82+
diff --git a/package.json b/package.json
83+
index 36489d96..0b32ba69 100644
84+
--- a/package.json
85+
+++ b/package.json
86+
@@ -6,9 +6,9 @@
87+
},
88+
"devDependencies": {
89+
"axios": "^1.1.2",
90+
- "laravel-vite-plugin": "^0.6.0",
91+
+ "laravel-vite-plugin": "^0.7.2",
92+
"lodash": "^4.17.19",
93+
"postcss": "^8.1.14",
94+
- "vite": "^3.0.0"
95+
+ "vite": "^4.0.0"
96+
}
97+
}

diffs/v9.3.12...v9.4.1.diff

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml
2+
new file mode 100644
3+
index 00000000..9634a0ed
4+
--- /dev/null
5+
+++ b/.github/workflows/issues.yml
6+
@@ -0,0 +1,12 @@
7+
+name: issues
8+
+
9+
+on:
10+
+ issues:
11+
+ types: [labeled]
12+
+
13+
+permissions:
14+
+ issues: write
15+
+
16+
+jobs:
17+
+ help-wanted:
18+
+ uses: laravel/.github/.github/workflows/issues.yml@main
19+
diff --git a/CHANGELOG.md b/CHANGELOG.md
20+
index c96aa8f9..a62b64a5 100644
21+
--- a/CHANGELOG.md
22+
+++ b/CHANGELOG.md
23+
@@ -1,6 +1,22 @@
24+
# Release Notes
25+
26+
-## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.11...9.x)
27+
+## [Unreleased](https://github.com/laravel/laravel/compare/v9.4.0...9.x)
28+
+
29+
+## [v9.4.0](https://github.com/laravel/laravel/compare/v9.3.12...v9.4.0) - 2022-12-15
30+
+
31+
+### Added
32+
+
33+
+- Vite 4 support by @timacdonald in https://github.com/laravel/laravel/pull/6043
34+
+
35+
+### Changed
36+
+
37+
+- Add ulid and ascii validation message by @nshiro in https://github.com/laravel/laravel/pull/6046
38+
+
39+
+## [v9.3.12](https://github.com/laravel/laravel/compare/v9.3.11...v9.3.12) - 2022-11-22
40+
+
41+
+### Changed
42+
+
43+
+- Bump vite plugin version by @timacdonald in https://github.com/laravel/laravel/pull/6038
44+
45+
## [v9.3.11](https://github.com/laravel/laravel/compare/v9.3.10...v9.3.11) - 2022-11-14
46+
47+
diff --git a/lang/en/validation.php b/lang/en/validation.php
48+
index f3d8cc5f..af94bd42 100644
49+
--- a/lang/en/validation.php
50+
+++ b/lang/en/validation.php
51+
@@ -22,6 +22,7 @@ return [
52+
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
53+
'alpha_num' => 'The :attribute must only contain letters and numbers.',
54+
'array' => 'The :attribute must be an array.',
55+
+ 'ascii' => 'The :attribute must only contain single-byte alphanumeric characters and symbols.',
56+
'before' => 'The :attribute must be a date before :date.',
57+
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
58+
'between' => [
59+
@@ -36,6 +37,7 @@ return [
60+
'date' => 'The :attribute is not a valid date.',
61+
'date_equals' => 'The :attribute must be a date equal to :date.',
62+
'date_format' => 'The :attribute does not match the format :format.',
63+
+ 'decimal' => 'The :attribute must have :decimal decimal places.',
64+
'declined' => 'The :attribute must be declined.',
65+
'declined_if' => 'The :attribute must be declined when :other is :value.',
66+
'different' => 'The :attribute and :other must be different.',
67+
@@ -141,6 +143,7 @@ return [
68+
'uploaded' => 'The :attribute failed to upload.',
69+
'uppercase' => 'The :attribute must be uppercase.',
70+
'url' => 'The :attribute must be a valid URL.',
71+
+ 'ulid' => 'The :attribute must be a valid ULID.',
72+
'uuid' => 'The :attribute must be a valid UUID.',
73+
74+
/*
75+
diff --git a/package.json b/package.json
76+
index a11c53af..0b32ba69 100644
77+
--- a/package.json
78+
+++ b/package.json
79+
@@ -6,9 +6,9 @@
80+
},
81+
"devDependencies": {
82+
"axios": "^1.1.2",
83+
- "laravel-vite-plugin": "^0.7.0",
84+
+ "laravel-vite-plugin": "^0.7.2",
85+
"lodash": "^4.17.19",
86+
"postcss": "^8.1.14",
87+
- "vite": "^3.0.0"
88+
+ "vite": "^4.0.0"
89+
}
90+
}

0 commit comments

Comments
 (0)