Skip to content

Commit 8894073

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

28 files changed

+80630
-1
lines changed

diffs/v10.0.0...v11.0.2.diff

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

diffs/v10.0.1...v11.0.2.diff

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

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

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

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

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

diffs/v10.0.4...v11.0.2.diff

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

diffs/v10.0.5...v11.0.2.diff

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

diffs/v10.0.6...v11.0.2.diff

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

diffs/v10.0.7...v11.0.2.diff

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

diffs/v10.1.0...v11.0.2.diff

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

diffs/v10.1.1...v11.0.2.diff

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

diffs/v10.2.0...v11.0.2.diff

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

diffs/v10.2.1...v11.0.2.diff

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

diffs/v10.2.10...v11.0.2.diff

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

diffs/v10.2.2...v11.0.2.diff

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

diffs/v10.2.3...v11.0.2.diff

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

diffs/v10.2.4...v11.0.2.diff

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

diffs/v10.2.5...v11.0.2.diff

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

diffs/v10.2.6...v11.0.2.diff

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

diffs/v10.2.7...v11.0.2.diff

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

diffs/v10.2.8...v11.0.2.diff

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

diffs/v10.2.9...v11.0.2.diff

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

diffs/v10.3.0...v11.0.2.diff

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

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

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

diffs/v10.3.2...v11.0.2.diff

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

diffs/v10.3.3...v11.0.2.diff

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

diffs/v11.0.0...v11.0.2.diff

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

diffs/v11.0.1...v11.0.2.diff

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

tags.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,5 @@ v10.3.1
149149
v10.3.2
150150
v10.3.3
151151
v11.0.0
152-
v11.0.1
152+
v11.0.1
153+
v11.0.2

0 commit comments

Comments
 (0)