Skip to content

Commit

Permalink
Bump v9.0.0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
yajra committed Feb 27, 2019
1 parent eef9edc commit bbc9943
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Expand Up @@ -8,6 +8,14 @@

### [Unreleased]

### [v9.0.0] - 2019-02-27

- Add support for Laravel 5.8 [#2002].
- Fix [#2001], [#2003].
- Drop support for lower version of dataTables.
- Bump to php ^7.1.3.
- Bump testbench to ^3.8.

### [v8.13.5] - 2019-02-13

- Keep select bindings option. [#1988], credits to [@royduin].
Expand Down Expand Up @@ -286,7 +294,8 @@ return (new CollectionDataTable(User::all())->toJson();
- Fix orderColumn api where related tables are not joined.
- Fix nested with relation search and sort function.

[Unreleased]: https://github.com/yajra/laravel-datatables/compare/v8.13.5...8.0
[Unreleased]: https://github.com/yajra/laravel-datatables/compare/v9.0.0...9.0
[v9.0.0]: https://github.com/yajra/laravel-datatables/compare/v8.13.5...v9.0.0
[v8.13.5]: https://github.com/yajra/laravel-datatables/compare/v8.13.4...v8.13.5
[v8.13.4]: https://github.com/yajra/laravel-datatables/compare/v8.13.3...v8.13.4
[v8.13.3]: https://github.com/yajra/laravel-datatables/compare/v8.13.2...v8.13.3
Expand Down Expand Up @@ -380,6 +389,8 @@ return (new CollectionDataTable(User::all())->toJson();
[#1942]: https://github.com/yajra/laravel-datatables/pull/1942
[#1960]: https://github.com/yajra/laravel-datatables/pull/1960
[#1988]: https://github.com/yajra/laravel-datatables/pull/1988
[#2001]: https://github.com/yajra/laravel-datatables/pull/2001
[#2002]: https://github.com/yajra/laravel-datatables/pull/2002

[#1626]: https://github.com/yajra/laravel-datatables/issues/1626
[#1617]: https://github.com/yajra/laravel-datatables/issues/1617
Expand All @@ -402,6 +413,7 @@ return (new CollectionDataTable(User::all())->toJson();
[#1747]: https://github.com/yajra/laravel-datatables/issues/1747
[#1951]: https://github.com/yajra/laravel-datatables/issues/1951
[#1983]: https://github.com/yajra/laravel-datatables/issues/1983
[#2003]: https://github.com/yajra/laravel-datatables/issues/2003

[laravel-datatables-fractal]: https://github.com/yajra/laravel-datatables-fractal

Expand Down
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -52,14 +52,15 @@ return datatables(User::all())->toJson();
5.5.x | 8.x
5.6.x | 8.x
5.7.x | 8.x
5.8.x | 9.x

## DataTables 8.x Upgrade Guide
There are breaking changes since DataTables v8.x.
If you are upgrading from v7.x to v8.x, please see [upgrade guide](https://yajrabox.com/docs/laravel-datatables/master/upgrade).

## Quick Installation
```bash
$ composer require yajra/laravel-datatables-oracle:"~8.0"
$ composer require yajra/laravel-datatables-oracle:"~9.0"
```

#### Service Provider & Facade (Optional on Laravel 5.5)
Expand Down Expand Up @@ -89,7 +90,7 @@ To enable debugging mode, just set `APP_DEBUG=true` and the package will include
**IMPORTANT:** Please make sure that APP_DEBUG is set to false when your app is on production.

## PHP ARTISAN SERVE BUG
Please avoid using `php artisan serve` when developing with the package.
Please avoid using `php artisan serve` when developing with the package.
There are known bugs when using this where Laravel randomly returns a redirect and 401 (Unauthorized) if the route requires authentication and a 404 NotFoundHttpException on valid routes.

It is advised to use [Homestead](https://laravel.com/docs/5.4/homestead) or [Valet](https://laravel.com/docs/5.4/valet) when working with the package.
Expand Down

0 comments on commit bbc9943

Please sign in to comment.