You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Bug: `yii\helpers\Json::encode()`` did not handle objects that implement `JsonSerializable` interface correctly (cebe)
2625
2625
- Bug: Fixed issue with tabular input on `yii\widgets\ActiveField::radio()` and `yii\widgets\ActiveField::checkbox()` (jom)
2626
2626
- Bug: Fixed the issue that query cache returns the same data for the same SQL but different query methods (qiangxue)
2627
-
- Bug: Fixed URL parsing so it's now properly giving 404 for URLs like `http://example.com//////site/about` (samdark)
2627
+
- Bug: Fixed URL parsing so it's now properly giving 404 for URLs like `https://example.com//////site/about` (samdark)
2628
2628
- Bug: Fixed `yii\console\controllers\HelpController::getModuleCommands()` issue where it attempts to scan a module's controller directory when it doesn't exist (jom)
2629
2629
- Bug: Fixed an issue with FileHelper and not accessible directories which resulted in endless loop (cebe)
2630
2630
- Bug: Fixed `yii\base\Model::load()` returned `true` if `$data` and `formName` were empty (samdark)
2631
2631
- Bug: Fixed issue with `yii\db\ActiveRelationTrait` preventing `yii\db\ActiveQuery` from clearing events and behaviors on clone (jom)
2632
2632
- Bug: `yii\db\Query::queryScalar()` wasn't making `SELECT DISTINCT` queries subqueries (jom)
2633
2633
- Bug: Fixed use `$files` instead of `self::$_files[$key]` to allow inheritance (pgaultier)
2634
-
- Enh #46: Added Image extension based on [Imagine library](http://imagine.readthedocs.org) (tonydspaniard)
2634
+
- Enh #46: Added Image extension based on [Imagine library](https://imagine.readthedocs.io/) (tonydspaniard)
Copy file name to clipboardExpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ For license information check the [LICENSE](LICENSE.md)-file.
10
10
Installation
11
11
------------
12
12
13
-
The preferred way to install the Yii framework is through [composer](http://getcomposer.org/download/).
13
+
The preferred way to install the Yii framework is through [composer](https://getcomposer.org/download/).
14
14
15
15
Refer to [Bower and NPM Assets installation](https://www.yiiframework.com/doc/guide/2.0/en/structure-assets#bower-npm-assets) to select an asset installation method.
Copy file name to clipboardExpand all lines: UPGRADE.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Upgrading in general is as simple as updating your dependency in your composer.j
12
12
running `composer update`. In a big application however there may be more things to consider,
13
13
which are explained in the following.
14
14
15
-
> Note: This document assumes you have composer [installed globally](http://www.yiiframework.com/doc-2.0/guide-start-installation.html#installing-composer)
15
+
> Note: This document assumes you have composer [installed globally](https://www.yiiframework.com/doc-2.0/guide-start-installation.html#installing-composer)
16
16
so that you can run the `composer` command. If you have a `composer.phar` file inside of your project you need to
17
17
replace `composer` with `php composer.phar` in the following.
18
18
@@ -465,7 +465,7 @@ Upgrade from Yii 2.0.13
465
465
*`yii\db\QueryBuilder::conditionBuilders` property and method-based condition builders are no longer used.
466
466
Class-based conditions and builders are introduced instead to provide more flexibility, extensibility and
467
467
space to customization. In case you rely on that property or override any of default condition builders, follow the
468
-
special [guide article](http://www.yiiframework.com/doc-2.0/guide-db-query-builder.html#adding-custom-conditions-and-expressions)
468
+
special [guide article](https://www.yiiframework.com/doc-2.0/guide-db-query-builder.html#adding-custom-conditions-and-expressions)
469
469
to update your code.
470
470
471
471
* Protected method `yii\db\ActiveQueryTrait::createModels()` does not apply indexes as defined in `indexBy` property anymore.
@@ -496,7 +496,7 @@ Upgrade from Yii 2.0.12
496
496
was insecure as the header could have been set by a malicious client on a non-HTTPS connection.
497
497
With 2.0.13 Yii adds support for configuring trusted proxies. If your application runs behind a reverse proxy and relies on
498
498
`getIsSecureConnection()` to return the value form the `X-Forwarded-Proto` header you need to explicitly allow
499
-
this in the Request configuration. See the [guide](http://www.yiiframework.com/doc-2.0/guide-runtime-requests.html#trusted-proxies) for more information.
499
+
this in the Request configuration. See the [guide](https://www.yiiframework.com/doc-2.0/guide-runtime-requests.html#trusted-proxies) for more information.
500
500
501
501
This setting also affects you when Yii is running on IIS webserver, which sets the `X-Rewrite-Url` header.
502
502
This header is now filtered by default and must be listed in trusted hosts to be detected by Yii:
@@ -689,7 +689,7 @@ Upgrade from Yii 2.0.6
689
689
initialization to support wider range of allowed characters. Because of this change:
690
690
691
691
- You are required to flush your application cache to remove outdated `UrlRule` serialized objects.
692
-
See the [Cache Flushing Guide](http://www.yiiframework.com/doc-2.0/guide-caching-data.html#cache-flushing)
692
+
See the [Cache Flushing Guide](https://www.yiiframework.com/doc-2.0/guide-caching-data.html#cache-flushing)
693
693
- If you implement `parseRequest()` or `createUrl()` and rely on parameter names, call `substitutePlaceholderNames()`
694
694
in order to replace temporary IDs with parameter names after doing matching.
695
695
@@ -765,7 +765,7 @@ If you've extended `yii\base\Security` to override any of the config constants y
765
765
Upgrade from Yii 2.0.0
766
766
----------------------
767
767
768
-
* Upgraded Twitter Bootstrap to [version 3.3.x](http://blog.getbootstrap.com/2014/10/29/bootstrap-3-3-0-released/).
768
+
* Upgraded Twitter Bootstrap to [version 3.3.x](https://blog.getbootstrap.com/2014/10/29/bootstrap-3-3-0-released/).
769
769
If you need to use an older version (i.e. stick with 3.2.x) you can specify that in your `composer.json` by
770
770
adding the following line in the `require` section:
0 commit comments