Commit ae8d9782 by Qiang Xue

2.0.0 release.

parent de853a25
......@@ -12,7 +12,7 @@
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2"
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
......
......@@ -12,7 +12,7 @@
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2"
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
......
......@@ -15,7 +15,7 @@
"config": {
"vendor-dir": "protected/vendor"
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*"
......
Yii Framework 2 apidoc extension Change Log
===========================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Chg: Updated cebe/markdown to 1.0.0 which includes breaking changes in its internal API (cebe)
......
Yii Framework 2 authclient extension Change Log
===============================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Enh #5135: Added ability to operate nested and complex attributes via `yii\authclient\BaseClient::normalizeUserAttributeMap` (zinzinday, klimov-paul)
......
Yii Framework 2 bootstrap extension Change Log
==============================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Bug #5323: Nested dropdown does not work for `yii\bootstrap\DropDown` (aryraditya)
- Bug #5336: `yii\bootstrap\DropDown` should register bootstrap plugin asset (zelenin)
......
Yii Framework 2 Codeception extension Change Log
================================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 composer extension Change Log
=============================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 debug extension Change Log
==========================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 elasticsearch extension Change Log
==================================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Enh #3381: Added ActiveRecord::arrayAttributes() to define attributes that should be treated as array when retrieved via `fields` (cebe)
......
Yii Framework 2 faker extension Change Log
==============================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 gii extension Change Log
========================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Bug #5408: Gii console command incorrectly reports errors when there is actually no error (qiangxue)
- Bug: Fixed table name regression caused by changed introduced in #4971 (samdark)
......
Yii Framework 2 imagine extension Change Log
================================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 jui extension Change Log
========================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 mongodb extension Change Log
============================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Bug #5303: Fixed `yii\mongodb\Collection` unable to fetch default database name from DSN with parameters (klimov-paul)
- Bug #5411: Fixed `yii\mongodb\ActiveRecord` unable to fetch 'hasMany' referred by array of `\MongoId` (klimov-paul)
......
Yii Framework 2 redis extension Change Log
==========================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 smarty extension Change Log
===========================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 sphinx extension Change Log
===========================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Enh #5211: `yii\sphinx\Query` now supports 'HAVING' (klimov-paul)
......
Yii Framework 2 swiftmailer extension Change Log
================================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- no changes in this release.
......
Yii Framework 2 twig extension Change Log
=========================================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Bug #5308: object function calls in templates were passing arguments in a wrong way (genichyar, samdark)
......
......@@ -93,7 +93,7 @@ class BaseYii
*/
public static function getVersion()
{
return '2.0.0-dev';
return '2.0.0';
}
/**
......
Yii Framework 2 Change Log
==========================
2.0.0 under development
-----------------------
2.0.0 October 12, 2014
----------------------
- Bug #4881: Fixed `yii\console\controllers\AssetController` breaks CSS URLs on Windows (klimov-paul)
- Bug #5171: Fixed the bug that ActiveForm + Pjax submit event is only triggered once (qiangxue)
......
......@@ -43,7 +43,8 @@ use yii\base\InvalidParamException;
* useful for displaying confirmation messages. To use flash messages, simply
* call methods such as [[setFlash()]], [[getFlash()]].
*
* @property array $allFlashes Flash messages (key => message). This property is read-only.
* @property array $allFlashes Flash messages (key => message or key => [message1, message2]). This property
* is read-only.
* @property array $cookieParams The session cookie parameters. This property is read-only.
* @property integer $count The number of session variables. This property is read-only.
* @property string $flash The key identifying the flash message. Note that flash messages and normal session
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment