[hibernate-dev] Cannot build documentation in 5.1 branch

2018-03-19 Thread Gail Badner
I'm in the process of releasing 5.1.13, and I'm not able to build Hibernate Integrations Guide. I was able to build it for 5.1.12 without any problem. The task that fails is assembleDocumentation and is the error is below. [1] There have not been any changes to that guide for 5.1.13, so I'm not

[hibernate-dev] Cache testing & JCache

2018-03-19 Thread Steve Ebersole
The initial hibernate-jcache code would create JCache Cache instance "on the fly" as they were needed if not already defined. As part of a discussion about JCache support, it was agreed that this should not happen. To be clear... the integration code calls

Re: [hibernate-dev] Hibernate OGM mapping for "server side Hibernate Search" via Infinispan Remote

2018-03-19 Thread Fabio Massimo Ercoli
Hi Sanne, what you speak of in my opinion is a very very cool feature. Moreover server-side indexes (and remote dialect) are more suitable for Openshift applications. Using standard javax.persistence.Index APIs could be a very nice alternative to avoid confusion with Hibernate Search client side

Re: [hibernate-dev] JPA Events

2018-03-19 Thread Petar Tahchiev
Hi Steve, thank you for your reply. I really appreciate it. Here's my situation: my client asked me to get the dirty Products. Now the Product has a List manufacturers so to me it is obvious that when the manufacturers are changed then the Product is dirty, and this is exactly what I try to

[hibernate-dev] [HSEARCH][V6-POC] Syntax for query building

2018-03-19 Thread Yoann Rodiere
Hello, In Search 6, we are changing the Query DSL APIs to move away from Lucene dependencies. Since this breaks backward compatibility whatever we do, we had a look to improve the the syntax a little bit with some other changes. In particular, for query predicate building, we experimented with

[hibernate-dev] [HSEARCH][V6-POC] RFC on the Hibernate Search 6 APIs

2018-03-19 Thread Yoann Rodiere
Hello, It's been some time we have been working on a proof-of-concept for Search 6, and I think it is mature enough to receive some early feedback. So to anyone interested: I would love to read your comments! Note that the APIs are not set in stone yet, everything could still change depending on

[hibernate-dev] [HV] Retiring HibernateValidatorContext#parameterNameProvider()

2018-03-19 Thread Guillaume Smet
Hi, So I know we like to have API compatibility discussions these days, so let's start a new one. FWIW, this discussions doesn't come out of the blue, it's based on discussions we had for one of Marko's PRs. In HV, you can set the parameter name provider at the VF level and you can also

Re: [hibernate-dev] JPA Events

2018-03-19 Thread Steve Ebersole
It is actually very unclear. Look at the wording... "...update operations to *entity* data...". So clearly it boils down to your definition of "entity data" and what is being updated, as Oliver mentions as well. We take the interpretation that since we are not updating the entity table here, we

[hibernate-dev] JPA Events

2018-03-19 Thread Petar Tahchiev
Hi guys, I opened an issue in the JPA spec here yesterday: https://github.com/javaee/jpa-spec/issues/167 because @PreUpdate and @PrePersist events are not fired when I save a collection on the owner. Since then, a discussion with Oliver Gierke from the SpringDATA team started and I wanted to