Releases: bedita/web-tools
Releases · bedita/web-tools
Release 3.5.0
Main changes:
- cache system for ThumbHelper: load a media directly from cache when cached, loaded through the API call otherwise
Release 3.4.0
Main changes:
- new
ApiFormatterComponent
withembedIncluded()
method to embed included data into relationships response section
Relese 1.6.0
Main changes:
- new
ApiFormatterComponent
withembedIncluded()
method to embed included data into relationships response section
Release 3.3.0
Upgrade to CakePHP 4.2.*
Release 3.2.0
Main changes are:
ApiProxyTrait
now handle POST, PATCH and DELETE requests too
To activate it you need to add routing rules to your app, for example
$routes->scope('/api', ['_namePrefix' => 'api:'], function (RouteBuilder $routes) {
$routes->get('/**', ['controller' => 'Api', 'action' => 'get'], 'get');
$routes->post('/**', ['controller' => 'Api', 'action' => 'post'], 'post');
$routes->patch('/**', ['controller' => 'Api', 'action' => 'patch'], 'patch');
$routes->delete('/**', ['controller' => 'Api', 'action' => 'delete'], 'delete');
});
Release 2.5.0
Backport of ApiProxyTrait for handling POST, PATCH, DELETE requests. See Release 3.2.0
Release 1.5.0
Backport of ApiProxyTrait
for handling POST, PATCH, DELETE requests. See Release 3.2.0
Release 3.1.4
update php-sdk dependency
Release 2.4.3
update php-sdk dependency
Release 1.4.3
update php-sdk dependency