Releases: ericsizemore/pagination
Releases · ericsizemore/pagination
v2.0.2
[2.0.2] - 2024-09-26
Mostly small coding standard (CS) related changes, with some improvements to method docblocks throughout.
Added
- Added codecov.io into workflow.
- Added issue templates and a pull request template.
- Added
backward-compatibility.md
for my backwards compatibility promise. - Added/updated Contributing information in
CONTRIBUTING.md
- Added a Contributor Code of Conduct in
CODE_OF_CONDUCT.md
- Added new dev dependencies:
vimeo/psalm
andpsalm/plugin-phpunit
. - Added new workflow
psalm.yml
.
Changed
- Bumped version to
2.0.2
. - Updated
composer.lock
- Updated dev-dependencies.
- Updated the header docblock in source files to be more compact, reduce filesize.
- Updated coding standards via PHP-CS-Fixer and applied changes to source files.
Fixed
- Fixed code throughout per Psalm's reports.
Full Changelog: v2.0.1...v2.0.2
v2.0.1
2.0.1 (2024-03-02)
Mostly small coding standard (CS) related changes, with some improvements to method docblocks throughout.
Changed
- Bumped version to
2.0.1
. - Small change to how
$pagesInRange
withinpaginate()
is determined. - (CS) Rearranged the order of methods within
Paginator
andPaginatorInterface
. - Made the following helper functions static:
determinePageRange()
determinePreviousPageNumber()
determineNextPageNumber()
- Updated
composer.lock
Added
- Added validation to
Paginator
's construct for the passed$config
parameter.- Uses a new helper function
validateConfig()
, which is a static protected method.
- Uses a new helper function
- Added some documentation/docblocks throughout, mostly to the
PaginatorInterface
. - Added
ext-pdo
andext-pdo_sqlite
to the composer require-dev. - Added the
Override
attribute toPaginator
methods that are fromPaginatorInterface
.
Removed
- None
Full Changelog: v2.0.0...v2.0.1
v2.0.0
2.0.0 (2024-02-28)
Forked from ashleydawson/simple-pagination
v1.0.8.
Changed
- Updated project namespaces to
Esi\Pagination
.lib
folder renamed tosrc
- Refactored the
Paginator::paginate()
function to reduce it's complexity. Uses new helper functions. - Updated composer.json
- Bumped minimum PHP version to 8.2
- Autoloading should follow PSR-4
- Updated PHPUnit to 11.0+
- Updated unit tests, line coverage should now be 100%.
- Cleaned up code and refactored to use newer PHP 8 features / conventions.
- Should now adhere to PER and PSR-12 as well.
- Now passes PHPStan using level 9 w/strict rules
- Updated README.md
Added
- Helper functions to simplify the
Paginator::paginate()
function. Note: these have protected access.prepareBeforeQueryCallback()
- Handles either returning the beforeQueryCallback, or returning an empty \Closure.prepareAfterQueryCallback()
- Handles either returning the afterQueryCallback, or returning an empty \Closure.determinePageRange()
- Given$currentPageNumber
,$pagesInRange
, and$numberOfPages
, returns an array of pages.determinePreviousPageNumber()
determineNextPageNumber()
- dev-dependencies for PHP-CS-Fixer and PHPStan (w/extensions for phpunit, strict rules)
- Imports for all used functions, constants, and class names.
- Github workflows for testing and static analysis.
- Testing for DB related items (using SQLite via PDO and the
factbook.db
) - CHANGELOG.md, SECURITY.md
Removed
- N/A
TODO/WIP
- Documentation improvements.