Skip to content

Commit 70b1bd1

Browse files
committed
Merge branch 'hotfix/3.5.24' into master
2 parents 2a3b1ae + eb77ecd commit 70b1bd1

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.5.24 / 2020-11-06
4+
5+
### Fixed:
6+
* Provide default value for `alterSettingsFile` property
7+
38
## 3.5.23 / 2020-11-06
49

510
### Fixed:

src/Method/DrushMethod.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,12 @@ public function getDefaultConfig(ConfigurationService $configuration_service, ar
7878
{
7979
$config = parent::getDefaultConfig($configuration_service, $host_config);
8080

81-
$keys = ['adminUser', 'revertFeatures', 'replaceSettingsFile', 'configurationManagement', 'installOptions'];
81+
$keys = ['adminUser',
82+
'revertFeatures',
83+
'alterSettingsFile',
84+
'replaceSettingsFile',
85+
'configurationManagement',
86+
'installOptions'];
8287
foreach ($keys as $key) {
8388
$config[$key] = $configuration_service->getSetting($key);
8489
}

src/Utilities/Utilities.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class Utilities
1111
{
1212

13-
const FALLBACK_VERSION = '3.5.23';
13+
const FALLBACK_VERSION = '3.5.24';
1414
const COMBINED_ARGUMENTS = 'combined';
1515
const UNNAMED_ARGUMENTS = 'unnamedArguments';
1616

0 commit comments

Comments
 (0)