Commit graph

19528 commits

Author SHA1 Message Date
Albert Peschar
60e28a1e3e Handle error suppression in ConsoleErrorHandler 2022-03-02 15:58:32 +02:00
Kamil Wylegala
c276f027eb
Update README.md 2022-01-31 19:11:33 +01:00
Kamil Wylegala
527ace3951
Merge pull request #12 from apeschar/folder-array-values
Use array_values to avoid named parameters error in Folder.php
2022-01-31 19:08:29 +01:00
Albert Peschar
d9247a0832 Use array_values to avoid named parameters error 2022-01-31 17:02:07 +00:00
Kamil Wylegala
5bb14f0c60
Update README.md 2022-01-16 17:56:37 +01:00
Kamil Wylegala
79104b933d
Merge pull request #11 from josemv92/fix-shell
runCommand $command as string
2022-01-16 17:55:35 +01:00
José Muñoz
3719cce178 runCommand $command as string
Sets typehint for runCommand argument as string.

Fixes original default behavior to send string $command rather than null.
2022-01-16 07:47:57 -07:00
Kamil Wylegala
e946ab071d More explicit readme file. 2022-01-15 23:08:43 +01:00
Kamil Wylegala
7302598222 Fixed deprecation notice: numeric prefix cannot be null in http_build_query. 2022-01-04 23:08:45 +01:00
Kamil Wylegala
a908a13f96
Update README.md 2022-01-04 19:54:06 +01:00
Kamil Wylegala
300f245160
Merge pull request #8 from kamilwylegala/fix-notices
Fix notices
2022-01-04 19:52:19 +01:00
Kamil Wylegala
b9630655d8 Fixed deprecation notice strupper in DboSource 2022-01-04 18:49:06 +01:00
Kamil Wylegala
08f228f02a Fixed deprecation notice about 'preg_match(): Passing null to parameter #2 () of type string is deprecated' 2022-01-04 17:16:07 +01:00
Kamil Wylegala
ef0e0a7175 Fixed: "strtoupper(): Passing null to parameter #1 ($string) of type string is deprecated" 2022-01-04 16:55:02 +01:00
Kamil Wylegala
d83997f849 Fixed 'Automatic conversion of false to array is deprecated'. 2022-01-04 16:45:09 +01:00
Kamil Wylegala
c9a03168d8
Update README.md 2021-12-22 12:04:52 +01:00
Kamil Wylegala
58e843e981 Readme update. 2021-12-20 23:32:50 +01:00
Kamil Wylegala
257f639606
Merge pull request #6 from kamilwylegala/3-deprecation-countable
Fixed deprecation notice in PHP 8.1: Countable #3
2021-12-20 23:25:45 +01:00
Kamil Wylegala
ad33741e0d Fixed deprecation notice in PHP 8.1: Countable #3 2021-12-20 23:23:30 +01:00
Kamil Wylegala
bfe52deb9e
Merge pull request #5 from kamilwylegala/2-iterator-aggregate
Fixed deprecation notice in PHP 8.1: IteratorAggregate
2021-12-20 23:21:46 +01:00
Kamil Wylegala
bd3aac5001 Fixed deprecation notice in PHP 8.1: IteratorAggregate 2021-12-20 23:20:05 +01:00
Kamil Wylegala
e78874b3e3
Merge pull request #4 from kamilwylegala/1-fix-deprecation-notices
Fixed deprecation notices in PHP 8.1: ArrayAccess
2021-12-20 23:15:01 +01:00
Kamil Wylegala
61e4ef05c8 Fixed implementations of ArrayAccess to reduce deprecation notices in PHP 8.1 #1 2021-12-20 23:09:51 +01:00
Kamil Wylegala
e9ef6fb7e3 Fork README update. 2021-02-24 23:54:42 +01:00
Kamil Wylegala
20419bd82b PHP8: ErrorHandler fixed accordingly to migration guide. 2021-02-24 23:08:03 +01:00
Kamil Wylegala
3b999b74b9 Allow PHP8 in composer.json 2021-02-16 20:34:45 +01:00
Mark Story
cf14e6546e Bump version 2020-12-15 21:47:53 -05:00
Mark Story
1c27b82b49
Merge pull request #15181 from cakephp/fix-15163
Fix incorrect URL generation
2020-11-30 10:38:21 -05:00
Mark Story
da9f6991c5
Merge pull request #15154 from mfn/mfn-php8-compat
[2.x] php-8.0-compat: fix "Error: Unknown named parameter $subject"
2020-11-28 13:49:09 -05:00
Mark Story
f89e145917 Fix lint error. 2020-11-27 10:31:33 -05:00
Mark Story
63d708118a Fix incorrect URL generation
When a fullBaseURL is being used we should check for the exact base
string being a prefix and not just the string length as it could be full
of garbage.

