-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathv10.0.3...v10.0.4.diff
42 lines (38 loc) · 1.63 KB
/
v10.0.3...v10.0.4.diff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
diff --git a/CHANGELOG.md b/CHANGELOG.md
index abba1683..98ed5f4d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
# Release Notes
-## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.2...10.x)
+## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.3...10.x)
+
+## [v10.0.3](https://github.com/laravel/laravel/compare/v10.0.2...v10.0.3) - 2023-02-21
+
+- Remove redundant `@return` docblock in UserFactory by @datlechin in https://github.com/laravel/laravel/pull/6119
+- Reverts change in asset helper by @timacdonald in https://github.com/laravel/laravel/pull/6122
## [v10.0.2](https://github.com/laravel/laravel/compare/v10.0.1...v10.0.2) - 2023-02-16
diff --git a/config/auth.php b/config/auth.php
index cae00280..9548c15d 100644
--- a/config/auth.php
+++ b/config/auth.php
@@ -80,7 +80,7 @@ return [
| than one user table or model in the application and you want to have
| separate password reset settings based on the specific user types.
|
- | The expire time is the number of minutes that each reset token will be
+ | The expiry time is the number of minutes that each reset token will be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
diff --git a/config/logging.php b/config/logging.php
index 5aa1dbb7..4c3df4ce 100644
--- a/config/logging.php
+++ b/config/logging.php
@@ -102,6 +102,7 @@ return [
'syslog' => [
'driver' => 'syslog',
'level' => env('LOG_LEVEL', 'debug'),
+ 'facility' => LOG_USER,
],
'errorlog' => [