Skip to content

Commit abb503c

Browse files
committed
release version 2.0.14.1
1 parent 7b9927c commit abb503c

File tree

9 files changed

+17
-20
lines changed

9 files changed

+17
-20
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.15-dev';
96+
return '2.0.14.1';
9797
}
9898

9999
/**

Diff for: framework/CHANGELOG.md

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

4-
2.0.14.1 under development
4+
2.0.14.1 February 24, 2018
55
--------------------------
66

7-
- Enh #15716: Added `disableJsonSupport` to MySQL and PgSQL `ColumnSchema`, `disableArraySupport` and `deserializeArrayColumnToArrayExpression` to PgSQL `ColumnSchema` (silverfire)
8-
- Bug #15728, #15731: Fixed BC break in `Query::select()` method (silverfire)
9-
- Bug #15692: Fix ExistValidator with targetRelation ignores filter (developeruz)
10-
- Bug #15693: Fixed `yii\filters\auth\HttpHeaderAuth` to work correctly when pattern is set but was not matched (bboure)
11-
- Bug #15696: Fix magic getter for ActiveRecord (developeruz)
127
- Bug #15318: Fixed `session_name(): Cannot change session name when session is active` errors (bscheshirwork, samdark)
13-
- Bug #15726: Fix ExistValidator is broken for NOSQL (developeruz)
14-
- Enh #15716: Implemented `\Traversable` in `yii\db\ArrayExpression` (silverfire)
158
- Bug #15678: Fixed `resetForm()` method in `yii.activeForm.js` which used an undefined variable (Izumi-kun)
16-
- Bug #15742: Updated `yii\helpers\BaseHtml::setActivePlaceholder()` to be consistent with `activeLabel()` (edwards-sj)
9+
- Bug #15692: Fix ExistValidator with targetRelation ignores filter (developeruz)
1710
- Bug #15692: Fix `yii\validators\ExistValidator` to respect filter when `targetRelation` is used (developeruz)
11+
- Bug #15693: Fixed `yii\filters\auth\HttpHeaderAuth` to work correctly when pattern is set but was not matched (bboure)
12+
- Bug #15696: Fix magic getter for ActiveRecord (developeruz)
1813
- Bug #15696: Fix magic getter for `yii\db\ActiveRecord` (developeruz)
1914
- Bug #15707: Fixed JSON retrieving from MySQL (silverfire)
15+
- Bug #15708: Fixed `yii\db\Command::upsert()` for Cubrid/MSSQL/Oracle (sergeymakinen)
2016
- Bug #15724: Changed shortcut in `yii\console\controllers\BaseMigrateController` for `comment` option from `-c` to `-C` due to conflict (Izumi-kun)
17+
- Bug #15726: Fix ExistValidator is broken for NOSQL (developeruz)
18+
- Bug #15728, #15731: Fixed BC break in `Query::select()` method (silverfire)
19+
- Bug #15742: Updated `yii\helpers\BaseHtml::setActivePlaceholder()` to be consistent with `activeLabel()` (edwards-sj)
20+
- Enh #15716: Added `disableJsonSupport` to MySQL and PgSQL `ColumnSchema`, `disableArraySupport` and `deserializeArrayColumnToArrayExpression` to PgSQL `ColumnSchema` (silverfire)
21+
- Enh #15716: Implemented `\Traversable` in `yii\db\ArrayExpression` (silverfire)
2122
- Enh #15760: Added `ArrayAccess` support as validated value in `yii\validators\EachValidator` (silverfire)
22-
- Bug #15708: Fixed `yii\db\Command::upsert()` for Cubrid/MSSQL/Oracle (sergeymakinen)
2323

2424

2525
2.0.14 February 18, 2018

Diff for: framework/behaviors/CacheableWidgetBehavior.php

-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@
4141
* }
4242
* ```
4343
*
44-
* @property Widget $owner
45-
*
4644
* @author Nikolay Oleynikov <[email protected]>
4745
* @since 2.0.14
4846
*/

Diff for: framework/classes.php

