Skip to content

Commit 9f8f53f

Browse files
author
Version Bot
committed
[Version-Bot] Add Laravel Version
1 parent 9d35634 commit 9f8f53f

File tree

4 files changed

+277
-1
lines changed

4 files changed

+277
-1
lines changed

diffs/v10.0.0...v10.0.3.diff

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
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..abba1683 100644
15+
--- a/CHANGELOG.md
16+
+++ b/CHANGELOG.md
17+
@@ -1,7 +1,16 @@
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.2...10.x)
22+
23+
-## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.5.1...10.x)
24+
+## [v10.0.2](https://github.com/laravel/laravel/compare/v10.0.1...v10.0.2) - 2023-02-16
25+
+
26+
+- Remove unneeded call by @taylorotwell in https://github.com/laravel/laravel/commit/3986d4c54041fd27af36f96cf11bd79ce7b1ee4e
27+
+
28+
+## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15
29+
+
30+
+- Add PHPUnit result cache to gitignore by @itxshakil in https://github.com/laravel/laravel/pull/6105
31+
+- Allow php-http/discovery as a composer plugin by @nicolas-grekas in https://github.com/laravel/laravel/pull/6106
32+
+
33+
+## [v10.0.0 (2022-02-14)](https://github.com/laravel/laravel/compare/v9.5.2...v10.0.0)
34+
35+
Laravel 10 includes a variety of changes to the application skeleton. Please consult the diff to see what's new.
36+
diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php
37+
index 5522aa2f..dafcbee7 100644
38+
--- a/app/Providers/AuthServiceProvider.php
39+
+++ b/app/Providers/AuthServiceProvider.php
40+
@@ -21,8 +21,6 @@ class AuthServiceProvider extends ServiceProvider
41+
*/
42+
public function boot(): void
43+
{
44+
- $this->registerPolicies();
45+
-
46+
//
47+
}
48+
}
49+
diff --git a/composer.json b/composer.json
50+
index 5b40f87c..4958668f 100644
51+
--- a/composer.json
52+
+++ b/composer.json
53+
@@ -48,9 +48,6 @@
54+
]
55+
},
56+
"extra": {
57+
- "branch-alias": {
58+
- "dev-master": "10.x-dev"
59+
- },
60+
"laravel": {
61+
"dont-discover": []
62+
}
63+
@@ -60,7 +57,8 @@
64+
"preferred-install": "dist",
65+
"sort-packages": true,
66+
"allow-plugins": {
67+
- "pestphp/pest-plugin": true
68+
+ "pestphp/pest-plugin": true,
69+
+ "php-http/discovery": true
70+
}
71+
},
72+
"minimum-stability": "stable",
73+
diff --git a/config/app.php b/config/app.php
74+
index bca112fb..ef76a7ed 100644
75+
--- a/config/app.php
76+
+++ b/config/app.php
77+
@@ -56,7 +56,7 @@ return [
78+
79+
'url' => env('APP_URL', 'http://localhost'),
80+
81+
- 'asset_url' => env('ASSET_URL', '/'),
82+
+ 'asset_url' => env('ASSET_URL'),
83+
84+
/*
85+
|--------------------------------------------------------------------------
86+
diff --git a/config/mail.php b/config/mail.php
87+
index 049052ff..542d98c3 100644
88+
--- a/config/mail.php
89+
+++ b/config/mail.php
90+
@@ -28,7 +28,7 @@ return [
91+
| sending an e-mail. You will specify which one you are using for your
92+
| mailers below. You are free to add additional mailers as required.
93+
|
94+
- | Supported: "smtp", "sendmail", "mailgun", "ses",
95+
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
96+
| "postmark", "log", "array", "failover"
97+
|
98+
*/
99+
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
100+
index d4e88356..a6ecc0af 100644
101+
--- a/database/factories/UserFactory.php
102+
+++ b/database/factories/UserFactory.php
103+
@@ -28,8 +28,6 @@ class UserFactory extends Factory
104+
105+
/**
106+
* Indicate that the model's email address should be unverified.
107+
- *
108+
- * @return $this
109+
*/
110+
public function unverified(): static
111+
{

diffs/v10.0.1...v10.0.3.diff

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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..abba1683 100644
21+
--- a/CHANGELOG.md
22+
+++ b/CHANGELOG.md
23+
@@ -1,6 +1,15 @@
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.2...10.x)
28+
+
29+
+## [v10.0.2](https://github.com/laravel/laravel/compare/v10.0.1...v10.0.2) - 2023-02-16
30+
+
31+
+- Remove unneeded call by @taylorotwell in https://github.com/laravel/laravel/commit/3986d4c54041fd27af36f96cf11bd79ce7b1ee4e
32+
+
33+
+## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15
34+
+
35+
+- Add PHPUnit result cache to gitignore by @itxshakil in https://github.com/laravel/laravel/pull/6105
36+
+- Allow php-http/discovery as a composer plugin by @nicolas-grekas in https://github.com/laravel/laravel/pull/6106
37+
38+
## [v10.0.0 (2022-02-14)](https://github.com/laravel/laravel/compare/v9.5.2...v10.0.0)
39+
40+
diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php
41+
index 5522aa2f..dafcbee7 100644
42+
--- a/app/Providers/AuthServiceProvider.php
43+
+++ b/app/Providers/AuthServiceProvider.php
44+
@@ -21,8 +21,6 @@ class AuthServiceProvider extends ServiceProvider
45+
*/
46+
public function boot(): void
47+
{
48+
- $this->registerPolicies();
49+
-
50+
//
51+
}
52+
}
53+
diff --git a/config/app.php b/config/app.php
54+
index bca112fb..ef76a7ed 100644
55+
--- a/config/app.php
56+
+++ b/config/app.php
57+
@@ -56,7 +56,7 @@ return [
58+
59+
'url' => env('APP_URL', 'http://localhost'),
60+
61+
- 'asset_url' => env('ASSET_URL', '/'),
62+
+ 'asset_url' => env('ASSET_URL'),
63+
64+
/*
65+
|--------------------------------------------------------------------------
66+
diff --git a/config/mail.php b/config/mail.php
67+
index 275a3c64..542d98c3 100644
68+
--- a/config/mail.php
69+
+++ b/config/mail.php
70+
@@ -28,7 +28,7 @@ return [
71+
| sending an e-mail. You will specify which one you are using for your
72+
| mailers below. You are free to add additional mailers as required.
73+
|
74+
- | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2"
75+
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
76+
| "postmark", "log", "array", "failover"
77+
|
78+
*/
79+
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
80+
index d4e88356..a6ecc0af 100644
81+
--- a/database/factories/UserFactory.php
82+
+++ b/database/factories/UserFactory.php
83+
@@ -28,8 +28,6 @@ class UserFactory extends Factory
84+
85+
/**
86+
* Indicate that the model's email address should be unverified.
87+
- *
88+
- * @return $this
89+
*/
90+
public function unverified(): static
91+
{

diffs/v10.0.2...v10.0.3.diff

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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 8c536600..abba1683 100644
21+
--- a/CHANGELOG.md
22+
+++ b/CHANGELOG.md
23+
@@ -1,6 +1,10 @@
24+
# Release Notes
25+
26+
-## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.1...10.x)
27+
+## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.2...10.x)
28+
+
29+
+## [v10.0.2](https://github.com/laravel/laravel/compare/v10.0.1...v10.0.2) - 2023-02-16
30+
+
31+
+- Remove unneeded call by @taylorotwell in https://github.com/laravel/laravel/commit/3986d4c54041fd27af36f96cf11bd79ce7b1ee4e
32+
33+
## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15
34+
35+
diff --git a/config/app.php b/config/app.php
36+
index bca112fb..ef76a7ed 100644
37+
--- a/config/app.php
38+
+++ b/config/app.php
39+
@@ -56,7 +56,7 @@ return [
40+
41+
'url' => env('APP_URL', 'http://localhost'),
42+
43+
- 'asset_url' => env('ASSET_URL', '/'),
44+
+ 'asset_url' => env('ASSET_URL'),
45+
46+
/*
47+
|--------------------------------------------------------------------------
48+
diff --git a/config/mail.php b/config/mail.php
49+
index 275a3c64..542d98c3 100644
50+
--- a/config/mail.php
51+
+++ b/config/mail.php
52+
@@ -28,7 +28,7 @@ return [
53+
| sending an e-mail. You will specify which one you are using for your
54+
| mailers below. You are free to add additional mailers as required.
55+
|
56+
- | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2"
57+
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
58+
| "postmark", "log", "array", "failover"
59+
|
60+
*/
61+
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
62+
index d4e88356..a6ecc0af 100644
63+
--- a/database/factories/UserFactory.php
64+
+++ b/database/factories/UserFactory.php
65+
@@ -28,8 +28,6 @@ class UserFactory extends Factory
66+
67+
/**
68+
* Indicate that the model's email address should be unverified.
69+
- *
70+
- * @return $this
71+
*/
72+
public function unverified(): static
73+
{

tags.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,5 @@ v9.5.1
125125
v9.5.2
126126
v10.0.0
127127
v10.0.1
128-
v10.0.2
128+
v10.0.2
129+
v10.0.3

0 commit comments

Comments
 (0)