Skip to content

Releases: deptyped/prisma-extension-pagination

v0.7.5

02 Dec 14:29
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.4...v0.7.5

v0.7.4

20 May 14:05
Compare
Choose a tag to compare

What's Changed

  • chore: use @prisma/client/extension import by @btravers in #34

New Contributors

Full Changelog: v0.7.3...v0.7.4

v0.7.3

24 Apr 05:48
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.2...v0.7.3

v0.7.2

16 Apr 20:25
Compare
Choose a tag to compare

What's Changed

  • fix: default arguments are unsound by @KATT in #31

Full Changelog: v0.7.1...v0.7.2

v0.7.1

11 Apr 22:35
Compare
Choose a tag to compare

What's Changed

  • fix: includePageCount: true broken with limit: null by @KATT in #29

Full Changelog: v0.7.0...v0.7.1

v0.7.0

11 Apr 14:45
Compare
Choose a tag to compare

What's Changed

  • feat: limit: null to load all results by @KATT in #27

New Contributors

  • @KATT made their first contribution in #27

Full Changelog: v0.6.0...v0.7.0

v0.6.0

13 Dec 13:21
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.6.0

v0.5.0

22 Aug 10:04
Compare
Choose a tag to compare

Breaking change

Default export is now a function that accepts custom defaults.

Simply call the function without arguments if you want to use the extension as before:

import pagination from "prisma-extension-pagination";

-new PrismaClient().$extends(pagination);
+new PrismaClient().$extends(pagination());

What's Changed