Skip to content

Commit aaae4fc

Browse files
author
Version Bot
committed
[Version-Bot] Add Laravel Version
1 parent f5e9f82 commit aaae4fc

23 files changed

+10643
-1
lines changed

diffs/v10.0.0...v10.3.1.diff

+869
Large diffs are not rendered by default.

diffs/v10.0.1...v10.3.1.diff

+853
Large diffs are not rendered by default.

diffs/v10.0.2...v10.3.1.diff

+839
Large diffs are not rendered by default.

diffs/v10.0.3...v10.3.1.diff

+798
Large diffs are not rendered by default.

diffs/v10.0.4...v10.3.1.diff

+780
Large diffs are not rendered by default.

diffs/v10.0.5...v10.3.1.diff

+710
Large diffs are not rendered by default.

diffs/v10.0.6...v10.3.1.diff

+679
Large diffs are not rendered by default.

diffs/v10.0.7...v10.3.1.diff

+653
Large diffs are not rendered by default.

diffs/v10.1.0...v10.3.1.diff

+507
Large diffs are not rendered by default.

diffs/v10.1.1...v10.3.1.diff

+499
Large diffs are not rendered by default.

diffs/v10.2.0...v10.3.1.diff

+463
Large diffs are not rendered by default.

diffs/v10.2.1...v10.3.1.diff

+433
Large diffs are not rendered by default.

diffs/v10.2.10...v10.3.1.diff

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
diff --git a/CHANGELOG.md b/CHANGELOG.md
2+
index 5e8baa21..39481a20 100644
3+
--- a/CHANGELOG.md
4+
+++ b/CHANGELOG.md
5+
@@ -1,6 +1,16 @@
6+
# Release Notes
7+
8+
-## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.9...10.x)
9+
+## [Unreleased](https://github.com/laravel/laravel/compare/v10.3.0...10.x)
10+
+
11+
+## [v10.3.0](https://github.com/laravel/laravel/compare/v10.2.10...v10.3.0) - 2023-12-19
12+
+
13+
+* [10.x] Use `assertOk()` instead of `assertStatus(200)` in tests by [@TENIOS](https://github.com/TENIOS) in https://github.com/laravel/laravel/pull/6287
14+
+* [10.x] Vite 5 by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/laravel/pull/6292
15+
+
16+
+## [v10.2.10](https://github.com/laravel/laravel/compare/v10.2.9...v10.2.10) - 2023-11-30
17+
+
18+
+* [10.x] Fixes missing property description by [@nunomaduro](https://github.com/nunomaduro) in https://github.com/laravel/laravel/pull/6275
19+
+* [10.x] Add partitioned cookie config key by [@fabricecw](https://github.com/fabricecw) in https://github.com/laravel/laravel/pull/6257
20+
21+
## [v10.2.9](https://github.com/laravel/laravel/compare/v10.2.8...v10.2.9) - 2023-11-13
22+
23+
diff --git a/config/mail.php b/config/mail.php
24+
index d7416b15..e894b2e5 100644
25+
--- a/config/mail.php
26+
+++ b/config/mail.php
27+
@@ -29,7 +29,7 @@ return [
28+
| mailers below. You are free to add additional mailers as required.
29+
|
30+
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
31+
- | "postmark", "log", "array", "failover"
32+
+ | "postmark", "log", "array", "failover", "roundrobin"
33+
|
34+
*/
35+
36+
@@ -50,16 +50,16 @@ return [
37+
'transport' => 'ses',
38+
],
39+
40+
- 'mailgun' => [
41+
- 'transport' => 'mailgun',
42+
+ 'postmark' => [
43+
+ 'transport' => 'postmark',
44+
+ // 'message_stream_id' => null,
45+
// 'client' => [
46+
// 'timeout' => 5,
47+
// ],
48+
],
49+
50+
- 'postmark' => [
51+
- 'transport' => 'postmark',
52+
- // 'message_stream_id' => null,
53+
+ 'mailgun' => [
54+
+ 'transport' => 'mailgun',
55+
// 'client' => [
56+
// 'timeout' => 5,
57+
// ],
58+
@@ -86,6 +86,14 @@ return [
59+
'log',
60+
],
61+
],
62+
+
63+
+ 'roundrobin' => [
64+
+ 'transport' => 'roundrobin',
65+
+ 'mailers' => [
66+
+ 'ses',
67+
+ 'postmark',
68+
+ ],
69+
+ ],
70+
],
71+
72+
/*
73+
diff --git a/package.json b/package.json
74+
index e9319dfe..fe1122a8 100644
75+
--- a/package.json
76+
+++ b/package.json
77+
@@ -7,7 +7,7 @@
78+
},
79+
"devDependencies": {
80+
"axios": "^1.6.1",
81+
- "laravel-vite-plugin": "^0.8.0",
82+
- "vite": "^4.0.0"
83+
+ "laravel-vite-plugin": "^1.0.0",
84+
+ "vite": "^5.0.0"
85+
}
86+
}
87+
diff --git a/phpunit.xml b/phpunit.xml
88+
index f112c0c8..bc86714b 100644
89+
--- a/phpunit.xml
90+
+++ b/phpunit.xml
91+
@@ -24,6 +24,7 @@
92+
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
93+
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
94+
<env name="MAIL_MAILER" value="array"/>
95+
+ <env name="PULSE_ENABLED" value="false"/>
96+
<env name="QUEUE_CONNECTION" value="sync"/>
97+
<env name="SESSION_DRIVER" value="array"/>
98+
<env name="TELESCOPE_ENABLED" value="false"/>
99+
diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php
100+
index 8364a84e..2a4a09ee 100644
101+
--- a/tests/Feature/ExampleTest.php
102+
+++ b/tests/Feature/ExampleTest.php
103+
@@ -14,6 +14,6 @@ class ExampleTest extends TestCase
104+
{
105+
$response = $this->get('/');
106+
107+
- $response->assertStatus(200);
108+
+ $response->assertOk();
109+
}
110+
}

0 commit comments

Comments
 (0)