Skip to content

Commit

Permalink
release version 2.0.47
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Nov 18, 2022
1 parent 792619f commit 68b4736
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion framework/BaseYii.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class BaseYii
*/
public static function getVersion()
{
return '2.0.47-dev';
return '2.0.47';
}

/**
Expand Down
14 changes: 7 additions & 7 deletions framework/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
Yii Framework 2 Change Log
==========================

2.0.47 under development
2.0.47 November 18, 2022
------------------------

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


Expand Down
2 changes: 1 addition & 1 deletion framework/base/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @property-read Module[] $modules All ancestor modules that this controller is located within.
* @property-read string $route The route (module ID, controller ID and action ID) of the current request.
* @property-read string $uniqueId The controller ID that is prefixed with the module ID (if any).
* @property View $view The view object that can be used to render views or view files.
* @property View|\yii\web\View $view The view object that can be used to render views or view files.
* @property string $viewPath The directory containing the view files for this controller.
*
* @author Qiang Xue <qiang.xue@gmail.com>
Expand Down
1 change: 1 addition & 0 deletions framework/mutex/MysqlMutex.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class MysqlMutex extends DbMutex
*/
public $keyPrefix = null;


/**
* Initializes MySQL specific mutex component implementation.
* @throws InvalidConfigException if [[db]] is not MySQL connection.
Expand Down
1 change: 1 addition & 0 deletions framework/validators/TrimValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class TrimValidator extends Validator
*/
public $skipOnEmpty = false;


/**
* @inheritDoc
*/
Expand Down
1 change: 1 addition & 0 deletions framework/widgets/MaskedInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ class MaskedInput extends InputWidget
'canClearPosition'
];


/**
* Initializes the widget.
*
Expand Down

0 comments on commit 68b4736

Please sign in to comment.