Skip to content

Releases: Tiloweb/SymfonyPaginationBundle

v1.6.4

03 Apr 13:26
016224d

Choose a tag to compare

What's Changed

  • "Symfony\Component\HttpKernel\DependencyInjection\Extension" class is considered internal since Symfony 7.1, to be deprecated in 8.1 by @waschinski in #12

New Contributors

Full Changelog: v1.6.3...v1.6.4

PHP strict returns

12 Jun 08:47
391bdf5

Choose a tag to compare

Add PHP Strict returns in order to avoid deprecation on Symfony 6.3

What's Changed

Full Changelog: v1.6.2...v1.6.3

remove deprecation

18 Jan 10:44
9716d87

Choose a tag to compare

Merge pull request #10 from Tiloweb/deprecation

Remove Deprecation messages

Handle return type for Symfony 6.0

08 Jun 13:56
a1ecd84

Choose a tag to compare

v1.6.1

Update Configuration.php

Paginator helper

27 Apr 14:04
e7631ca

Choose a tag to compare

You can now use the paginator shortcut to paginate your QueryBuilder in your Repositories :

public function paginate(int $page = 1): Paginator {
    $dql = $this->createQueryBuilder('retail');

    $dql->orderBy('retail.label');

    return Tiloweb\PaginationBundle\Pagination::paginate($dql, $page, 10);
}

Retrocompatibility

10 Jul 08:07
a3aff85

Choose a tag to compare

Symfony 5.0

19 Feb 10:53
c08e4b4

Choose a tag to compare

v1.5

Update PaginationExtension.php

bugfix

06 Jan 18:04
6d10fe3

Choose a tag to compare

v1.4.6

Update Configuration.php

Symfony 5.0

06 Jan 17:59
19620c2

Choose a tag to compare

v1.4.5

Update to Symfony 5.0

bugfix

07 Jun 13:30
130a044

Choose a tag to compare

1.4.4

Update PaginationExtension.php