Re: [hibernate-dev] Some insight about HHH-12101 / remove HQL-style positional parameters

2018-02-02 Thread Laurent Almeras
Hi, After digging further, it seems to me that there is a bug with Hibernate 5.3. I debug and step through the query handling, and the generated QueryDSL query seems correct to me: = select queuedTaskHolder from QueuedTaskHolder queuedTaskHolder where queuedTaskHolder.s

[hibernate-dev] Some insight about HHH-12101 / remove HQL-style positional parameters

2018-02-02 Thread Laurent Almeras
Hi, Testing Hibernate 9.3.0.Beta2, I run into this issue: === Cannot define positional and named parameterSpecs : select queuedTaskHolder from org.iglooproject.jpa.more.business.task.model.QueuedTaskHolder queuedTaskHolder where queuedTaskHolder.status in (:x1_0, :x1_1, :x1_2, :x

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Guillaume Smet
On Fri, Feb 2, 2018 at 4:22 PM, Guillaume Smet wrote: > On Fri, Feb 2, 2018 at 4:00 PM, Steve Ebersole > wrote: > >> See you cheated though. You "just happened" to use a project that has a >> dedicated groupId. If we used a dedicated groupId for ORM >> (`org.hibernate.orm` e.g.) then its not a

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Yoann Rodiere
Merged to production. Steve, you can add 5.3.0.Beta2 the usual way, whenever you're ready. On Fri, 2 Feb 2018 at 16:44 Guillaume Smet wrote: > On Fri, Feb 2, 2018 at 4:27 PM, Steve Ebersole > wrote: > >> Pretty sure you are still more impressed with it than I am with Nexus ;) >> > > That's the

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Guillaume Smet
On Fri, Feb 2, 2018 at 4:27 PM, Steve Ebersole wrote: > Pretty sure you are still more impressed with it than I am with Nexus ;) > That's the message I wanted to convey: we don't use the Nexus UI anymore with the changes made by Yoann. And that doesn't prevent you from using Bintray for publish

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Steve Ebersole
> > Yeah, sorry, I'm not impressed. > Pretty sure you are still more impressed with it than I am with Nexus ;) Bintray is in fact in the middle of a UI/UX rewrite, so... >> >> And selecting the "main" artifact used in the drop down is one of those >> items >> > > OK, let's hope it's going to be

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Guillaume Smet
On Fri, Feb 2, 2018 at 4:00 PM, Steve Ebersole wrote: > See you cheated though. You "just happened" to use a project that has a > dedicated groupId. If we used a dedicated groupId for ORM > (`org.hibernate.orm` e.g.) then its not a big deal either way. > I didn't cheat. I gave a random link. Y

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Yoann Rodiere
> Should I make those changes on top of yours? I will do it and merge. Thanks all for the feedback. On Fri, 2 Feb 2018 at 16:23 Guillaume Smet wrote: > On Fri, Feb 2, 2018 at 4:00 PM, Steve Ebersole > wrote: > >> See you cheated though. You "just happened" to use a project that has a >> dedi

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Steve Ebersole
There is one thing that should change though - that initial Bintray link really ought to go to the Bintray hibernate-orm package. We already have the version-specific Bintray links below. Thanks for working on this. Should I make those changes on top of yours? On Fri, Feb 2, 2018 at 8:06 AM Yoa

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Yoann Rodiere
So... It's a yes for the current state of staging (with Bintray links)? On Fri, 2 Feb 2018 at 16:07 Steve Ebersole wrote: > On Fri, Feb 2, 2018 at 8:36 AM Guillaume Smet > wrote: > >> On Fri, Feb 2, 2018 at 3:06 PM, Yoann Rodiere >> wrote: >> >>> @Guillaume, all: I also changed the links of ot

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Steve Ebersole
On Fri, Feb 2, 2018 at 8:36 AM Guillaume Smet wrote: > On Fri, Feb 2, 2018 at 3:06 PM, Yoann Rodiere wrote: > >> @Guillaume, all: I also changed the links of other projects to point to >> Maven Central instead of the JBoss Nexus, because the JBoss Nexus requires >> authentication. And, well, als

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Guillaume Smet
On Fri, Feb 2, 2018 at 3:06 PM, Yoann Rodiere wrote: > @Guillaume, all: I also changed the links of other projects to point to > Maven Central instead of the JBoss Nexus, because the JBoss Nexus requires > authentication. And, well, also because... Nexus. > Frankly, I find the new Maven Central

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Yoann Rodiere
> IIUC, a "switch based on the project" is not going to be enough. For the orm project we'd also then need to know whether a series is "5.3 or later": It's even worse, as 5.3.0.Beta1 is on the JBoss Nexus but Beta2 is on Bintray,,, Anyway, I managed to get something. It's on staging, please give

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Guillaume Smet
On Fri, Feb 2, 2018 at 2:19 PM, Steve Ebersole wrote: > I'm not sure how to do that `series >= 5.3` piece. I guess I'll look at > what you do on staging What I have done so far to manage this sort of things is to add metadata to the series files. -- Guillaume

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Sanne Grinovero
Couldn't we just have "All Hibernate libraries are available in Maven Central" ? I'd like to keep things simple, both for us and for users. On 2 February 2018 at 13:19, Steve Ebersole wrote: > IIUC, a "switch based on the project" is not going to be enough. For the > orm project we'd also then

Re: [hibernate-dev] hibernate.org ORM release series page

2018-02-02 Thread Steve Ebersole
IIUC, a "switch based on the project" is not going to be enough. For the orm project we'd also then need to know whether a series is "5.3 or later": if ( page.project == "orm" && series >= 5.3 ) { // bintray ... } else { // as before } I'm not sure how to do that `series >= 5.3` piece. I guess

[hibernate-dev] Hiberante OGM Infinispan Remote dialect - Execute the command queue as a single Infispan Remote Server Task

2018-02-02 Thread Fabio Massimo Ercoli
I'm Fabio, nice to meet you. Speaking of the current implementation of the Infinispan remote dialect of Hibernate OGM, working on issue OGM-1206 and talking with Davide I noticed that the unit of work commands are executed (flushed to datastore) at the end of the transaction itself. In particular