Skip to content

Commit 4126679

Browse files
author
Version Bot
committed
[Version-Bot] Add Laravel Version
1 parent 1d2feae commit 4126679

6 files changed

+723
-1
lines changed

diffs/v10.0.0...v10.0.5.diff

+199
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
diff --git a/.gitignore b/.gitignore
2+
index e6bbd7ae..7fe978f8 100644
3+
--- a/.gitignore
4+
+++ b/.gitignore
5+
@@ -8,6 +8,7 @@
6+
.env
7+
.env.backup
8+
.env.production
9+
+.phpunit.result.cache
10+
Homestead.json
11+
Homestead.yaml
12+
auth.json
13+
diff --git a/CHANGELOG.md b/CHANGELOG.md
14+
index a08dfc8a..97af4b2c 100644
15+
--- a/CHANGELOG.md
16+
+++ b/CHANGELOG.md
17+
@@ -1,7 +1,26 @@
18+
# Release Notes
19+
20+
-## [Unreleased](https://github.com/laravel/laravel/compare/v9.5.1...10.x)
21+
+## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.4...10.x)
22+
23+
-## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.5.1...10.x)
24+
+## [v10.0.4](https://github.com/laravel/laravel/compare/v10.0.3...v10.0.4) - 2023-02-27
25+
+
26+
+- Fix typo by @izzudin96 in https://github.com/laravel/laravel/pull/6128
27+
+- Specify facility in the syslog driver config by @nicolus in https://github.com/laravel/laravel/pull/6130
28+
+
29+
+## [v10.0.3](https://github.com/laravel/laravel/compare/v10.0.2...v10.0.3) - 2023-02-21
30+
+
31+
+- Remove redundant `@return` docblock in UserFactory by @datlechin in https://github.com/laravel/laravel/pull/6119
32+
+- Reverts change in asset helper by @timacdonald in https://github.com/laravel/laravel/pull/6122
33+
+
34+
+## [v10.0.2](https://github.com/laravel/laravel/compare/v10.0.1...v10.0.2) - 2023-02-16
35+
+
36+
+- Remove unneeded call by @taylorotwell in https://github.com/laravel/laravel/commit/3986d4c54041fd27af36f96cf11bd79ce7b1ee4e
37+
+
38+
+## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15
39+
+
40+
+- Add PHPUnit result cache to gitignore by @itxshakil in https://github.com/laravel/laravel/pull/6105
41+
+- Allow php-http/discovery as a composer plugin by @nicolas-grekas in https://github.com/laravel/laravel/pull/6106
42+
+
43+
+## [v10.0.0 (2022-02-14)](https://github.com/laravel/laravel/compare/v9.5.2...v10.0.0)
44+
45+
Laravel 10 includes a variety of changes to the application skeleton. Please consult the diff to see what's new.
46+
diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php
47+
index 5522aa2f..dafcbee7 100644
48+
--- a/app/Providers/AuthServiceProvider.php
49+
+++ b/app/Providers/AuthServiceProvider.php
50+
@@ -21,8 +21,6 @@ class AuthServiceProvider extends ServiceProvider
51+
*/
52+
public function boot(): void
53+
{
54+
- $this->registerPolicies();
55+
-
56+
//
57+
}
58+
}
59+
diff --git a/composer.json b/composer.json
60+
index 5b40f87c..4958668f 100644
61+
--- a/composer.json
62+
+++ b/composer.json
63+
@@ -48,9 +48,6 @@
64+
]
65+
},
66+
"extra": {
67+
- "branch-alias": {
68+
- "dev-master": "10.x-dev"
69+
- },
70+
"laravel": {
71+
"dont-discover": []
72+
}
73+
@@ -60,7 +57,8 @@
74+
"preferred-install": "dist",
75+
"sort-packages": true,
76+
"allow-plugins": {
77+
- "pestphp/pest-plugin": true
78+
+ "pestphp/pest-plugin": true,
79+
+ "php-http/discovery": true
80+
}
81+
},
82+
"minimum-stability": "stable",
83+
diff --git a/config/app.php b/config/app.php
84+
index bca112fb..ef76a7ed 100644
85+
--- a/config/app.php
86+
+++ b/config/app.php
87+
@@ -56,7 +56,7 @@ return [
88+
89+
'url' => env('APP_URL', 'http://localhost'),
90+
91+
- 'asset_url' => env('ASSET_URL', '/'),
92+
+ 'asset_url' => env('ASSET_URL'),
93+
94+
/*
95+
|--------------------------------------------------------------------------
96+
diff --git a/config/auth.php b/config/auth.php
97+
index cae00280..9548c15d 100644
98+
--- a/config/auth.php
99+
+++ b/config/auth.php
100+
@@ -80,7 +80,7 @@ return [
101+
| than one user table or model in the application and you want to have
102+
| separate password reset settings based on the specific user types.
103+
|
104+
- | The expire time is the number of minutes that each reset token will be
105+
+ | The expiry time is the number of minutes that each reset token will be
106+
| considered valid. This security feature keeps tokens short-lived so
107+
| they have less time to be guessed. You may change this as needed.
108+
|
109+
diff --git a/config/logging.php b/config/logging.php
110+
index 5aa1dbb7..c44d2763 100644
111+
--- a/config/logging.php
112+
+++ b/config/logging.php
113+
@@ -3,6 +3,7 @@
114+
use Monolog\Handler\NullHandler;
115+
use Monolog\Handler\StreamHandler;
116+
use Monolog\Handler\SyslogUdpHandler;
117+
+use Monolog\Processor\PsrLogMessageProcessor;
118+
119+
return [
120+
121+
@@ -61,6 +62,7 @@ return [
122+
'driver' => 'single',
123+
'path' => storage_path('logs/laravel.log'),
124+
'level' => env('LOG_LEVEL', 'debug'),
125+
+ 'replace_placeholders' => true,
126+
],
127+
128+
'daily' => [
129+
@@ -68,6 +70,7 @@ return [
130+
'path' => storage_path('logs/laravel.log'),
131+
'level' => env('LOG_LEVEL', 'debug'),
132+
'days' => 14,
133+
+ 'replace_placeholders' => true,
134+
],
135+
136+
'slack' => [
137+
@@ -76,6 +79,7 @@ return [
138+
'username' => 'Laravel Log',
139+
'emoji' => ':boom:',
140+
'level' => env('LOG_LEVEL', 'critical'),
141+
+ 'replace_placeholders' => true,
142+
],
143+
144+
'papertrail' => [
145+
@@ -87,6 +91,7 @@ return [
146+
'port' => env('PAPERTRAIL_PORT'),
147+
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
148+
],
149+
+ 'processors' => [PsrLogMessageProcessor::class],
150+
],
151+
152+
'stderr' => [
153+
@@ -97,16 +102,20 @@ return [
154+
'with' => [
155+
'stream' => 'php://stderr',
156+
],
157+
+ 'processors' => [PsrLogMessageProcessor::class],
158+
],
159+
160+
'syslog' => [
161+
'driver' => 'syslog',
162+
'level' => env('LOG_LEVEL', 'debug'),
163+
+ 'facility' => LOG_USER,
164+
+ 'replace_placeholders' => true,
165+
],
166+
167+
'errorlog' => [
168+
'driver' => 'errorlog',
169+
'level' => env('LOG_LEVEL', 'debug'),
170+
+ 'replace_placeholders' => true,
171+
],
172+
173+
'null' => [
174+
diff --git a/config/mail.php b/config/mail.php
175+
index 049052ff..542d98c3 100644
176+
--- a/config/mail.php
177+
+++ b/config/mail.php
178+
@@ -28,7 +28,7 @@ return [
179+
| sending an e-mail. You will specify which one you are using for your
180+
| mailers below. You are free to add additional mailers as required.
181+
|
182+
- | Supported: "smtp", "sendmail", "mailgun", "ses",
183+
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
184+
| "postmark", "log", "array", "failover"
185+
|
186+
*/
187+
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
188+
index d4e88356..a6ecc0af 100644
189+
--- a/database/factories/UserFactory.php
190+
+++ b/database/factories/UserFactory.php
191+
@@ -28,8 +28,6 @@ class UserFactory extends Factory
192+
193+
/**
194+
* Indicate that the model's email address should be unverified.
195+
- *
196+
- * @return $this
197+
*/
198+
public function unverified(): static
199+
{

diffs/v10.0.1...v10.0.5.diff

+179
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
diff --git a/.gitignore b/.gitignore
2+
index 3cb7c776..7fe978f8 100644
3+
--- a/.gitignore
4+
+++ b/.gitignore
5+
@@ -8,12 +8,12 @@
6+
.env
7+
.env.backup
8+
.env.production
9+
+.phpunit.result.cache
10+
Homestead.json
11+
Homestead.yaml
12+
auth.json
13+
npm-debug.log
14+
yarn-error.log
15+
-.phpunit.result.cache
16+
/.fleet
17+
/.idea
18+
/.vscode
19+
diff --git a/CHANGELOG.md b/CHANGELOG.md
20+
index 6810ce1b..97af4b2c 100644
21+
--- a/CHANGELOG.md
22+
+++ b/CHANGELOG.md
23+
@@ -1,6 +1,25 @@
24+
# Release Notes
25+
26+
-## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.0...10.x)
27+
+## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.4...10.x)
28+
+
29+
+## [v10.0.4](https://github.com/laravel/laravel/compare/v10.0.3...v10.0.4) - 2023-02-27
30+
+
31+
+- Fix typo by @izzudin96 in https://github.com/laravel/laravel/pull/6128
32+
+- Specify facility in the syslog driver config by @nicolus in https://github.com/laravel/laravel/pull/6130
33+
+
34+
+## [v10.0.3](https://github.com/laravel/laravel/compare/v10.0.2...v10.0.3) - 2023-02-21
35+
+
36+
+- Remove redundant `@return` docblock in UserFactory by @datlechin in https://github.com/laravel/laravel/pull/6119
37+
+- Reverts change in asset helper by @timacdonald in https://github.com/laravel/laravel/pull/6122
38+
+
39+
+## [v10.0.2](https://github.com/laravel/laravel/compare/v10.0.1...v10.0.2) - 2023-02-16
40+
+
41+
+- Remove unneeded call by @taylorotwell in https://github.com/laravel/laravel/commit/3986d4c54041fd27af36f96cf11bd79ce7b1ee4e
42+
+
43+
+## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15
44+
+
45+
+- Add PHPUnit result cache to gitignore by @itxshakil in https://github.com/laravel/laravel/pull/6105
46+
+- Allow php-http/discovery as a composer plugin by @nicolas-grekas in https://github.com/laravel/laravel/pull/6106
47+
48+
## [v10.0.0 (2022-02-14)](https://github.com/laravel/laravel/compare/v9.5.2...v10.0.0)
49+
50+
diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php
51+
index 5522aa2f..dafcbee7 100644
52+
--- a/app/Providers/AuthServiceProvider.php
53+
+++ b/app/Providers/AuthServiceProvider.php
54+
@@ -21,8 +21,6 @@ class AuthServiceProvider extends ServiceProvider
55+
*/
56+
public function boot(): void
57+
{
58+
- $this->registerPolicies();
59+
-
60+
//
61+
}
62+
}
63+
diff --git a/config/app.php b/config/app.php
64+
index bca112fb..ef76a7ed 100644
65+
--- a/config/app.php
66+
+++ b/config/app.php
67+
@@ -56,7 +56,7 @@ return [
68+
69+
'url' => env('APP_URL', 'http://localhost'),
70+
71+
- 'asset_url' => env('ASSET_URL', '/'),
72+
+ 'asset_url' => env('ASSET_URL'),
73+
74+
/*
75+
|--------------------------------------------------------------------------
76+
diff --git a/config/auth.php b/config/auth.php
77+
index cae00280..9548c15d 100644
78+
--- a/config/auth.php
79+
+++ b/config/auth.php
80+
@@ -80,7 +80,7 @@ return [
81+
| than one user table or model in the application and you want to have
82+
| separate password reset settings based on the specific user types.
83+
|
84+
- | The expire time is the number of minutes that each reset token will be
85+
+ | The expiry time is the number of minutes that each reset token will be
86+
| considered valid. This security feature keeps tokens short-lived so
87+
| they have less time to be guessed. You may change this as needed.
88+
|
89+
diff --git a/config/logging.php b/config/logging.php
90+
index 5aa1dbb7..c44d2763 100644
91+
--- a/config/logging.php
92+
+++ b/config/logging.php
93+
@@ -3,6 +3,7 @@
94+
use Monolog\Handler\NullHandler;
95+
use Monolog\Handler\StreamHandler;
96+
use Monolog\Handler\SyslogUdpHandler;
97+
+use Monolog\Processor\PsrLogMessageProcessor;
98+
99+
return [
100+
101+
@@ -61,6 +62,7 @@ return [
102+
'driver' => 'single',
103+
'path' => storage_path('logs/laravel.log'),
104+
'level' => env('LOG_LEVEL', 'debug'),
105+
+ 'replace_placeholders' => true,
106+
],
107+
108+
'daily' => [
109+
@@ -68,6 +70,7 @@ return [
110+
'path' => storage_path('logs/laravel.log'),
111+
'level' => env('LOG_LEVEL', 'debug'),
112+
'days' => 14,
113+
+ 'replace_placeholders' => true,
114+
],
115+
116+
'slack' => [
117+
@@ -76,6 +79,7 @@ return [
118+
'username' => 'Laravel Log',
119+
'emoji' => ':boom:',
120+
'level' => env('LOG_LEVEL', 'critical'),
121+
+ 'replace_placeholders' => true,
122+
],
123+
124+
'papertrail' => [
125+
@@ -87,6 +91,7 @@ return [
126+
'port' => env('PAPERTRAIL_PORT'),
127+
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
128+
],
129+
+ 'processors' => [PsrLogMessageProcessor::class],
130+
],
131+
132+
'stderr' => [
133+
@@ -97,16 +102,20 @@ return [
134+
'with' => [
135+
'stream' => 'php://stderr',
136+
],
137+
+ 'processors' => [PsrLogMessageProcessor::class],
138+
],
139+
140+
'syslog' => [
141+
'driver' => 'syslog',
142+
'level' => env('LOG_LEVEL', 'debug'),
143+
+ 'facility' => LOG_USER,
144+
+ 'replace_placeholders' => true,
145+
],
146+
147+
'errorlog' => [
148+
'driver' => 'errorlog',
149+
'level' => env('LOG_LEVEL', 'debug'),
150+
+ 'replace_placeholders' => true,
151+
],
152+
153+
'null' => [
154+
diff --git a/config/mail.php b/config/mail.php
155+
index 275a3c64..542d98c3 100644
156+
--- a/config/mail.php
157+
+++ b/config/mail.php
158+
@@ -28,7 +28,7 @@ return [
159+
| sending an e-mail. You will specify which one you are using for your
160+
| mailers below. You are free to add additional mailers as required.
161+
|
162+
- | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2"
163+
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
164+
| "postmark", "log", "array", "failover"
165+
|
166+
*/
167+
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
168+
index d4e88356..a6ecc0af 100644
169+
--- a/database/factories/UserFactory.php
170+
+++ b/database/factories/UserFactory.php
171+
@@ -28,8 +28,6 @@ class UserFactory extends Factory
172+
173+
/**
174+
* Indicate that the model's email address should be unverified.
175+
- *
176+
- * @return $this
177+
*/
178+
public function unverified(): static
179+
{

0 commit comments

Comments
 (0)