Skip to content

Commit 695fbfc

Browse files
author
Version Bot
committed
[Version-Bot] Add Laravel Version
1 parent 8894073 commit 695fbfc

29 files changed

+80797
-1
lines changed

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

+3,322
Large diffs are not rendered by default.

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

+3,312
Large diffs are not rendered by default.

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

+3,313
Large diffs are not rendered by default.

diffs/v10.0.3...v11.0.3.diff

+3,288
Large diffs are not rendered by default.

diffs/v10.0.4...v11.0.3.diff

+3,291
Large diffs are not rendered by default.

diffs/v10.0.5...v11.0.3.diff

+3,258
Large diffs are not rendered by default.

diffs/v10.0.6...v11.0.3.diff

+3,250
Large diffs are not rendered by default.

diffs/v10.0.7...v11.0.3.diff

+3,252
Large diffs are not rendered by default.

diffs/v10.1.0...v11.0.3.diff

+3,199
Large diffs are not rendered by default.

diffs/v10.1.1...v11.0.3.diff

+3,207
Large diffs are not rendered by default.

diffs/v10.2.0...v11.0.3.diff

+3,206
Large diffs are not rendered by default.

diffs/v10.2.1...v11.0.3.diff

+3,214
Large diffs are not rendered by default.

diffs/v10.2.10...v11.0.3.diff

+3,175
Large diffs are not rendered by default.

diffs/v10.2.2...v11.0.3.diff

+3,213
Large diffs are not rendered by default.

diffs/v10.2.3...v11.0.3.diff

+3,211
Large diffs are not rendered by default.

diffs/v10.2.4...v11.0.3.diff

+3,216
Large diffs are not rendered by default.

diffs/v10.2.5...v11.0.3.diff

+3,198
Large diffs are not rendered by default.

diffs/v10.2.6...v11.0.3.diff

+3,203
Large diffs are not rendered by default.

diffs/v10.2.7...v11.0.3.diff

+3,172
Large diffs are not rendered by default.

diffs/v10.2.8...v11.0.3.diff

+3,185
Large diffs are not rendered by default.

diffs/v10.2.9...v11.0.3.diff

+3,189
Large diffs are not rendered by default.

diffs/v10.3.0...v11.0.3.diff

+3,188
Large diffs are not rendered by default.

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

+3,196
Large diffs are not rendered by default.

diffs/v10.3.2...v11.0.3.diff

+3,186
Large diffs are not rendered by default.

diffs/v10.3.3...v11.0.3.diff

+3,173
Large diffs are not rendered by default.

