Merge branch 'master' into 13920-validation-marks-valid-field-as-invalid

This commit is contained in:
Tim Fischer
2023-09-25 13:27:18 +02:00
committed by GitHub
5 changed files with 177 additions and 181 deletions

View File

@ -9,7 +9,7 @@ Yii Framework 2 Change Log
- Bug #19940: File Log writer without newline (terabytesoftw)
- Bug #19951: Removed unneeded MIME file tests (schmunk42)
- Bug #19950: Fix `Query::groupBy(null)` causes error for PHP 8.1: `trim(): Passing null to parameter #1 ($string) of type string is deprecated` (uaoleg)
- Enh #19780: added pcntl to requirements check (schmunk42)
2.0.49 August 29, 2023
----------------------

View File

@ -71,8 +71,8 @@
"ezyang/htmlpurifier": "^4.6",
"cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
"bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
"bower-asset/inputmask": "~3.2.2 | ~3.3.5",
"bower-asset/punycode": "1.3.*",
"bower-asset/inputmask": "~3.2.2 | ~3.3.5 | ~5.0.8 ",
"bower-asset/punycode": "1.3.* | 2.2.*",
"bower-asset/yii2-pjax": "~2.0.1",
"paragonie/random_compat": ">=1"
},

View File

@ -111,5 +111,12 @@ return array(
'memo' => 'When <a href="https://www.yiiframework.com/doc-2.0/yii-validators-ipvalidator.html#$expandIPv6-detail">IpValidator::expandIPv6</a>
property is set to <code>true</code>, PHP must support IPv6 protocol stack. Currently PHP constant <code>AF_INET6</code> is not defined
and IPv6 is probably unsupported.'
),
array(
'name' => 'pcntl',
'mandatory' => false,
'condition' => extension_loaded('pcntl'),
'by' => '<a href="https://www.php.net/manual/de/book.pcntl.php">Process Control</a>',
'memo' => 'Recommended for yii2-queue CLI operations'
)
);