mirror of
https://github.com/yiisoft/yii2.git
synced 2025-10-30 01:56:35 +08:00
release version 2.0.48.1
This commit is contained in:
@ -93,7 +93,7 @@ class BaseYii
|
||||
*/
|
||||
public static function getVersion()
|
||||
{
|
||||
return '2.0.49-dev';
|
||||
return '2.0.48.1';
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
Yii Framework 2 Change Log
|
||||
==========================
|
||||
|
||||
2.0.28.1 under development
|
||||
--------------------------
|
||||
2.0.48.1 May 24, 2023
|
||||
---------------------
|
||||
|
||||
- Bug #19847: Fix regression introduced in #15376 that caused `DbManager::getRolesByUser()` to return stale data (michaelarnauts)
|
||||
|
||||
|
||||
@ -28,8 +28,8 @@ use yii\helpers\Inflector;
|
||||
* where `<route>` is a route to a controller action and the params will be populated as properties of a command.
|
||||
* See [[options()]] for details.
|
||||
*
|
||||
* @property-read string $help The help information for this controller.
|
||||
* @property-read string $helpSummary The one-line short summary describing this controller.
|
||||
* @property-read string $help
|
||||
* @property-read string $helpSummary
|
||||
* @property-read array $passedOptionValues The properties corresponding to the passed options.
|
||||
* @property-read array $passedOptions The names of the options passed during execution.
|
||||
*
|
||||
|
||||
@ -17,10 +17,6 @@ use yii\helpers\Url;
|
||||
*
|
||||
* For more details and usage information on Controller, see the [guide article on controllers](guide:structure-controllers).
|
||||
*
|
||||
* @property Request $request The request object.
|
||||
* @property Response $response The response object.
|
||||
* @property View $view The view object that can be used to render views or view files.
|
||||
*
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
|
||||
@ -18,7 +18,6 @@ use yii\base\InvalidCallException;
|
||||
* For more details and usage information on CookieCollection, see the [guide article on handling cookies](guide:runtime-sessions-cookies).
|
||||
*
|
||||
* @property-read int $count The number of cookies in the collection.
|
||||
* @property-read ArrayIterator $iterator An iterator for traversing the cookies in the collection.
|
||||
*
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
|
||||
@ -13,9 +13,6 @@ use yii\base\BaseObject;
|
||||
/**
|
||||
* HeaderCollection is used by [[Response]] to maintain the currently registered HTTP headers.
|
||||
*
|
||||
* @property-read int $count The number of headers in the collection.
|
||||
* @property-read \ArrayIterator $iterator An iterator for traversing the headers in the collection.
|
||||
*
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
|
||||
@ -57,7 +57,6 @@ use yii\base\InvalidConfigException;
|
||||
* @property bool $hasSessionId Whether the current request has sent the session ID.
|
||||
* @property string $id The current session ID.
|
||||
* @property-read bool $isActive Whether the session has started.
|
||||
* @property-read SessionIterator $iterator An iterator for traversing the session variables.
|
||||
* @property string $name The current session name.
|
||||
* @property string $savePath The current session save path, defaults to '/tmp'.
|
||||
* @property int $timeout The number of seconds after which data will be seen as 'garbage' and cleaned up. The
|
||||
|
||||
Reference in New Issue
Block a user