33fde4b94a
Merge pull request #19780 from schmunk42/feature/pcntl-req-check
...
added pcntl to requirements check
2023-09-22 10:58:23 +02:00
9de65e7959
Merge branch 'yiisoft:master' into master
2023-09-22 09:06:09 +02:00
493cbc3577
Correction on dropCheck() message
2023-09-22 09:05:32 +02:00
8aa0ac69a6
Correction on dropCheck() message
2023-09-22 09:03:50 +02:00
eb2add33a4
added CHANGELOG line
2023-09-21 15:09:23 +00:00
a32617eb13
Merge branch 'master' into feature/pcntl-req-check
2023-09-21 17:04:07 +02:00
20a4b7eff9
Update bower-asset/inputmask, bower-asset/punycode.
2023-09-21 11:22:53 -03:00
f0b970d4dd
Merge branch 'master' into 13920-validation-marks-valid-field-as-invalid
2023-09-20 15:21:29 +02:00
9aac121d01
Fix #13920 : Add unit test
2023-09-20 15:15:31 +02:00
81f3033087
Merge pull request #19958 from terabytesoftw/fixed-tests
...
Fixed `CHANGELOG.md`.
2023-09-20 12:05:17 +02:00
18421ab976
Fixed tests.
2023-09-20 06:47:45 -03:00
7ae255cbd2
Merge pull request #19949 from uaoleg/patch-2
...
PHP 8.1 trim(): Passing null to parameter #1 ($string) of type string is deprecated
2023-09-20 11:31:00 +02:00
fd5c1bbf27
Update CHANGELOG.md
2023-09-20 12:27:33 +03:00
7a260f7189
Merge branch 'master' into patch-2
2023-09-19 19:11:55 +03:00
2995696db9
Added section about Unsafe Reflection in Security best practices doc ( #19948 )
...
Co-authored-by: Bizley <pawel.bizley@gmail.com>
2023-09-19 10:24:11 +02:00
5a48739c16
Merge branch 'master' into patch-2
2023-09-14 12:05:27 +02:00
30b491dfdf
removed MIME file tests ( #19951 )
...
* removed MIME file tests
see also 0f7248c7a2 (commitcomment-127223170)
* added CHANGELOG line
2023-09-13 13:23:21 +02:00
b05ad49a19
trim(): Passing null to parameter #1 ($string) of type string is deprecated
2023-09-11 19:38:41 +03:00
e8c4a7e56e
added PHP version check, fixed #19925 ( #19936 )
...
* added PHP version check, fixed #19925
* added CHANGELOG line
* fixed typo
* fixed typo
---------
Co-authored-by: Alexander Makarov <sam@rmcreative.ru>
Co-authored-by: Bizley <pawel@positive.codes>
2023-09-04 10:09:49 +02:00
671fbefe84
File Log writer without newline. ( #19941 )
...
* File Log writer without newline.
* Fix minor correction.
* Fix tests.
* Add more test.
* Add line to CHANGELOG.md.
2023-08-30 14:14:12 +02:00
a2ee22044c
prepare for next release
2023-08-29 15:36:45 +02:00
0f7248c7a2
release version 2.0.49
2.0.49
2023-08-29 15:36:17 +02:00
4ffb58ed56
Fix type ( #19939 )
2023-08-28 09:30:51 +02:00
cd774d7450
Merge branch 'master' into 13920-validation-marks-valid-field-as-invalid
2023-08-26 08:15:07 +04:00
8532622d7b
Fix #19911 : Resolved inconsistency in ActiveRecord::getAttributeLabel() with regard of overriding in primary model labels for attributes of related model in favor of allowing such overriding for all levels of relation nesting
2023-08-26 07:06:41 +04:00
d5b3b6ca83
Add note to UPGRADE guide for change in Validator behavior ( #19938 )
...
The `unique` and `exists` validators behave slightly different since
2.0.46 (issue #19407 ) when used on multiple/combined attributes.
See: https://github.com/yiisoft/yii2/issues/19407#issuecomment-1689625762
2023-08-26 05:08:16 +04:00
4c0a00f2b9
Fix #19924 : Fix yii\i18n\Formatter to not throw error Unknown named parameter under PHP 8
2023-08-21 15:55:14 +04:00
c06b62e4be
Merge branch 'master' into 13920-validation-marks-valid-field-as-invalid
2023-08-18 15:45:05 +04:00
e916e9d564
Fix #19914 : Fixed ArrayHelper::keyExists() and ::remove() functions when the key is a float and the value is null
2023-08-18 15:31:09 +04:00
786a75ca63
Fix incorrect translation in db-query-builder.md ( #19916 )
2023-08-18 15:20:46 +04:00
73f57fdcb0
Fix #19872 : Fixed the definition of dirty attributes in AR properties for a non-associative array in case of changing the order of elements
2023-08-18 15:19:24 +04:00
e40fb70fa8
Remove unnecessary type ( #19932 )
...
Because Web and Console application extend Base application there is no need to specify it.
Actually, PHPStan narrows this to _just_ BaseApplication because it is the only consistent type of the three so you lose Web and Console Application type hints.
See, https://phpstan.org/r/d21fb99f-c436-480b-99c2-32df35ec07fa
2023-08-18 15:15:39 +04:00
73902f0730
Added support for string and DateTimeInterface as Cookie::$expire ( #19920 )
...
* Added support for string as Cookie::$expire
* Updated changelog for #19920 (Broadened the accepted type of `Cookie::$expire` from `int` to `int|string|null`)
* Fixed `\yiiunit\framework\web\ResponseTest::parseHeaderCookies()` to overwrite existing cookie.
* Added support for `\DateTimeInterface` in `\yii\web\Cookie::$expire`
* Fixed `\yiiunit\framework\web\ResponseTest::cookiesTestProvider()` for PHP 5.4 and commited missing code for \DateTimeInterface processing in `\yii\web\Response::sendCookies()`
2023-08-15 18:38:10 +02:00
ad3c2f516b
Merge branch 'master' into 13920-validation-marks-valid-field-as-invalid
2023-08-10 16:24:45 +02:00
84c15dc5d1
Fix associative array cell content in Table widget ( #19908 )
...
* Fixed rendering of assosative arrays in `\yii\console\widgets\Table`
* Updated readme for #19908 (fix associative array cell content rendering in Table widget)
---------
Co-authored-by: Alexander Makarov <sam@rmcreative.ru>
2023-08-09 14:05:46 +02:00
504a66dae5
Update documentation for setCookieParams ( #19921 )
...
The link for more information about "sameSite" lead to a 404 Not Found.
2023-07-30 11:51:25 +02:00
8a213315ac
End fenced code block ( #19919 )
2023-07-28 13:13:01 +02:00
dcc0290b20
Fix #13920 : Added my name to CHANGELOG.md
2023-07-24 15:50:29 +02:00
2152c00edb
Fix #13920 : Fixed erroneous validation for specific cases
2023-07-24 15:01:57 +02:00
c8c0ea97c4
Fix #19899 : Fixed GridView in some cases calling Model::generateAttributeLabel() to generate label values that are never used
2023-07-24 11:52:38 +03:00
79c83ba7db
Fix #9899 : Fix caching a MSSQL query with BLOB data type
2023-07-24 10:03:18 +03:00
7d2e2b9e70
Fix #16208 : Fix yii\log\FileTarget to not export empty messages
2023-07-24 10:01:24 +03:00
1a0e91e912
Fix #19906 : Fixed multiline strings in the \yii\console\widgets\Table widget
2023-07-24 09:56:04 +03:00
a45382c10a
Merge branch 'yiisoft:master' into master
2023-07-17 10:25:25 +02:00
76d6345e85
Add test resetSequence() for SQLite. ( #19895 )
...
* Add test `resetSequence()`.
* add more test.
2023-07-17 09:53:21 +02:00
fbf48be33e
Merge branch 'master' into master
2023-07-11 10:07:02 +02:00
4352b8744b
Fix #19884 : Added support Enums in Query Builder
2023-07-10 18:07:10 +03:00
d135996c64
Fix #19857 : Fix AttributeTypecastBehavior::resetOldAttributes() causes "class has no attribute named" InvalidArgumentException
2023-07-10 17:30:32 +03:00
b9e5a87f54
Fix tests, clean workflows, separate db tests, use codecov for code coverage ( #19883 )
2023-07-10 07:12:07 +03:00
d94fd0f56c
Removed (for Mysql QueryBuilder) NotSupportedException() when executing addheck() and dropCheck(), resolve #19819
2023-07-05 11:54:24 +02:00