diffs/v11.0.0...v11.0.3.diff

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
diff --git a/CHANGELOG.md b/CHANGELOG.md
2+
index 2b1f93ea..78e0e75e 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/v11.0.0...11.x)
9+
+## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.2...11.x)
10+
+
11+
+## [v11.0.2](https://github.com/laravel/laravel/compare/v11.0.1...v11.0.2) - 2024-03-13
12+
+
13+
+* [11.x] Remove branch alias from composer.json by [@zepfietje](https://github.com/zepfietje) in https://github.com/laravel/laravel/pull/6366
14+
+* [11.x] Fixes typo in welcome page by [@jrd-lewis](https://github.com/jrd-lewis) in https://github.com/laravel/laravel/pull/6363
15+
+* change mariadb default by [@taylorotwell](https://github.com/taylorotwell) in https://github.com/laravel/laravel/commit/79969c99c6456a6d6edfbe78d241575fe1f65594
16+
+
17+
+## [v11.0.1](https://github.com/laravel/laravel/compare/v11.0.0...v11.0.1) - 2024-03-12
18+
+
19+
+* [11.x] Fixes SQLite driver missing by [@nunomaduro](https://github.com/nunomaduro) in https://github.com/laravel/laravel/pull/6361
20+
21+
## [v11.0.0 (2023-02-17)](https://github.com/laravel/laravel/compare/v10.3.2...v11.0.0)
22+
23+
diff --git a/composer.json b/composer.json
24+
index 7033b06f..8728b94b 100644
25+
--- a/composer.json
26+
+++ b/composer.json
27+
@@ -44,13 +44,10 @@
28+
"post-create-project-cmd": [
29+
"@php artisan key:generate --ansi",
30+
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
31+
- "@php artisan migrate --ansi"
32+
+ "@php artisan migrate --graceful --ansi"
33+
]
34+
},
35+
"extra": {
36+
- "branch-alias": {
37+
- "dev-master": "11.x-dev"
38+
- },
39+
"laravel": {
40+
"dont-discover": []
41+
}
42+
diff --git a/config/database.php b/config/database.php
43+
index 3ddc3968..f8e8dcb8 100644
44+
--- a/config/database.php
45+
+++ b/config/database.php
46+
@@ -49,7 +49,7 @@ return [
47+
'password' => env('DB_PASSWORD', ''),
48+
'unix_socket' => env('DB_SOCKET', ''),
49+
'charset' => env('DB_CHARSET', 'utf8mb4'),
50+
- 'collation' => env('DB_COLLATION', 'utf8mb4_0900_ai_ci'),
51+
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
52+
'prefix' => '',
53+
'prefix_indexes' => true,
54+
'strict' => true,
55+
@@ -69,7 +69,7 @@ return [
56+
'password' => env('DB_PASSWORD', ''),
57+
'unix_socket' => env('DB_SOCKET', ''),
58+
'charset' => env('DB_CHARSET', 'utf8mb4'),
59+
- 'collation' => env('DB_COLLATION', 'utf8mb4_uca1400_ai_ci'),
60+
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
61+
'prefix' => '',
62+
'prefix_indexes' => true,
63+
'strict' => true,
64+
diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php
65+
index 7b626b14..abe98dc3 100644
66+
--- a/resources/views/welcome.blade.php
67+
+++ b/resources/views/welcome.blade.php
68+
@@ -16,7 +16,7 @@
69+
</style>
70+
</head>
71+
<body class="font-sans antialiased dark:bg-black dark:text-white/50">
72+
- <div className="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
73+
+ <div class="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
74+
<img id="background" class="absolute -left-20 top-0 max-w-[877px]" src="https://laravel.com/assets/img/welcome/background.svg" />
75+
<div class="relative min-h-screen flex flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white">
76+
<div class="relative w-full max-w-2xl px-6 lg:max-w-7xl">

diffs/v11.0.1...v11.0.3.diff

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
diff --git a/CHANGELOG.md b/CHANGELOG.md
2+
index 2b1f93ea..78e0e75e 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/v11.0.0...11.x)
9+
+## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.2...11.x)
10+
+
11+
+## [v11.0.2](https://github.com/laravel/laravel/compare/v11.0.1...v11.0.2) - 2024-03-13
12+
+
13+
+* [11.x] Remove branch alias from composer.json by [@zepfietje](https://github.com/zepfietje) in https://github.com/laravel/laravel/pull/6366
14+
+* [11.x] Fixes typo in welcome page by [@jrd-lewis](https://github.com/jrd-lewis) in https://github.com/laravel/laravel/pull/6363
15+
+* change mariadb default by [@taylorotwell](https://github.com/taylorotwell) in https://github.com/laravel/laravel/commit/79969c99c6456a6d6edfbe78d241575fe1f65594
16+
+
17+
+## [v11.0.1](https://github.com/laravel/laravel/compare/v11.0.0...v11.0.1) - 2024-03-12
18+
+
19+
+* [11.x] Fixes SQLite driver missing by [@nunomaduro](https://github.com/nunomaduro) in https://github.com/laravel/laravel/pull/6361
20+
21+
## [v11.0.0 (2023-02-17)](https://github.com/laravel/laravel/compare/v10.3.2...v11.0.0)
22+
23+
diff --git a/composer.json b/composer.json
24+
index 9fe4aa63..8728b94b 100644
25+
--- a/composer.json
26+
+++ b/composer.json
27+
@@ -48,9 +48,6 @@
28+
]
29+
},
30+
"extra": {
31+
- "branch-alias": {
32+
- "dev-master": "11.x-dev"
33+
- },
34+
"laravel": {
35+
"dont-discover": []
36+
}
37+
diff --git a/config/database.php b/config/database.php
38+
index 3ddc3968..f8e8dcb8 100644
39+
--- a/config/database.php
40+
+++ b/config/database.php
41+
@@ -49,7 +49,7 @@ return [
42+
'password' => env('DB_PASSWORD', ''),
43+
'unix_socket' => env('DB_SOCKET', ''),
44+
'charset' => env('DB_CHARSET', 'utf8mb4'),
45+
- 'collation' => env('DB_COLLATION', 'utf8mb4_0900_ai_ci'),
46+
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
47+
'prefix' => '',
48+
'prefix_indexes' => true,
49+
'strict' => true,
50+
@@ -69,7 +69,7 @@ return [
51+
'password' => env('DB_PASSWORD', ''),
52+
'unix_socket' => env('DB_SOCKET', ''),
53+
'charset' => env('DB_CHARSET', 'utf8mb4'),
54+
- 'collation' => env('DB_COLLATION', 'utf8mb4_uca1400_ai_ci'),
55+
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
56+
'prefix' => '',
57+
'prefix_indexes' => true,
58+
'strict' => true,
59+
diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php
60+
index 7b626b14..abe98dc3 100644
61+
--- a/resources/views/welcome.blade.php
62+
+++ b/resources/views/welcome.blade.php
63+
@@ -16,7 +16,7 @@
64+
</style>
65+
</head>
66+
<body class="font-sans antialiased dark:bg-black dark:text-white/50">
67+
- <div className="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
68+
+ <div class="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
69+
<img id="background" class="absolute -left-20 top-0 max-w-[877px]" src="https://laravel.com/assets/img/welcome/background.svg" />
70+
<div class="relative min-h-screen flex flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white">
71+
<div class="relative w-full max-w-2xl px-6 lg:max-w-7xl">

diffs/v11.0.2...v11.0.3.diff

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
diff --git a/CHANGELOG.md b/CHANGELOG.md
2+
index 6c5b449e..78e0e75e 100644
3+
--- a/CHANGELOG.md
4+
+++ b/CHANGELOG.md
5+
@@ -1,6 +1,12 @@
6+
# Release Notes
7+
8+
-## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.1...11.x)
9+
+## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.2...11.x)
10+
+
11+
+## [v11.0.2](https://github.com/laravel/laravel/compare/v11.0.1...v11.0.2) - 2024-03-13
12+
+
13+
+* [11.x] Remove branch alias from composer.json by [@zepfietje](https://github.com/zepfietje) in https://github.com/laravel/laravel/pull/6366
14+
+* [11.x] Fixes typo in welcome page by [@jrd-lewis](https://github.com/jrd-lewis) in https://github.com/laravel/laravel/pull/6363
15+
+* change mariadb default by [@taylorotwell](https://github.com/taylorotwell) in https://github.com/laravel/laravel/commit/79969c99c6456a6d6edfbe78d241575fe1f65594
16+
17+
## [v11.0.1](https://github.com/laravel/laravel/compare/v11.0.0...v11.0.1) - 2024-03-12
18+
19+
diff --git a/config/database.php b/config/database.php
20+
index f720f566..f8e8dcb8 100644
21+
--- a/config/database.php
22+
+++ b/config/database.php
23+
@@ -49,7 +49,7 @@ return [
24+
'password' => env('DB_PASSWORD', ''),
25+
'unix_socket' => env('DB_SOCKET', ''),
26+
'charset' => env('DB_CHARSET', 'utf8mb4'),
27+
- 'collation' => env('DB_COLLATION', 'utf8mb4_0900_ai_ci'),
28+
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
29+
'prefix' => '',
30+
'prefix_indexes' => true,
31+
'strict' => true,

tags.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,5 @@ v10.3.2
150150
v10.3.3
151151
v11.0.0
152152
v11.0.1
153-
v11.0.2
153+
v11.0.2
154+
v11.0.3

0 commit comments

Comments
 (0)