3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class BaseYii
93
93
*/
94
94
public static function getVersion ()
95
95
{
96
- return '2.0.50-dev ' ;
96
+ return '2.0.49.1 ' ;
97
97
}
98
98
99
99
/**
Original file line number Diff line number Diff line change 1
1
Yii Framework 2 Change Log
2
2
==========================
3
3
4
- 2.0.49.1 under development
5
- ------------------------
4
+ 2.0.49.1 October 05, 2023
5
+ -------------------------
6
6
7
- - Bug #19984 : Do not duplicate log messages in memory (lubosdz)
8
7
- Bug #19925 : Improved PHP version check when handling MIME types (schmunk42)
9
8
- Bug #19940 : File Log writer without newline (terabytesoftw)
10
- - Bug #19951 : Removed unneeded MIME file tests (schmunk42)
11
9
- Bug #19950 : Fix ` Query::groupBy(null) ` causes error for PHP 8.1: ` trim(): Passing null to parameter #1 ($string) of type string is deprecated ` (uaoleg)
10
+ - Bug #19951 : Removed unneeded MIME file tests (schmunk42)
11
+ - Bug #19984 : Do not duplicate log messages in memory (lubosdz)
12
12
- Enh #19780 : added pcntl to requirements check (schmunk42)
13
13
14
+
14
15
2.0.49 August 29, 2023
15
16
----------------------
16
17
Original file line number Diff line number Diff line change 1003
1003
'zmm ' => 'application/vnd.handheld-entertainment+xml ' ,
1004
1004
];
1005
1005
1006
- # fix for bundled libmagic bug, see also https://github.com/yiisoft/yii2/issues/19925
1007
- if ((PHP_VERSION_ID >= 80100 && PHP_VERSION_ID < 80122 ) || (PHP_VERSION_ID >= 80200 && PHP_VERSION_ID < 80209 )) {
1006
+ if (PHP_VERSION_ID >= 80100 ) {
1008
1007
$ mimeTypes = array_replace ($ mimeTypes , array ('xz ' => 'application/octet-stream ' ));
1009
1008
}
1010
1009
0 commit comments