v14.0.0
14.0.0 (2026-07-02)
BREAKING CHANGES
PaginateConfig.relationsno longer accepts a
string array. Replace array notation with the nested object
notation TypeORM 1.0 requires.
Before:
relations: ['toys', 'toys.owner']
After:
relations: { toys: { owner: true } }
This package now requires typeorm ^1.0.0. If you're not ready to
upgrade TypeORM, stay on the previous major of nestjs-paginate.