8000 Release v10.0.0 · apiato/apiato · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

v10.0.0

Compare
Choose a tag to compare
@Mohammad-Alavi Mohammad-Alavi released this 25 Apr 16:53
· 25 commits to 10.x since this release

Changelog:

* These containers are installed by default in an Apiato fresh installation.

Read more about these containers here. Contributions are welcome!

  • You can now have a Helpers folder in your Container and all .php helper files will be loaded automatically by Apiato. read more.
  • All route definitions are updated to use Laravel new style: Route::get('user/profile', [Controller::class, 'getAuthenticatedUser']). You can still use the old style of course.
  • Default admin panel has been removed: admin.apiato.test
  • We are now using Laravel error handling which means all Laravel related features are now at your disposal.
  • You can now set default values while sanitizing data from request
        $sanitizedData = $data->sanitizeInput([
            'name' => 'Mohammad', // if name is not provided then default value will be set
            'product.company.address' => 'Somewhere in the world', // dot notation is also supported
            'email',
            'password'
        ]);
  • Documentations are moved to apiato.test/docs & apiato.test/docs/private. Private docs are now protected. read more
  • Removed Apiato::call & Apiato::transactionalCall
0