Commit Graph

802 Commits

Author SHA1 Message Date
DrDeath72
0210999748 Fix #18308: Fixed \yii\base\Model::getErrorSummary() reverse order 2020-10-02 11:43:30 +03:00
My6UoT9
03da5bb689 Updates to ErrorHandler, add missing type hint \Throwable (#18302)
* Updated phpdoc so it has \Throwable

- `abstract protected function renderException($exception);` is extended in web/ErrorHandler to also have `\Error`.
- `public static function convertExceptionToError($exception)` is called from widgets/ActiveField.php with 
```
/**
     * PHP magic method that returns the string representation of this object.
     * @return string the string representation of this object.
     */
    public function __toString()
    {
        // __toString cannot throw exception
        // use trigger_error to bypass this limitation
        try {
            return $this->render();
        } catch (\Exception $e) {
            ErrorHandler::convertExceptionToError($e);
            return '';
        } catch (\Throwable $e) {
            ErrorHandler::convertExceptionToError($e);
            return '';
        }
    }
```

* Add \Throwable to phpdoc in response.php 

The ErrorHandler has been updated in phpdoc to have throwable, this complets that change.

* Update ErrorHandler.php

fixed missing `|`
2020-09-30 02:34:23 +03:00
My6UoT9
2ce927788a Update phpdoc for widget->getId (#18295)
The private variable `$_id`  is only set when `$autogenerate` is true, else it stays null, and will be returned by the function.
2020-09-21 14:56:52 +03:00
Vladislav Pototskiy
e348c0f460 Fix #18269: Fix integer safe attribute to work properly in yii\base\Model 2020-09-07 00:33:50 +03:00
Alexander Makarov
700ac02706 release version 2.0.36 2020-07-08 00:45:32 +03:00
Alexander Makarov
38f038175f Adjust changelog, correct phpdoc, minor code style fixes 2020-07-07 15:00:16 +03:00
Deryabin Sergey
7eb184eadb Fix #17999: Fix skipping test case on PHP v >= 7.1 and LibreSSL version >= 2.15 2020-07-01 00:14:57 +03:00
egorrishe
5c3ee63316 Fix #15202: Add optional param --silent-exit-on-exception in yii\console\Controller 2020-06-23 13:34:09 +03:00
ErickSkrauch
2e21a8275c Fix #18115: Allow to load action-injected services from module's container 2020-06-22 23:49:02 +03:00
Brandon Kelly
fc4f449e21 Fix #18083: Add Controller::$request and $response 2020-06-14 21:19:27 +03:00
Sam
4ea484ca68 Fix #17722: Add action injection support 2020-06-12 10:06:18 +03:00
Alexander Makarov
60a39654dd release version 2.0.35 2020-05-02 14:11:31 +03:00
Alexander Makarov
f425f1a655 Fix DynamicModel phpdoc 2020-05-02 14:09:40 +03:00
Maksym Storchak
c32811887a Fix #18011: Added attribute labels support for DynamicModel, fixed EachValidator to pass the attribute label to the underlying DynamicModel 2020-05-02 02:14:03 +03:00
ricardomm85
355ca1562d Fix #17810: Fix EachValidator crashing with uninitialized typed properties 2020-04-04 15:03:09 +03:00
Alexander Makarov
82649fc741 Fix formatting 2020-03-26 23:37:59 +03:00
Alexander Makarov
fbd7eded2d Bug #17933: Log warning instead of erroring when URLManager is unable to initialize cache 2020-03-26 23:21:35 +03:00
Ivan Hermanov
6e9764b467 Added support of JsonSerializable interface to ArrayableTrait (#17888) 2020-02-22 12:34:27 +03:00
Alexander Makarov
fd6ccb615c release version 2.0.32 2020-01-22 01:29:38 +03:00
Toma91
a982f31606 Fixes #17300: Fix class-level Event handling with wildcards 2020-01-15 13:16:05 +03:00
Sam
9b1304ab4e Fix #17803: Fixed ErrorHandler unregister and register only change global state when applicable 2020-01-15 00:08:05 +03:00
Robert Korulczyk
383cf0c48d Fix #17762: PHP 7.4: Remove special condition for converting PHP errors to exceptions if they occurred inside of __toString() call 2019-12-25 12:25:04 +03:00
Yusup Hambali
05aae044e5 Fix #17720: DI 3 support for application core components and default object configurations 2019-12-12 02:48:42 +03:00
Alexander Makarov
e153c68768 Fix #17725: Ensure we do not use external polyfills for pbkdf2() as these may be implemented incorrectly 2019-12-11 18:55:35 +03:00
Alexander Makarov
69b1966b4a PHP 7.4 fixes
- Fix `Model::activeAttributes()` to access array offset on value of non-string
- Fix incorrect decoding of default binary value for PostgreSQL
- Fix incorrect type-casting of reflection type to string
2019-12-10 15:08:45 +03:00
Yusup Hambali
c1e9739ed2 Fix #17670: Fix overriding core component class using __class 2019-11-19 20:10:26 +03:00
Alexander Makarov
166f892f14 Fix #17673: Add note about renderDynamic() and register*() methods [skip ci] 2019-11-19 17:15:38 +03:00
Viktor Khokhryakov
4c76dc4c90 Fix #16610: ErrorException trace was cut when using XDebug 2019-09-18 13:40:10 +03:00
Alexander Makarov
18401399fe Inline constant since it is not part of the public interface
In Yii 3 instead I'd make constant private but we have no PHP 7 in 2.0
2019-09-04 00:35:53 +03:00
Somogyi Márton
90d46298ad Fix #17507: Fixed regular expression escaping and simpler condition in Controller::createAction() 2019-08-22 12:11:12 +03:00
Alexander Makarov
2927a7af1c release version 2.0.25 2019-08-13 23:04:44 +03:00
Alexander Makarov
2d96095e9e Fix phpdoc [skip ci] 2019-08-13 23:04:07 +03:00
Nikolay Poryadin
491f9737fe Fix #17223: Fixed detaching a behavior event when it is a Closure instance 2019-08-13 20:35:42 +03:00
yuniorsk
d3bd1403de Fixes docs for createController method (#17478) [skip ci] 2019-07-30 17:42:47 +03:00
Alexander Makarov
331d997185 Noted in Security::encrypt* that data returned is byte string [skip ci] 2019-07-12 15:13:53 +03:00
Alexander Makarov
1f6cc43337 Remove unnecessary concatenation 2019-07-02 21:34:35 +03:00
Alexander Kartavenko
b0a973a8da Fix #17396: Added 'invoked by controller' to the debug log message when \yii\base\Action is used 2019-06-28 01:50:44 +03:00
Alexander Makarov
1c919a5ac5 Fixes #17377: Add tests that verify there are no false positives 2019-06-18 12:22:35 +03:00
Alexander Makarov
317a73a59f Fixes #17336: Fixed wildcard matching in Event::hasHandlers() 2019-06-04 15:07:51 +02:00
Pavel Dovlatov
bdb7c64910 Update to https protocol for php.net links (#17168) [skip ci]
* Updated php.net link for some MemCache properties [skip ci]

* Changed protocol to https for links to php.net in comments

* Changed protocol to https for links to php.net in code

* Changed www.php.net (http) to secure.php.net (https) in comments

* Changed www.php.net (http) to secure.php.net (https) in code

* Changed protocol to https for links to php.net in UPGRADE.md

* Changed protocol to https for links to pecl.php.net in comments

* Changed us.php.net to secure.php.net (https) in comments

* Changed protocol to https for links to php.net in docs

* Changed www.php.net (http) to secure.php.net (https) in docs

* Changed protocol to https for links to pecl.php.net in docs

* Changed ru/jp.php.net to secure.php.net (https) in docs

Don't sure about russian guide: is this links meant to be for guide on russian, or not?
2019-02-28 13:09:27 +03:00
Carsten Brandt
768d590eef added missing @since annotations 2019-01-31 00:45:25 +01:00
Razvan Grigore
ca3c8da503 Fixes #16377: Fixed yii\base\Event:off() undefined index error when event handler does not match 2018-06-12 09:50:43 +03:00
Vuong Minh
aeeb6ce39d Fixes #16252: Fixed yii\base\DynamicModel for checking exist property 2018-05-30 22:51:52 +03:00
Paweł Jankowiak
33fe3476c7 Fixes #16280: Fixed yii\base\Model::getActiveValidators() to return correct validators for attribute on scenario 2018-05-21 01:17:34 +05:00
Sohel Ahmed Mesaniya
0fbec30bbc Docs enhancement (#15464) [skip ci] 2018-05-14 12:59:00 +03:00
Sam
a8d95f429d Fixes #14636: Views can now use relative paths even when using themed views 2018-05-11 12:50:56 +03:00
杨国帅
2c997cdb82 Fixes #16184: Fixed yii\base\Widget to access stack property with self instead of static 2018-04-29 12:36:10 +03:00
Vladimir Reznichenko
14984328e5 SCA with Php Inspections (EA Ultimate) (#16105) 2018-04-16 13:22:54 +03:00
Vladimir Reznichenko
1a74b3d4f8 [minor] SCA with Php Inspections (EA Ultimate) (#15871)
* Php Inspections (EA Ultimate): use type casting where applicable

* Php Inspections (EA Ultimate): use constants where applicable

* Php Inspections (EA Ultimate): CS

* Php Inspections (EA Ultimate): address some of one-time used variables

* Php Inspections (EA Ultimate): address some of performance-related findings

* Php Inspections (EA Ultimate): address some of performance-related findings

* Php Inspections (EA Ultimate): revert a constant usage

* Php Inspections (EA Ultimate): revert sequential assignments

* Php Inspections (EA Ultimate): build is green again

* Php Inspections (EA Ultimate): revert array_merge tweaks

* Php Inspections (EA Ultimate): revert BC-incompatible one-time used variable tweak

* Update description [skip ci]

* Php Inspections (EA Ultimate): CS
2018-03-12 01:37:19 +03:00
Dmitry Naumenko
5e16c67673 Merge pull request #15797 from kalessil/master
[minor] Static code analysis
2018-03-10 15:42:48 +02:00