Skip to content

Commit

Permalink
release version 2.0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Jul 16, 2019
1 parent a7335bf commit 4d02666
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion framework/BaseYii.php
Expand Up @@ -93,7 +93,7 @@ class BaseYii
*/
public static function getVersion()
{
return '2.0.23-dev';
return '2.0.23';
}

/**
Expand Down
8 changes: 4 additions & 4 deletions framework/CHANGELOG.md
@@ -1,14 +1,14 @@
Yii Framework 2 Change Log
==========================

2.0.23 under development
------------------------
2.0.23 July 16, 2019
--------------------

- Bug #10023: Fixed MSSQL "There are no more rows in the active result set" exception when using `each()` and `batch()` (alexkart)
- Bug #17395: Fixed issues with actions that contain underscores in their names (alexkart)
- Bug #17413, #17418, #17426, #17431: Fixed MSSQL tests (alexkart)
- Bug #17420: Fixed loading of column default values for MSSQL (alexkart)
- Bug #17395: Fixed issues with actions that contain underscores in their names (alexkart)
- Bug #17435: Fixed `i18n_init` migration for MSSQL (alexkart)
- Bug #10023: Fixed MSSQL "There are no more rows in the active result set" exception when using `each()` and `batch()` (alexkart)


2.0.22 July 02, 2019
Expand Down
1 change: 1 addition & 0 deletions framework/classes.php
Expand Up @@ -173,6 +173,7 @@
'yii\db\cubrid\QueryBuilder' => YII2_PATH . '/db/cubrid/QueryBuilder.php',
'yii\db\cubrid\Schema' => YII2_PATH . '/db/cubrid/Schema.php',
'yii\db\cubrid\conditions\LikeConditionBuilder' => YII2_PATH . '/db/cubrid/conditions/LikeConditionBuilder.php',
'yii\db\mssql\ColumnSchema' => YII2_PATH . '/db/mssql/ColumnSchema.php',
'yii\db\mssql\PDO' => YII2_PATH . '/db/mssql/PDO.php',
'yii\db\mssql\QueryBuilder' => YII2_PATH . '/db/mssql/QueryBuilder.php',
'yii\db\mssql\Schema' => YII2_PATH . '/db/mssql/Schema.php',
Expand Down
1 change: 1 addition & 0 deletions framework/db/BatchQueryResult.php
Expand Up @@ -72,6 +72,7 @@ class BatchQueryResult extends BaseObject implements \Iterator
*/
private $mssqlNoMoreRowsErrorCode = -13;


/**
* Destructor.
*/
Expand Down

0 comments on commit 4d02666

Please sign in to comment.