Andrii Pukhalevych
Andrii Pukhalevych
Please also merge it to new branches
Enhancement idea: Add @uses below each virtual property to remove "Unused element" hint on related class methods: ```
Please update readme.md with instructions how to install and run server and client
I added `"components/jquery": "3.5.*"` to project with following rule: ``` "extra": { "custom-installer": { "../js/{$name}/": ["components/jquery"] } }, ``` In this case it does not work because type of `components/jquery`...
* [x] bug * CakePHP Version: 4.2 ### What you did Code in model-less form or in table: public function validationDefault(\Cake\Validation\Validator $Validator): \Cake\Validation\Validator { return parent::validationDefault($Validator) ->requirePresence('fieldname') ; } ###...
# Bug report Version 2.7.3. installer: https://github.com/phpmetrics/PhpMetrics/releases/download/v2.7.3/phpmetrics.deb Ubuntu 18.04, 20.04 `sudo apt install ./phpmetrics.deb` produces following error: ``` Some packages could not be installed. This may mean that you have...
Bug: calling `select()`, `where()` etc on `\Cake\ElasticSearch\Query` does not have any effect after executing `all` because in `\Cake\Datasource\QueryTrait::all()` its set to return previous results if available: if ($this->_results !== null)...
Currently, `'refresh'=>true` option for `save()` and `saveMany()` causing additional elastic query `$esIndex->refresh()`. I see that it is possible to pass refresh parameter in primary request: https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html#bulk-refresh https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html#docs-update-api-query-params Should not we...
Is it possible to make `ApiResource::postToActionEndpoint()` public? Some post actions (like [Delete list member](https://mailchimp.com/developer/marketing/api/list-members/delete-list-member/)) are not implemented in the lib and and its not possible to call that actions manually
### Description When `FormProtectionComponent` is enabled with `Authentication` plugin active, calling `AuthenticationComponent::setIdentity()` in parallel requests (ajax, generated image or another tab) causes [call of `SessionAuthenticator::clearIdentity()`](https://github.com/cakephp/authentication/blob/2e62330a981a21bf38b4f762033918cde97691bc/src/Controller/Component/AuthenticationComponent.php#L290) and then `Session::renew()`. Result is...