Skip to content

Commit

Permalink
Merge branch '10.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
freost committed Dec 7, 2023
2 parents 8fe79cd + 9a029cf commit f298abd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 10.0.5 <small>(2023-12-07)</small>

#### Bugfixes

* Fixed an issue where an uninitialized connection name in migration would throw an exception.

--------------------------------------------------------

### 10.0.4 <small>(2023-12-03)</small>

#### Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion src/mako/database/migrations/Migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ abstract class Migration
/**
* Connection name.
*/
protected null|string $connectionName;
protected null|string $connectionName = null;

/**
* Migration description.
Expand Down

0 comments on commit f298abd

Please sign in to comment.