Browse Source

prepare for 2.0.0-beta release.

tags/2.0.0-beta^0 2.0.0-beta
Qiang Xue 11 years ago
parent
commit
8bbcff70db
  1. 2
      apps/advanced/composer.json
  2. 2
      apps/basic/composer.json
  3. 2
      apps/benchmark/composer.json
  4. 6
      build/controllers/ReleaseController.php
  5. 4
      extensions/apidoc/CHANGELOG.md
  6. 4
      extensions/authclient/CHANGELOG.md
  7. 1
      extensions/bootstrap/ActiveForm.php
  8. 4
      extensions/bootstrap/CHANGELOG.md
  9. 4
      extensions/codeception/CHANGELOG.md
  10. 4
      extensions/composer/CHANGELOG.md
  11. 4
      extensions/debug/CHANGELOG.md
  12. 4
      extensions/elasticsearch/CHANGELOG.md
  13. 4
      extensions/faker/CHANGELOG.md
  14. 4
      extensions/gii/CHANGELOG.md
  15. 4
      extensions/imagine/CHANGELOG.md
  16. 4
      extensions/jui/CHANGELOG.md
  17. 4
      extensions/mongodb/CHANGELOG.md
  18. 4
      extensions/redis/CHANGELOG.md
  19. 4
      extensions/smarty/CHANGELOG.md
  20. 4
      extensions/sphinx/CHANGELOG.md
  21. 4
      extensions/swiftmailer/CHANGELOG.md
  22. 4
      extensions/twig/CHANGELOG.md
  23. 2
      framework/BaseYii.php
  24. 4
      framework/CHANGELOG.md
  25. 4
      framework/base/Application.php
  26. 3
      framework/db/Connection.php

2
apps/advanced/composer.json

@ -12,7 +12,7 @@
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2"
},
"minimum-stability": "dev",
"minimum-stability": "beta",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",

2
apps/basic/composer.json

@ -12,7 +12,7 @@
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2"
},
"minimum-stability": "dev",
"minimum-stability": "beta",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",

2
apps/benchmark/composer.json

@ -15,7 +15,7 @@
"config": {
"vendor-dir": "protected/vendor"
},
"minimum-stability": "dev",
"minimum-stability": "beta",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*"

6
build/controllers/ReleaseController.php

