|
8 | 8 |
|
9 | 9 | ### [Unreleased]
|
10 | 10 |
|
| 11 | +### [v9.19.0] - 2022-01-18 |
| 12 | + |
| 13 | +- Support for Laravel 9 #2727 |
| 14 | +- Don't trash the exception stack trace (#2714) #2724 |
| 15 | + |
| 16 | +### [v9.18.2] - 2021-06-28 |
| 17 | + |
| 18 | +- Return empty string for null request keyword #2700 |
| 19 | + |
| 20 | +### [v9.18.1] - 2021-06-28 |
| 21 | + |
| 22 | +- Query with subqueries exception fix. #2642 |
| 23 | + |
| 24 | +### [v9.18.0] - 2021-04-16 |
| 25 | + |
| 26 | +- Improve count performance for simple queries. #2616 |
| 27 | +- Fixes #1928 |
| 28 | +- Make prepareCountQuery() public so its easy to test. |
| 29 | + |
| 30 | +### [v9.17.4] - 2021-04-15 |
| 31 | + |
| 32 | +- Revert changes on count. #2614 |
| 33 | +- Fix #2613 |
| 34 | +- Reverts: #2611 and #2612 |
| 35 | + |
| 36 | +### [v9.17.3] - 2021-04-14 |
| 37 | + |
| 38 | +- Fix the regression when using a having condition in a query. #2612 |
| 39 | +- Fix #1928 |
| 40 | +- Code cleanup in QueryDataTable class #2606 |
| 41 | + |
| 42 | +### [v9.17.2] - 2021-04-12 |
| 43 | + |
| 44 | +- Remove unnecessary wrap to avoid performance issues #2608. |
| 45 | +- Fixes #1928. |
| 46 | + |
| 47 | +### [v9.17.1] - 2021-03-23 |
| 48 | + |
| 49 | +- Fix morph relation support with multi level relations. #2588 #2590 |
| 50 | +- Fix tests and doc blocks. #2586 |
| 51 | +- Fixes #2587, #2589, #2580 |
| 52 | + |
| 53 | +### [v9.17.0] - 2021-03-19 |
| 54 | + |
| 55 | +- feat(relations): add partial polymorphic support [#2580] |
| 56 | + |
| 57 | +### [v9.16.0] - 2021-03-19 |
| 58 | + |
| 59 | +- Add set multi term on runtime [#2585] |
| 60 | + |
| 61 | +### [v9.15.2] - 2020-12-04 |
| 62 | + |
| 63 | +- Remove raw sql when using regex and wrap the column name. |
| 64 | + |
| 65 | +### [v9.15.1] - 2020-12-03 |
| 66 | + |
| 67 | +- Fix search pane builder instance when using eloquent. [#2540] |
| 68 | + |
| 69 | +### [v9.15.0] - 2020-11-28 |
| 70 | + |
| 71 | +- PHP8 support [#2536] |
| 72 | + |
| 73 | +### [v9.14.2] - 2020-11-27 |
| 74 | + |
| 75 | +- Fix PHP8 error, method exists now throws an exception if the first argument is not string|object [#2535] |
| 76 | +- Fixes [#2534] |
| 77 | + |
| 78 | +### [v9.14.1] - 2020-11-11 |
| 79 | + |
| 80 | +- Fix resolution of custom search pane query builder. [#2513] |
| 81 | + |
| 82 | +### [v9.14.0] - 2020-11-03 |
| 83 | + |
| 84 | +- Add column formatter. [#2193] |
| 85 | +- Fix [yajra/laravel-datatables-editor#33](https://github.com/yajra/laravel-datatables-editor/issues/33) |
| 86 | + |
| 87 | +### [v9.13.0] - 2020-10-31 |
| 88 | + |
| 89 | +- Add support for search panes. [#2475] |
| 90 | +- Fix [#2463], [#2471] |
| 91 | + |
| 92 | +### [v9.12.0] - 2020-10-31 |
| 93 | + |
| 94 | +- Add disable ordering via orderColumn. [#2481], credits to [@gredimano] |
| 95 | +- Fix [#1953] |
| 96 | + |
| 97 | +### [v9.11.1] - 2020-10-06 |
| 98 | + |
| 99 | +- Use simple numeric sorting when dealing with numeric values [#2478], credits to [@miken32] |
| 100 | +- Fix [#1934]. |
| 101 | + |
| 102 | +### [v9.11.0] - 2020-09-09 |
| 103 | + |
| 104 | +- Add support for Laravel 8. [#2457] by [@lloricode] |
| 105 | + |
| 106 | +### [v9.10.2] - 2020-06-17 |
| 107 | + |
| 108 | +- Escape row in data processor also accepts Htmlable [#2414], credits to [@edwwaarrdd]. |
| 109 | + |
| 110 | +### [v9.10.1] - 2020-05-30 |
| 111 | + |
| 112 | +- Fix type casting issue [#2399], credits to [@ehsanrasta]. |
| 113 | +- Fix [#1975] , [#1747]. |
| 114 | +- Fix issue with non-existing variables/attributes on Collection. [#2391], credits to [@mgralikowski]. |
| 115 | +- Add laravel missing versions on every docs [#2382], credits to [@lloricode]. |
| 116 | + |
11 | 117 | ### [v9.10.0] - 2020-04-23
|
12 | 118 |
|
13 | 119 | - Add support for HasOneThrough [#2368], credits to [@warlof]
|
@@ -374,7 +480,29 @@ return (new CollectionDataTable(User::all())->toJson();
|
374 | 480 | - Fix orderColumn api where related tables are not joined.
|
375 | 481 | - Fix nested with relation search and sort function.
|
376 | 482 |
|
377 |
| -[Unreleased]: https://github.com/yajra/laravel-datatables/compare/v9.10.0...9.0 |
| 483 | +[Unreleased]: https://github.com/yajra/laravel-datatables/compare/v9.19.0...9.0 |
| 484 | +[v9.19.0]: https://github.com/yajra/laravel-datatables/compare/v9.18.2...v9.19.0 |
| 485 | +[v9.18.2]: https://github.com/yajra/laravel-datatables/compare/v9.18.1...v9.18.2 |
| 486 | +[v9.18.1]: https://github.com/yajra/laravel-datatables/compare/v9.18.0...v9.18.1 |
| 487 | +[v9.18.0]: https://github.com/yajra/laravel-datatables/compare/v9.17.4...v9.18.0 |
| 488 | +[v9.17.4]: https://github.com/yajra/laravel-datatables/compare/v9.17.3...v9.17.4 |
| 489 | +[v9.17.3]: https://github.com/yajra/laravel-datatables/compare/v9.17.2...v9.17.3 |
| 490 | +[v9.17.2]: https://github.com/yajra/laravel-datatables/compare/v9.17.1...v9.17.2 |
| 491 | +[v9.17.1]: https://github.com/yajra/laravel-datatables/compare/v9.17.0...v9.17.1 |
| 492 | +[v9.17.0]: https://github.com/yajra/laravel-datatables/compare/v9.16.0...v9.17.0 |
| 493 | +[v9.16.0]: https://github.com/yajra/laravel-datatables/compare/v9.15.2...v9.16.0 |
| 494 | +[v9.15.2]: https://github.com/yajra/laravel-datatables/compare/v9.15.1...v9.15.2 |
| 495 | +[v9.15.1]: https://github.com/yajra/laravel-datatables/compare/v9.15.0...v9.15.1 |
| 496 | +[v9.15.0]: https://github.com/yajra/laravel-datatables/compare/v9.14.2...v9.15.0 |
| 497 | +[v9.14.2]: https://github.com/yajra/laravel-datatables/compare/v9.14.1...v9.14.2 |
| 498 | +[v9.14.1]: https://github.com/yajra/laravel-datatables/compare/v9.14.0...v9.14.1 |
| 499 | +[v9.14.0]: https://github.com/yajra/laravel-datatables/compare/v9.13.0...v9.14.0 |
| 500 | +[v9.13.0]: https://github.com/yajra/laravel-datatables/compare/v9.12.0...v9.13.0 |
| 501 | +[v9.12.0]: https://github.com/yajra/laravel-datatables/compare/v9.11.1...v9.12.0 |
| 502 | +[v9.11.1]: https://github.com/yajra/laravel-datatables/compare/v9.11.0...v9.11.1 |
| 503 | +[v9.11.0]: https://github.com/yajra/laravel-datatables/compare/v9.10.2...v9.11.0 |
| 504 | +[v9.10.2]: https://github.com/yajra/laravel-datatables/compare/v9.10.1...v9.10.2 |
| 505 | +[v9.10.1]: https://github.com/yajra/laravel-datatables/compare/v9.10.0...v9.10.1 |
378 | 506 | [v9.10.0]: https://github.com/yajra/laravel-datatables/compare/v9.9.0...v9.10.0
|
379 | 507 | [v9.9.0]: https://github.com/yajra/laravel-datatables/compare/v9.8.0...v9.9.0
|
380 | 508 | [v9.8.0]: https://github.com/yajra/laravel-datatables/compare/v9.7.2...v9.8.0
|
@@ -508,7 +636,22 @@ return (new CollectionDataTable(User::all())->toJson();
|
508 | 636 | [#2263]: https://github.com/yajra/laravel-datatables/pull/2263
|
509 | 637 | [#2332]: https://github.com/yajra/laravel-datatables/pull/2332
|
510 | 638 | [#2368]: https://github.com/yajra/laravel-datatables/pull/2368
|
511 |
| - |
| 639 | +[#2399]: https://github.com/yajra/laravel-datatables/pull/2399 |
| 640 | +[#2391]: https://github.com/yajra/laravel-datatables/pull/2391 |
| 641 | +[#2382]: https://github.com/yajra/laravel-datatables/pull/2382 |
| 642 | +[#2414]: https://github.com/yajra/laravel-datatables/pull/2414 |
| 643 | +[#2478]: https://github.com/yajra/laravel-datatables/pull/2478 |
| 644 | +[#2481]: https://github.com/yajra/laravel-datatables/pull/2481 |
| 645 | +[#2475]: https://github.com/yajra/laravel-datatables/pull/2475 |
| 646 | +[#2193]: https://github.com/yajra/laravel-datatables/pull/2193 |
| 647 | +[#2513]: https://github.com/yajra/laravel-datatables/pull/2513 |
| 648 | +[#2535]: https://github.com/yajra/laravel-datatables/pull/2535 |
| 649 | +[#2536]: https://github.com/yajra/laravel-datatables/pull/2536 |
| 650 | +[#2540]: https://github.com/yajra/laravel-datatables/pull/2540 |
| 651 | +[#2585]: https://github.com/yajra/laravel-datatables/pull/2585 |
| 652 | +[#2580]: https://github.com/yajra/laravel-datatables/pull/2580 |
| 653 | + |
| 654 | +[#1934]: https://github.com/yajra/laravel-datatables/issues/1934 |
512 | 655 | [#2091]: https://github.com/yajra/laravel-datatables/issues/2091
|
513 | 656 | [#2058]: https://github.com/yajra/laravel-datatables/issues/2058
|
514 | 657 | [#1626]: https://github.com/yajra/laravel-datatables/issues/1626
|
@@ -545,6 +688,12 @@ return (new CollectionDataTable(User::all())->toJson();
|
545 | 688 | [#1822]: https://github.com/yajra/laravel-datatables/issues/1822
|
546 | 689 | [#1738]: https://github.com/yajra/laravel-datatables/issues/1738
|
547 | 690 | [#2202]: https://github.com/yajra/laravel-datatables/issues/2202
|
| 691 | +[#1975]: https://github.com/yajra/laravel-datatables/issues/1975 |
| 692 | +[#1747]: https://github.com/yajra/laravel-datatables/issues/1747 |
| 693 | +[#1953]: https://github.com/yajra/laravel-datatables/issues/1953 |
| 694 | +[#2463]: https://github.com/yajra/laravel-datatables/issues/2463 |
| 695 | +[#2471]: https://github.com/yajra/laravel-datatables/issues/2471 |
| 696 | +[#2534]: https://github.com/yajra/laravel-datatables/issues/2534 |
548 | 697 |
|
549 | 698 | [laravel-datatables-fractal]: https://github.com/yajra/laravel-datatables-fractal
|
550 | 699 |
|
@@ -583,3 +732,8 @@ return (new CollectionDataTable(User::all())->toJson();
|
583 | 732 | [@imTigger]: https://github.com/imTigger
|
584 | 733 | [@barryvdh]: https://github.com/barryvdh
|
585 | 734 | [@warlof]: https://github.com/warlof
|
| 735 | +[@ehsanrasta]: https://github.com/ehsanrasta |
| 736 | +[@mgralikowski]: https://github.com/mgralikowski |
| 737 | +[@edwwaarrdd]: https://github.com/edwwaarrdd |
| 738 | +[@miken32]: https://github.com/miken32 |
| 739 | +[@gredimano]: https://github.com/gredimano |
0 commit comments