Fixes #15163
2020-11-19 22:47:52 -05:00
Markus Podar
d201312a0e
php-8.0-compat: fix "Error: Unknown named parameter $subject"
PHP 8 added support for named parameters however will throw an error when
a named parameter, which does not exist, will be called/appears.

In this case the code uses `array_filter(compact('subject))` to conveniently
prepend `$subject` to the callback, if it's non-null.

It's then combined with `$params` but mixing a hash wih a sequential array
and then end result is `['subject' => …, ]` which then triggers this
TypeError in PHP 8.

The solution applies `array_values()` on above array as to remove the keys
and then the error disappears.

With this change, our internal test suite (2k tests) is green on both PHP8
and PHP7.4, aka this change is expecte to be backwards compatible.
2020-11-12 17:30:04 +01:00
Mark Story
b07bba4d4f Set max PHP version.
We won't be supporting PHP8 in 2.x. Several of our dependencies are not
compatible and upgrading them would also require breaking change in
CakePHP. Folks needing PHP8 support will need to upgrade to 4.x
2020-10-24 20:48:23 -04:00
Mark Story
89e23927cd
Merge pull request #15087 from martinstuecklschwaiger/2.x
Make TestShell compatible with PHP 7.4
2020-10-21 17:23:14 -04:00
Martin Stuecklschwaiger
bb58933691 Make TestShell compatible with PHP 7.4 2020-10-21 17:48:23 +00:00
Mark Story
af9089cbfe
Merge pull request #14949 from gemal/2.x
add fo-fo
2020-09-01 21:30:57 -04:00
Henrik Gemal
3f0d42502d add fo-fo 2020-09-01 13:28:14 +02:00
Mark Story
5bc68fc9ec
Merge pull request #14725 from cakephp/issue-14720
Fix SchemaShell configuration change.
2020-06-19 16:20:12 -04:00
mark_story
931d3a8626 Fix SchemaShell configuration change.
Comparisons are done with === true. This fixes the set operation.

Fixes #14720
2020-06-18 21:13:41 -04:00
Mark Story
a9b8c6b60f
Merge pull request #14718 from yjerem/fix-implode-argument-order
[2.x] Fix deprecated argument order in calls to implode()
2020-06-17 16:26:37 -04:00
Jeremy Ruten
e90e4716ec Fix deprecated argument order in calls to implode() 2020-06-17 11:44:23 -06:00
mark_story
d0c51b3742 Update version number to 2.10.22 2020-06-06 22:16:36 -04:00
andrii-pukhalevych
8addcf1fa3
Microoptimization for ServerRequest::is() and ServerRequest::isAll() (#14654) 2020-05-31 22:43:58 +05:30
Mark Story
9a7c94bad0
Merge pull request #14624 from cakephp/othercorey-patch-1
Use random_int with PHP 7
2020-05-23 21:21:57 -04:00
othercorey
01d5d039f3
Use random_int with PHP 7 2020-05-23 11:12:46 -05:00
Mark Story
59e12788fc
Merge pull request #14622 from RichieB2B/ncsc-nl/uuid
Generate truly random uuid() for Cake 2.x
2020-05-23 12:06:06 -04:00
Richard van den Berg
63c01dfbab Generate truly random uuid() 2020-05-23 15:38:41 +02:00
Mark Sch
a4bd6c40cc
Merge pull request #14619 from bancer/patch-19
Improve php doc block in HtmlHelper.php
2020-05-22 15:21:41 +02:00
Val Bancer
2d4f80bf66
Improve php doc block in HtmlHelper.php 2020-05-22 13:48:26 +02:00
mark_story
ab7eb46f20 Update version number to 2.10.21 2020-05-17 20:31:14 -04:00