File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ CHANGE LOG
10
10
* Add ` floatingIpLimit ` to ` Account ` entity
11
11
12
12
13
+ ## 4.9.1 (23/02/2025)
14
+
15
+ * Work around null list bugs in the app and database APIs
16
+
17
+
13
18
## 4.9.0 (03/12/2023)
14
19
15
20
* Add support for ` symfony/options-resolver:^7.0 `
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public function getAll(): array
39
39
40
40
return \array_map (function ($ app ) {
41
41
return new AppEntity ($ app );
42
- }, $ apps ->apps );
42
+ }, $ apps ->apps ?? [] );
43
43
}
44
44
45
45
/**
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public function getAllClusters(?string $tag = null): array
39
39
40
40
return \array_map (function ($ cluster ) {
41
41
return new DatabaseClusterEntity ($ cluster );
42
- }, $ clusters ->databases );
42
+ }, $ clusters ->databases ?? [] );
43
43
}
44
44
45
45
/**
You can’t perform that action at this time.
0 commit comments