You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: upgrade.md
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,22 @@ The `firstWhere` method signature [has changed](https://github.com/laravel/frame
49
49
*/
50
50
public function firstWhere($key, $operator = null, $value = null);
51
51
52
+
### Console
53
+
54
+
#### The `Kernel` Contract
55
+
56
+
**Likelihood Of Impact: Very Low**
57
+
58
+
The `terminate` method [has been added to the `Illuminate/Contracts/Console/Kernel` contract](https://github.com/laravel/framework/pull/26393). If you are implementing this interface, you should add this method to your implementation.
59
+
60
+
### Container
61
+
62
+
#### The `Container` Contract
63
+
64
+
**Likelihood Of Impact: Very Low**
65
+
66
+
[The `Illuminate\Contracts\Container\Container` contract](https://github.com/laravel/framework/pull/26378) now extends the `ArrayAccess` contract. If you are implementing the `Container` interface, your implementation should now also satisfy the `ArrayAccess` contract.
67
+
52
68
### Database
53
69
54
70
#### Unquoted MySQL JSON Values
@@ -75,6 +91,21 @@ As a result, the `->>` operator is no longer supported or necessary.
75
91
76
92
As of Laravel 5.8 the [oldest supported SQLite version](https://github.com/laravel/framework/pull/25995) is SQLite 3.7.11. If you are using an older SQLite version, you should update it (SQLite 3.8.8+ is recommended).
77
93
94
+
### Eloquent
95
+
96
+
#### The `originalIsEquivalent` Method
97
+
98
+
**Likelihood Of Impact: Very Low**
99
+
100
+
The `originalIsEquivalent` method of the `Illuminate\Database\Eloquent\Concerns\HasAttributes` trait [has been changed](https://github.com/laravel/framework/pull/26391) from `protected` to `public`.
101
+
102
+
### Events
103
+
104
+
#### The `fire` Method
105
+
106
+
The `fire` method (which was deprecated in Laravel 5.4) of the `Illuminate/Events/Dispatcher` class [has been removed](https://github.com/laravel/framework/pull/26392).
0 commit comments