Skip to content

v14.0.0

Choose a tag to compare

@ppetzold ppetzold released this 02 Jul 08:02
· 8 commits to master since this release
8e44eda

14.0.0 (2026-07-02)

BREAKING CHANGES

  • PaginateConfig.relations no 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.