Skip to content

Commit 540a901

Browse files
committed
release version 2.0.43
1 parent 5f3b3eb commit 540a901

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
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.43-dev';
96+
return '2.0.43';
9797
}
9898

9999
/**

Diff for: framework/CHANGELOG.md

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

4-
2.0.43 under development
5-
------------------------
4+
2.0.43 August 09, 2021
5+
----------------------
66

7-
- Enh #18817: Use `paragonie/random_compat` for random bytes and int generation (samdark)
87
- Bug #14663: Do not convert int to string if database type of column is numeric (egorrishe)
8+
- Bug #18274: Fix `yii\log\Logger` to calculate profile timings no matter the value of the flush interval (bizley)
9+
- Bug #18648: Fix `yii\web\Request` to properly handle HTTP Basic Auth headers (olegbaturin)
910
- Bug #18650: Refactor `framework/assets/yii.activeForm.js` arrow function into traditional function for IE11 compatibility (marcovtwout)
11+
- Bug #18678: Fix `yii\caching\DbCache` to use configured cache table name instead of the default one in case of MSSQL varbinary column type detection (aidanbek)
1012
- Bug #18749: Fix `yii\web\ErrorHandler::encodeHtml()` to support strings with invalid UTF symbols (vjik)
11-
- Enh #18724: Allow jQuery 3.6 to be installed (marcovtwout)
13+
- Bug #18756: Fix `\yii\validators\ExistValidator::queryValueExists` to validate against an array of unique values (DrDeath72)
14+
- Bug #18807: Fix replacing source whitespaces and optimize code of `yii\helpers\BaseStringHelper::mb_ucwords()` (WinterSilence)
15+
- Enh #18274: Add `profilingAware` option to `yii\log\Logger` to prevent breaking the profiling block messages pair when flushing them (bizley)
1216
- Enh #18628: Add strings "software", and "hardware" to `$specials` array in `yii\helpers\BaseInflector` (kjusupov)
1317
- Enh #18653: Add method `yii\helpers\BaseHtml::getInputIdByName()` (WinterSilence)
18+
- Enh #18656: Add ability for `yii serve`'s `--router` param to take an alias (markhuot)
1419
- Enh #18669: Change visibility of `yii\web\User::checkRedirectAcceptable()` to `public` (rhertogh)
20+
- Enh #18674: Add more user-friendly exception messages for `yii\i18n\Formatter` (bizley)
1521
- Enh #18676: Add method `yii\helpers\BaseFileHelper::changeOwnership()` and `newFileMode`/`newFileOwnership` properties to `yii\console\controllers\BaseMigrateController` (rhertogh)
16-
- Bug #18678: Fix `yii\caching\DbCache` to use configured cache table name instead of the default one in case of MSSQL varbinary column type detection (aidanbek)
1722
- Enh #18695: Add `yii\web\Cookie::SAME_SITE_NONE` constant (rhertogh)
18-
- Enh #18712: Add `scheme` option for `$options` argument for `yii\i18n\Formatter::asUrl()` (bizley)
1923
- Enh #18707: Change the base error handler to not expose `$_SERVER` details unless `YII_DEBUG` is enabled (coolgoose)
20-
- Bug #18648: Fix `yii\web\Request` to properly handle HTTP Basic Auth headers (olegbaturin)
24+
- Enh #18712: Add `scheme` option for `$options` argument for `yii\i18n\Formatter::asUrl()` (bizley)
25+
- Enh #18724: Allow jQuery 3.6 to be installed (marcovtwout)
2126
- Enh #18726: Add `yii\helpers\Json::$prettyPrint` (rhertogh)
2227
- Enh #18734: Add `yii\validators\EmailValidator::$enableLocalIDN` (brandonkelly)
23-
- Bug #18756: Fix `\yii\validators\ExistValidator::queryValueExists` to validate against an array of unique values (DrDeath72)
24-
- Enh #18656: Add ability for `yii serve`'s `--router` param to take an alias (markhuot)
25-
- Enh #18274: Add `profilingAware` option to `yii\log\Logger` to prevent breaking the profiling block messages pair when flushing them (bizley)
2628
- Enh #18789: Add JSONP support in `yii\web\JsonParser::parse()` (WinterSilence)
27-
- Bug #18274: Fix `yii\log\Logger` to calculate profile timings no matter the value of the flush interval (bizley)
28-
- Bug #18807: Fix replacing source whitespaces and optimize code of `yii\helpers\BaseStringHelper::mb_ucwords()` (WinterSilence)
29-
- Enh #18674: Add more user-friendly exception messages for `yii\i18n\Formatter` (bizley)
29+
- Enh #18817: Use `paragonie/random_compat` for random bytes and int generation (samdark)
3030

3131

3232
2.0.42.1 May 06, 2021

Diff for: framework/db/ColumnSchemaBuilder.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* See [[SchemaBuilderTrait]] for more detailed description and usage examples.
1818
*
19-
* @property array $categoryMap mapping of abstract column types (keys) to type categories (values). (since version 2.0.8)
19+
* @property array $categoryMap Mapping of abstract column types (keys) to type categories (values).
2020
*
2121
* @author Vasenin Matvey <[email protected]>
2222
* @since 2.0.6
@@ -108,8 +108,6 @@ class ColumnSchemaBuilder extends BaseObject
108108
Schema::TYPE_BOOLEAN => self::CATEGORY_NUMERIC,
109109
Schema::TYPE_MONEY => self::CATEGORY_NUMERIC,
110110
];
111-
112-
113111
/**
114112
* @var \yii\db\Connection the current database connection. It is used mainly to escape strings
115113
* safely when building the final column schema string.

Diff for: framework/web/User.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class User extends Component
9999
*/
100100
public $identityCookie = ['name' => '_identity', 'httpOnly' => true];
101101
/**
102-
* @var int the number of seconds in which the user will be logged out automatically if the user
102+
* @var int the number of seconds in which the user will be logged out automatically if the user
103103
* remains inactive. If this property is not set, the user will be logged out after
104104
* the current session expires (c.f. [[Session::timeout]]).
105105
* Note that this will not work if [[enableAutoLogin]] is `true`.

0 commit comments

Comments
 (0)