Re: [hibernate-dev] Wrapping up 5.4.0

2018-11-08 Thread Chris Cranford
Guillaume On the topic of PR #2611, I pushed a commit to fix the test failure a day or two ago that you pointed out.  At this point, the PR is ready for integration unless anyone else wants to review and provide any further input/critique.  What remains for 5.4 which Andrea and I are working on i

Re: [hibernate-dev] Wrapping up 5.4.0

2018-11-06 Thread Steve Ebersole
We should also explicitly mention something about our new org.hibernate.graph.Graph extensions, especially methods such as: - `Graph#makeRootGraph` - `Graph#makeSubGraph` - `Graph#makeCopy` We should be sure to mention that all of this is considered incubating. On Tue, Nov 6, 2018 at 9:

Re: [hibernate-dev] Wrapping up 5.4.0

2018-11-06 Thread Steve Ebersole
JPA's EntityGraph feature is cumbersome to define and use. Hibernate 5.4 adds 2 new features to help make working with EntityGraphs easier. *EntityGraph parsing* The first feature is the ability to create a graph from a String representation. E.g., given a Person entity, we might want to make s

Re: [hibernate-dev] Wrapping up 5.4.0

2018-11-05 Thread Steve Ebersole
With regard to entity graphs, the only new piece is the "parse a string representation" feature. I'll write up a release notes blurb with a simple code sample, but the new documentation sections cover this feature very in-depth. On Mon, Nov 5, 2018 at 12:07 PM Guillaume Smet wrote: > Hi, > >