Skip to content

Commit 68b4736

Browse files
committed
release version 2.0.47
1 parent 792619f commit 68b4736

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

Diff for: framework/BaseYii.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class BaseYii
9393
*/
9494
public static function getVersion()
9595
{
96-
return '2.0.47-dev';
96+
return '2.0.47';
9797
}
9898

9999
/**

Diff for: framework/CHANGELOG.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
Yii Framework 2 Change Log
22
==========================
33

4-
2.0.47 under development
4+
2.0.47 November 18, 2022
55
------------------------
66

77
- Bug #12636: Fix CompareValidator successful state when compareAttribute has an error (manchenkoff)
88
- Bug #14388: Fixed fixture loading order in output message (manchenkoff)
99
- Bug #15500: Fix saving empty records to MySQL (manchenkoff)
1010
- Bug #15557: Fix empty fields exclusion in safe attributes of `yii\base\Model` (manchenkoff)
1111
- Bug #16658: Fix file readability check on publishing assets by `yii\web\AssetManager` (manchenkoff)
12+
- Bug #19316: Fix MysqlMutex with same connection but difference database (kamarton)
13+
- Bug #19507: Fix eager loading of nested one-to-many relations (spo0okie)
1214
- Bug #19508: Fix wrong selection for boolean attributes in GridView (alnidok)
1315
- Bug #19517: Fix regression in `CompositeAuth::authenticate()` introduced in #19418 (WinterSilence)
16+
- Bug #19520: Fix for TIMESTAMP & ROWVERSION columns in MSSQL insert query (darkdef)
1417
- Bug #19530: Fix specifying the field id for `yii\widgets\ActiveField` (kv4nt)
18+
- Bug #19534: Fix `yii\helpers\BaseHtml::renderSelectOptions()` to properly render boolean selection (bizley)
1519
- Bug #19537: Fix default expression detection for MariaDB `date` and `time` columns (bizley)
16-
- Bug #19589: Fix Error reporting in to the `BaseArrayHelper::getValue()` (lav45)
17-
- Bug #19316: Fix MysqlMutex with same connection but difference database (kamarton)
18-
- Bug #19507: Fix eager loading of nested one-to-many relations (spo0okie)
1920
- Bug #19546: Reverted #19309 (bizley)
20-
- Bug #19670: Fix Error null check PHP 8.1 `yii\rbac\DbManager` (samuelexyz)
21-
- Bug #19520: Fix for TIMESTAMP & ROWVERSION columns in MSSQL insert query (darkdef)
2221
- Bug #19581: Fix regression in `CompositeAuth` introduced in #19418 (SamMousa, WinterSilence, samdark)
22+
- Bug #19589: Fix Error reporting in to the `BaseArrayHelper::getValue()` (lav45)
23+
- Bug #19670: Fix Error null check PHP 8.1 `yii\rbac\DbManager` (samuelexyz)
2324
- Chg #17811: Do not reset `retryHandler` when `yii\db\Command::reset()` called (erickskrauch)
24-
- Bug #19534: Fix `yii\helpers\BaseHtml::renderSelectOptions()` to properly render boolean selection (bizley)
2525
- Chg #19354: Reuse `Validator::getAttributeNames()` in `AttributeTypecastBehavior::detectAttributeTypes()` (WinterSilence)
2626

2727

Diff for: framework/base/Controller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @property-read Module[] $modules All ancestor modules that this controller is located within.
2020
* @property-read string $route The route (module ID, controller ID and action ID) of the current request.
2121
* @property-read string $uniqueId The controller ID that is prefixed with the module ID (if any).
22-
* @property View $view The view object that can be used to render views or view files.
22+
* @property View|\yii\web\View $view The view object that can be used to render views or view files.
2323
* @property string $viewPath The directory containing the view files for this controller.
2424
*
2525
* @author Qiang Xue <[email protected]>

Diff for: framework/mutex/MysqlMutex.php

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class MysqlMutex extends DbMutex
4242
*/
4343
public $keyPrefix = null;
4444

45+
4546
/**
4647
* Initializes MySQL specific mutex component implementation.
4748
* @throws InvalidConfigException if [[db]] is not MySQL connection.

Diff for: framework/validators/TrimValidator.php

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class TrimValidator extends Validator
3131
*/
3232
public $skipOnEmpty = false;
3333

34+
3435
/**
3536
* @inheritDoc
3637
*/

Diff for: framework/widgets/MaskedInput.php

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ class MaskedInput extends InputWidget
123123
'canClearPosition'
124124
];
125125

126+
126127
/**
127128
* Initializes the widget.
128129
*

0 commit comments

Comments
 (0)