File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
# nystudio107/devmode Change Log
2
2
3
+ ## 2.6.2 - 2022.04.15
4
+ ### Changed
5
+ * Remove ` enableLogging ` and ` enableProfiling ` from ` config/db.php ` as they've now gone away
6
+ * Changed ` bootstrap.php ` to allow ` .env ` -set environment variables override existing injected environment variables ([ #82 ] ( https://github.com/craftcms/craft/issues/82 ) )
7
+
3
8
## 2.6.1 - 2022.04.13
4
9
### Added
5
10
* Added Craft CMS 4 db dump
Original file line number Diff line number Diff line change 12
12
13
13
// Load dotenv?
14
14
if (class_exists ('Dotenv\Dotenv ' )) {
15
- Dotenv \Dotenv::createUnsafeImmutable (CRAFT_BASE_PATH )->safeLoad ();
15
+ Dotenv \Dotenv::createUnsafeMutable (CRAFT_BASE_PATH )->safeLoad ();
16
16
}
17
17
18
18
// Define additional PHP constants
Original file line number Diff line number Diff line change 20
20
'password ' => App::env ('DB_PASSWORD ' ),
21
21
'schema ' => App::env ('DB_SCHEMA ' ),
22
22
'tablePrefix ' => App::env ('DB_TABLE_PREFIX ' ),
23
- 'enableLogging ' => false ,
24
- 'enableProfiling ' => (bool )App::env ('DEV_MODE ' ),
25
23
];
You can’t perform that action at this time.
0 commit comments