+1
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@
179179
'yii\db\mssql\TableSchema' => YII2_PATH . '/db/mssql/TableSchema.php',
180180
'yii\db\mssql\conditions\InConditionBuilder' => YII2_PATH . '/db/mssql/conditions/InConditionBuilder.php',
181181
'yii\db\mssql\conditions\LikeConditionBuilder' => YII2_PATH . '/db/mssql/conditions/LikeConditionBuilder.php',
182+
'yii\db\mysql\ColumnSchema' => YII2_PATH . '/db/mysql/ColumnSchema.php',
182183
'yii\db\mysql\ColumnSchemaBuilder' => YII2_PATH . '/db/mysql/ColumnSchemaBuilder.php',
183184
'yii\db\mysql\JsonExpressionBuilder' => YII2_PATH . '/db/mysql/JsonExpressionBuilder.php',
184185
'yii\db\mysql\QueryBuilder' => YII2_PATH . '/db/mysql/QueryBuilder.php',

Diff for: framework/db/QueryBuilder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
*
2323
* For more details and usage information on QueryBuilder, see the [guide article on query builders](guide:db-query-builder).
2424
*
25-
* @property string[] $expressionBuilders Array of builders that should be merged with the pre-defined ones
26-
* in [[expressionBuilders]] property. This property is write-only.
25+
* @property string[] $expressionBuilders Array of builders that should be merged with the pre-defined ones in
26+
* [[expressionBuilders]] property. This property is write-only.
2727
*
2828
* @author Qiang Xue <[email protected]>
2929
* @since 2.0

Diff for: framework/db/mysql/ColumnSchema.php

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class ColumnSchema extends \yii\db\ColumnSchema
2828
*/
2929
public $disableJsonSupport = false;
3030

31+
3132
/**
3233
* {@inheritdoc}
3334
*/

Diff for: framework/db/mysql/Schema.php

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ class Schema extends \yii\db\Schema implements ConstraintFinderInterface
3434
* {@inheritdoc}
3535
*/
3636
public $columnSchemaClass = 'yii\db\mysql\ColumnSchema';
37-
3837
/**
3938
* @var bool whether MySQL used is older than 5.1.
4039
*/

Diff for: framework/db/pgsql/ColumnSchema.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ class ColumnSchema extends \yii\db\ColumnSchema
2222
* @var int the dimension of array. Defaults to 0, means this column is not an array.
2323
*/
2424
public $dimension = 0;
25-
2625
/**
2726
* @var bool whether the column schema should OMIT using JSON support feature.
2827
* You can use this property to make upgrade to Yii 2.0.14 easier.
@@ -32,7 +31,6 @@ class ColumnSchema extends \yii\db\ColumnSchema
3231
* @deprecated Since 2.0.14.1 and will be removed in 2.1.
3332
*/
3433
public $disableJsonSupport = false;
35-
3634
/**
3735
* @var bool whether the column schema should OMIT using PgSQL Arrays support feature.
3836
* You can use this property to make upgrade to Yii 2.0.14 easier.
@@ -42,7 +40,6 @@ class ColumnSchema extends \yii\db\ColumnSchema
4240
* @deprecated Since 2.0.14.1 and will be removed in 2.1.
4341
*/
4442
public $disableArraySupport = false;
45-
4643
/**
4744
* @var bool whether the Array column value should be unserialized to an [[ArrayExpression]] object.
4845
* You can use this property to make upgrade to Yii 2.0.14 easier.
@@ -53,6 +50,7 @@ class ColumnSchema extends \yii\db\ColumnSchema
5350
*/
5451
public $deserializeArrayColumnToArrayExpression = true;
5552

53+
5654
/**
5755
* {@inheritdoc}
5856
*/

Diff for: framework/rbac/BaseManager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*
2020
* @property Role[] $defaultRoleInstances Default roles. The array is indexed by the role names. This property
2121
* is read-only.
22-
* @property array $defaultRoles Default roles. Note that the type of this property differs in getter and
22+
* @property string[] $defaultRoles Default roles. Note that the type of this property differs in getter and
2323
* setter. See [[getDefaultRoles()]] and [[setDefaultRoles()]] for details.
2424
*
2525
* @author Qiang Xue <[email protected]>

0 commit comments

Comments
 (0)