@ -32,7 +32,6 @@ class ReleaseController extends Controller
{
$this->closeChangelogs($version);
$this->composerSetStability($version);
$this->composerCreateLocks();
$this->updateYiiVersion($version);
}
@ -107,11 +106,6 @@ class ReleaseController extends Controller
);
}
protected function composerCreateLocks()
{
$this->confirm('Run composer update for each app and commit the composer.lock file. Hit enter when done.');
}
protected function updateYiiVersion($version)
{
$this->sed(

4
extensions/apidoc/CHANGELOG.md

@ -1,7 +1,7 @@
Yii Framework 2 apidoc extension Change Log
===========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.

4
extensions/authclient/CHANGELOG.md

@ -1,7 +1,7 @@
Yii Framework 2 authclient extension Change Log
===============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.

1
extensions/bootstrap/ActiveForm.php

@ -41,7 +41,6 @@ use yii\base\InvalidConfigException;
* To get a different column layout in horizontal mode you can modify those options
* through [[fieldConfig]]:
*
*
* ```php
* $form = ActiveForm::begin([
* 'layout' => 'horizontal',

4
extensions/bootstrap/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 bootstrap extension Change Log
==============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #2361: `yii\bootstrap\NavBar::brandUrl` should default to the home URL of application (qiangxue)
- Enh #1474: Added option to make NavBar 100% width (cebe)

4
extensions/codeception/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 Codeception extension Change Log
================================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.
- Enh: yii\codeception\TestCase now supports loading and using fixtures via Yii fixture framework (qiangxue)

4
extensions/composer/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 composer extension Change Log
=============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1480: Fixed issue with creating extensions.php when php opcache is enabled (cebe)
- Enh: Added support for installing packages conforming to PSR-4 standard (qiangxue)

4
extensions/debug/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 debug extension Change Log
==========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1783: Using VarDumper::dumpAsString() instead var_export(), because var_export() does not handle circular references. (djagya)
- Bug #1504: Debug toolbar isn't loaded successfully in some environments when xdebug is enabled (qiangxue)

4
extensions/elasticsearch/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 elasticsearch extension Change Log
==================================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
- Bug #2324: Fixed QueryBuilder bug when building a query with "query" option (mintao)

4
extensions/faker/CHANGELOG.md

@ -1,7 +1,7 @@
Yii Framework 2 faker extension Change Log
==============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.

4
extensions/gii/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 gii extension Change Log
========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1405: fixed disambiguation of relation names generated by gii (qiangxue)
- Bug #1904: Fixed autocomplete to work with underscore inputs "_" (tonydspaniard)

4
extensions/imagine/CHANGELOG.md

@ -1,7 +1,7 @@
Yii Framework 2 imagine extension Change Log
================================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.

4
extensions/jui/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 jui extension Change Log
========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1550: fixed the issue that JUI input widgets did not property input IDs. (qiangxue)
- Bug #2514: Jui sortable clientEvents were not working because of wrong naming assumptions. (cebe)

4
extensions/mongodb/CHANGELOG.md

@ -1,7 +1,7 @@
Yii Framework 2 mongodb extension Change Log
============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.

4
extensions/redis/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 redis extension Change Log
==========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
- Enh #1773: keyPrefix property of Session and Cache is not restricted to alnum characters anymore (cebe)

4
extensions/smarty/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 smarty extension Change Log
===========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- no changes in this release.

4
extensions/sphinx/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 sphinx extension Change Log
===========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
- Bug #2160: SphinxQL does not support `OFFSET` (qiangxue, romeo7)

4
extensions/swiftmailer/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 swiftmailer extension Change Log
================================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1817: Message charset not applied for alternative bodies (klimov-paul)

4
extensions/twig/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 twig extension Change Log
=========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Add File based Twig loader for better caching and usability of twig's file based function (dev-mraj, samdark)

2
framework/BaseYii.php

@ -92,7 +92,7 @@ class BaseYii
*/
public static function getVersion()
{
return '2.0.0-dev';
return '2.0.0-beta';
}
/**

4
framework/CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 Change Log
==========================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1265: AssetController does not override 'js' and 'css' for compressed bundles (klimov-paul)
- Bug #1326: The `visible` setting for `DetailView` doesn't work as expected (qiangxue)

4
framework/base/Application.php

@ -13,8 +13,8 @@ use Yii;
* Application is the base class for all application classes.
*
* @property \yii\web\AssetManager $assetManager The asset manager component. This property is read-only.
* @property \yii\rbac\ManagerInterface $authManager The auth manager for this application. Null is returned if auth
* manager is not configured. This property is read-only.
* @property \yii\rbac\ManagerInterface $authManager The auth manager for this application. Null is returned
* if auth manager is not configured. This property is read-only.
* @property string $basePath The root directory of the application.
* @property \yii\caching\Cache $cache The cache application component. Null if the component is not enabled.
* This property is read-only.

3
framework/db/Connection.php

@ -89,8 +89,7 @@ use yii\caching\Cache;
* ]
* ~~~
*
* @property string $driverName Name of the DB driver. Change this property if you want to override the
* driver name specified in [[dsn]]. This can be useful if you're working with the database via ODBC layer.
* @property string $driverName Name of the DB driver.
* @property boolean $isActive Whether the DB connection is established. This property is read-only.
* @property string $lastInsertID The row ID of the last row inserted, or the last value retrieved from the
* sequence object. This property is read-only.

Loading…
Cancel
Save