Skip to content

1.1.2

Compare
Choose a tag to compare
@julgus julgus released this 02 Dec 15:38
· 188 commits to master since this release

New features
JPAStreamer can now be initialized with a Supplier<EntityManager>. This is e.g. useful when developing Quarkus applications with Hibernate and Panache. Any Repository that implements PanacheRepositoryBase can initialize JPAStreamer as follows:

private final JPAStreamer jpaStreamer = JPAStreamer.of(this::getEntityManager);

Fixed issues

  • #279 Allow JPAStreamer to be configured with a Supplier of EntityManagers
  • #114 Add terminal operation toList()