All Versions
23
Latest Version
Avg Release Cycle
102 days
Latest Release
1879 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v0.11.0 Changes
December 10, 2014โ Added
- โ Added
League\Fractal\Pagination\PagerfantaPaginatorAdapter
to support [Pagerfanta] - โ Added
League\Fractal\Pagination\ZendFrameworkPaginatorAdapter
to support [Zend Framework Paginator]
๐ Fixed
- Now JSON-API linked items will be unique based on their ID Issue #126
๐ฆ [Pagerfanta]: https://packagist.org/packages/pagerfanta/pagerfanta ๐ฆ [Zend Framework Paginator]: https://packagist.org/packages/zendframework/zend-paginator
- โ Added
-
v0.10.0 Changes
October 17, 2014โ Added
- โ Added
ParamBag
to replace the array passed to includes. It implements array access so keep using it as you were, or play with the new methods.
๐ Fixed
- โ Removed
PaginatorInterface::getPaginator()
as it was used anymore. Issue #101 Manager::createData()
argument 1 now hints againstResourceInterface
notResourceAbstract
.
- โ Added
-
v0.9.1 Changes
July 06, 2014๐ Fixed
- Using ArraySerializer without a resource key would lead to an empty string as a key in JSON. Issue #78
-
v0.9.0 Changes
July 06, 2014โ Added
- Implemented serializer methods for item and collection separately Issue #71
-
v0.8.3 Changes
June 14, 2014โ Added
- 0๏ธโฃ Default Includes no longer need to be in Available Includes. Issue #58
-
v0.8.2 Changes
June 09, 2014๐ Fixed
- ๐ A
null
value forManager::parseIncludes()
could have weird results
- ๐ A
-
v0.8.1 Changes
June 05, 2014โ Added
- ๐ Make
ResourceAbstract
implementResourceInterface
๐ Fixed
- ๐ Fixed tests for Laravel 4.2 usage
- ๐ Make
-
v0.8.0 Changes
May 27, 2014โ Added
- โ Added Serializers with ArraySerializer, DataArraySerializer (default) and a provisional JsonApiSerializer. See Issue #47
- โ Added
ResourceAbstract::setMeta('foo', mixed)
to allow custom meta data - ๐ Replaced
Manager::setRequestedScopes()
withManager::parseIncludes('foo,bar')
which can be an array or CSV string. It can also take "Smart Syntax" such asManager::parseIncludes('bars:limit(5|1):order(-something)')
, which can come from a URL query param:/foo?include=bars:limit(5|1):order(-something)
- Made all pagination (paginators and cursors) use meta output logic, so it sits with your custom meta data
- ๐ Moved
League\Fractal\Cursor\Cursor
andLeague\Fractal\Cursor\CursorInterface
intoLeague\Fractal\Pagination
-
v0.7.0 Changes
February 01, 2014โ Added
- โ Added Cursor, as a different approach to paginating large data sets
- Switched from PSR-0 to PSR-4
-
v0.6.0 Changes
December 27, 2013โ Added
- โ Adds a
PaginatorInterface
, with aIlluminatePaginatorAdapter
to let Fractal be framework agnostic
- โ Adds a