Releases: juliomotol/lapiv
Releases · juliomotol/lapiv
v3.2.0
v3.1.0 (2023-02-16)
Added
- Support for Laravel 10.x
v3.0.0 (2022-04-18)
Added
ApiVersioningManagerandBase Driversfor handling routing and version checking.- Support for Laravel 9.x
Changed
- Minimum requirement to PHP8
Removed
- Removed
Route::lapiv()chaining. See issue.
v2.0.0 (2021-01-09)
Added
- PHP 8 Support.
- Single action controllers via
__invoke.
Removed
- Drop Laravel >= 7 support.
- Remove
headerversioning method. - Remove
base_namespaceandbase_prefixconfig.Route::lapiv()received an overhaul and it has been decided that these configurations shouldn't be handled byRoute::lapiv()- If you want to retain the old behaviour, you'll need to modify
Route::lapiv()like so:Route::namespace('\App\Http\Controllers\Api') ->group(function () { Route::lapiv(function () { Route::get('foo', 'FooGatewayController@index'); Route::get('foo/{foo}', 'FooGatewayController@show'); }) });
v1.0.1 (2021-01-08)
Changed
- Fix version validation.
v1.0.0 (2020-09-19) - First Release!
Welcome to Lapiv!
See the documentation to get started.