Dataloader Php Versions Save

DataLoaderPhp is a generic utility to be used as part of your application's data fetching layer to provide a simplified and consistent API over various remote data sources such as databases or web services via batching and caching.

v1.0.0

8 months ago

What's Changed

Full Changelog: https://github.com/overblog/dataloader-php/compare/v0.7.0...v1.0.0

v0.7.0

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/overblog/dataloader-php/compare/v0.6.0...v0.7.0

v0.6.0

3 years ago

v0.6.0 (2021-01-13)

  • Add PHP8 support by @vhenzl (#41)
  • Throw/Unwrap PHP7 \Error in await() by @jpastoor (#38)

v0.5.3

5 years ago

v0.5.3 (2018-12-15)

  • Fix memory leak by unset cancellers (#28)
  • Optimized CacheMap

v0.5.2

6 years ago

v0.5.2 (2017-08-18)

  • Fix nested loaders using webonyx adapter (#16) (requires webonyx/graphql#0.9.14)

v0.5.1

7 years ago

v0.5.1 (2017-02-17)

Fixed ignored instances when added during await() (#14 thank you @OwlyCode)

This reproduces the fix of #8 for the new await() of the 0.5.0 version.

v0.5.0

7 years ago

v0.5.0 (2017-02-15)

Optimize DataLoader::await method (#13):

DataLoader::await first tries to get the fulfilled value or the rejected reason directly from the promise otherwise calls promise adapter await to complete promise. Now DataLoader::await will not throw "no active dataLoader instance" exception when Promise entry is null.

v0.4.0

7 years ago

v0.4.0 (2017-02-09)

  • Add support for Webonyx GraphQL native promise

v0.3.0

7 years ago

v0.3.0 (2017-02-04)

  • Add promise adapter (#11) Now promise adapters comes out of the box: McGWeb\PromiseFactory\PromiseFactoryInterface is replaced by Overblog\PromiseAdapter\PromiseAdapterInterface, where the main difference between both interfaces are methods createResolve renamed to createFulfilled and createReject to createRejected

v0.2.0

7 years ago

v0.2.0 (2016-11-15)

Abstract Promise (use "mcg-web/promise-factory" to remove dependency to a specific promise lib)