[hibernate-dev] Hibernate ORM 5.0.9.Final has been released

2016-07-01 Thread andrea boriero
For details:
http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] Hibernate ORM 5.0.9.Final has been released

2016-07-01 Thread Sanne Grinovero
Hi Andrea,
the email subject mentions 5.0.9, the blog talks about 5.2.1 .. did we
release both?

Thanks,
Sanne

On 1 July 2016 at 09:13, andrea boriero  wrote:
> For details:
> http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


[hibernate-dev] Hibernate ORM 5.2.1.Final has been released

2016-07-01 Thread andrea boriero
sorry for the previous wrong  subject,

Hibernate ORM 5.2.1.Final has been released

For details:
http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] Hibernate ORM 5.0.9.Final has been released

2016-07-01 Thread andrea boriero
i have just realized and sent a new message with the correct subject.

Thanks

On 1 July 2016 at 10:16, Sanne Grinovero  wrote:

> Hi Andrea,
> the email subject mentions 5.0.9, the blog talks about 5.2.1 .. did we
> release both?
>
> Thanks,
> Sanne
>
> On 1 July 2016 at 09:13, andrea boriero  wrote:
> > For details:
> > http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
> > ___
> > hibernate-dev mailing list
> > hibernate-dev@lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/hibernate-dev
>
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] Hibernate ORM 5.0.9.Final has been released

2016-07-01 Thread Vlad Mihalcea
Congrats, Andrea for the release.

Vlad

On Fri, Jul 1, 2016 at 11:19 AM, andrea boriero 
wrote:

> i have just realized and sent a new message with the correct subject.
>
> Thanks
>
> On 1 July 2016 at 10:16, Sanne Grinovero  wrote:
>
> > Hi Andrea,
> > the email subject mentions 5.0.9, the blog talks about 5.2.1 .. did we
> > release both?
> >
> > Thanks,
> > Sanne
> >
> > On 1 July 2016 at 09:13, andrea boriero  wrote:
> > > For details:
> > > http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
> > > ___
> > > hibernate-dev mailing list
> > > hibernate-dev@lists.jboss.org
> > > https://lists.jboss.org/mailman/listinfo/hibernate-dev
> >
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] EnhancementContext and HHH-10801

2016-07-01 Thread Steve Ebersole
As it is an addition of a method to an SPI interface, then no it will not
be breaking applications.

It may or may not affect integrations.  The only implementations of
EnhancementContext
I know of are our implementations.  So,  certainly you could say that it
potentially breaks integrations.  But afaik it is only our implementations
of these things that fall under your label of support.


On Thu, Jun 30, 2016 at 12:07 AM Gail Badner  wrote:

> The fix for HHH-10801 added a method,
> isMappedSuperclassClass(CtClass), to
> org.hibernate.bytecode.enhance.spi.EnhancementContext.
> [1]
>
> Would an application implement EnhancementContext? I don't see anything
> that would break, but I'd like to confirm before backporting HHH-10801 to
> 5.0 and 5.1.
>
> Thanks,
> Gail
>
> [1]
>
> https://github.com/hibernate/hibernate-orm/blob/cdc69a475bb9f37a61e571950072eaf777086cae/hibernate-core/src/main/java/org/hibernate/bytecode/enhance/spi/EnhancementContext.java#L55
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] HHH-10888

2016-07-01 Thread Steve Ebersole
I think that is just an oversight back to the original impl of the JPA
metamodel.  I cannot speak for the tests.  I can definitely see the
argument for PluralAttribute#isAssociation logically returning false for @
ElementCollection.

The spec is very unclear about it unfortunately.  WRT entities actually the
term I see more often in the spec is "relationship".

Personally I logically segment collections exactly the way you suggest,
so +1 from me.  The only really consideration I guess is compatibility.
But still, +1 from me.

On Thu, Jun 23, 2016 at 4:37 PM Gail Badner  wrote:

> Currently, Hibernate's implementation of
> javax.persistence.metamodel.PluralAttribute#isAssociation always returns
> true. I haven't found anything in JSR 338 (yet) that refers to an element
> collection as an association.
>
> I don't see a good definition of "association", but the term is used with
> respect to entities. I also see examples of @ElementCollection with
> @AttributeOverride, but none with @AssociationOverride.
>
> The change suggested in HHH-10888 is to have
> PluralAttributeImpl#isAssociation return true only for one-to-many and
> many-to-many. I believe this is correct, but it breaks a couple of tests
> that specifically check if an element collection is an association.
>
> I wanted to pass this by you in case I'm missing something here.
>
> Please take a look at the pull request to see the fix and the required
> test changes. [1]
>
> Thanks,
> Gail
>
> https://github.com/hibernate/hibernate-orm/pull/1447
>
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] Hibernate ORM 5.0.9.Final has been released

2016-07-01 Thread Gunnar Morling
People on Reddit complain that they cannot see the list of resolved issues
without being logged into JIRA:
https://www.reddit.com/r/java/comments/4qqo8p/hibernate_orm_521_has_been_released/
.

Can we make that change log visible without the need for an account?
Otherwise it's very hard for people to find out what has changed, esp. as
the release announcement itself doesn't provide any hints. IMHO it'd be
nice if a few highlights were described there.

--Gunnar


2016-07-01 10:29 GMT+02:00 Vlad Mihalcea :

> Congrats, Andrea for the release.
>
> Vlad
>
> On Fri, Jul 1, 2016 at 11:19 AM, andrea boriero 
> wrote:
>
> > i have just realized and sent a new message with the correct subject.
> >
> > Thanks
> >
> > On 1 July 2016 at 10:16, Sanne Grinovero  wrote:
> >
> > > Hi Andrea,
> > > the email subject mentions 5.0.9, the blog talks about 5.2.1 .. did we
> > > release both?
> > >
> > > Thanks,
> > > Sanne
> > >
> > > On 1 July 2016 at 09:13, andrea boriero  wrote:
> > > > For details:
> > > > http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
> > > > ___
> > > > hibernate-dev mailing list
> > > > hibernate-dev@lists.jboss.org
> > > > https://lists.jboss.org/mailman/listinfo/hibernate-dev
> > >
> > ___
> > hibernate-dev mailing list
> > hibernate-dev@lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/hibernate-dev
> >
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] Hibernate ORM 5.0.9.Final has been released

2016-07-01 Thread Steve Ebersole
That is an ongoing argument with Atlassian.  So yes, there is a way.  It
means disabling the GitHub integration.  I personally find the solution
worse than the problem.  Also realize that it is always available via the
SCM'ed changelog file:
https://github.com/hibernate/hibernate-orm/blob/master/changelog.txt


On Fri, Jul 1, 2016 at 3:30 PM Gunnar Morling  wrote:

> People on Reddit complain that they cannot see the list of resolved issues
> without being logged into JIRA:
>
> https://www.reddit.com/r/java/comments/4qqo8p/hibernate_orm_521_has_been_released/
> .
>
> Can we make that change log visible without the need for an account?
> Otherwise it's very hard for people to find out what has changed, esp. as
> the release announcement itself doesn't provide any hints. IMHO it'd be
> nice if a few highlights were described there.
>
> --Gunnar
>
>
> 2016-07-01 10:29 GMT+02:00 Vlad Mihalcea :
>
> > Congrats, Andrea for the release.
> >
> > Vlad
> >
> > On Fri, Jul 1, 2016 at 11:19 AM, andrea boriero 
> > wrote:
> >
> > > i have just realized and sent a new message with the correct subject.
> > >
> > > Thanks
> > >
> > > On 1 July 2016 at 10:16, Sanne Grinovero  wrote:
> > >
> > > > Hi Andrea,
> > > > the email subject mentions 5.0.9, the blog talks about 5.2.1 .. did
> we
> > > > release both?
> > > >
> > > > Thanks,
> > > > Sanne
> > > >
> > > > On 1 July 2016 at 09:13, andrea boriero 
> wrote:
> > > > > For details:
> > > > > http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
> > > > > ___
> > > > > hibernate-dev mailing list
> > > > > hibernate-dev@lists.jboss.org
> > > > > https://lists.jboss.org/mailman/listinfo/hibernate-dev
> > > >
> > > ___
> > > hibernate-dev mailing list
> > > hibernate-dev@lists.jboss.org
> > > https://lists.jboss.org/mailman/listinfo/hibernate-dev
> > >
> > ___
> > hibernate-dev mailing list
> > hibernate-dev@lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/hibernate-dev
> >
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] Hibernate ORM 5.0.9.Final has been released

2016-07-01 Thread Davide D'Alto
Maybe we could create an easier to remember link to the changelog on
github, something like
http://orm.hibernate.org/changelog/5.2.1.Final


On Fri, Jul 1, 2016 at 9:46 PM, Steve Ebersole  wrote:
> That is an ongoing argument with Atlassian.  So yes, there is a way.  It
> means disabling the GitHub integration.  I personally find the solution
> worse than the problem.  Also realize that it is always available via the
> SCM'ed changelog file:
> https://github.com/hibernate/hibernate-orm/blob/master/changelog.txt
>
>
> On Fri, Jul 1, 2016 at 3:30 PM Gunnar Morling  wrote:
>
>> People on Reddit complain that they cannot see the list of resolved issues
>> without being logged into JIRA:
>>
>> https://www.reddit.com/r/java/comments/4qqo8p/hibernate_orm_521_has_been_released/
>> .
>>
>> Can we make that change log visible without the need for an account?
>> Otherwise it's very hard for people to find out what has changed, esp. as
>> the release announcement itself doesn't provide any hints. IMHO it'd be
>> nice if a few highlights were described there.
>>
>> --Gunnar
>>
>>
>> 2016-07-01 10:29 GMT+02:00 Vlad Mihalcea :
>>
>> > Congrats, Andrea for the release.
>> >
>> > Vlad
>> >
>> > On Fri, Jul 1, 2016 at 11:19 AM, andrea boriero 
>> > wrote:
>> >
>> > > i have just realized and sent a new message with the correct subject.
>> > >
>> > > Thanks
>> > >
>> > > On 1 July 2016 at 10:16, Sanne Grinovero  wrote:
>> > >
>> > > > Hi Andrea,
>> > > > the email subject mentions 5.0.9, the blog talks about 5.2.1 .. did
>> we
>> > > > release both?
>> > > >
>> > > > Thanks,
>> > > > Sanne
>> > > >
>> > > > On 1 July 2016 at 09:13, andrea boriero 
>> wrote:
>> > > > > For details:
>> > > > > http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
>> > > > > ___
>> > > > > hibernate-dev mailing list
>> > > > > hibernate-dev@lists.jboss.org
>> > > > > https://lists.jboss.org/mailman/listinfo/hibernate-dev
>> > > >
>> > > ___
>> > > hibernate-dev mailing list
>> > > hibernate-dev@lists.jboss.org
>> > > https://lists.jboss.org/mailman/listinfo/hibernate-dev
>> > >
>> > ___
>> > hibernate-dev mailing list
>> > hibernate-dev@lists.jboss.org
>> > https://lists.jboss.org/mailman/listinfo/hibernate-dev
>> >
>> ___
>> hibernate-dev mailing list
>> hibernate-dev@lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>>
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] Hibernate ORM 5.0.9.Final has been released

2016-07-01 Thread Sanne Grinovero
We have several options, these alternatives work already:
 - 
https://hibernate.atlassian.net/issues/?jql=project%20%3D%20HHH%20AND%20fixVersion%20%3D%205.2.1
 - https://raw.githubusercontent.com/hibernate/hibernate-orm/5.2.1/changelog.txt

the second option is similar to Steve's proposal but pointing to the tag.

In addition on JIRA we can create a filter, which would be similar to
the first above but with a slightly more readable URL, at cost of
needing to create one at each release.


On 1 July 2016 at 23:16, Davide D'Alto  wrote:
> Maybe we could create an easier to remember link to the changelog on
> github, something like
> http://orm.hibernate.org/changelog/5.2.1.Final
>
>
> On Fri, Jul 1, 2016 at 9:46 PM, Steve Ebersole  wrote:
>> That is an ongoing argument with Atlassian.  So yes, there is a way.  It
>> means disabling the GitHub integration.  I personally find the solution
>> worse than the problem.  Also realize that it is always available via the
>> SCM'ed changelog file:
>> https://github.com/hibernate/hibernate-orm/blob/master/changelog.txt
>>
>>
>> On Fri, Jul 1, 2016 at 3:30 PM Gunnar Morling  wrote:
>>
>>> People on Reddit complain that they cannot see the list of resolved issues
>>> without being logged into JIRA:
>>>
>>> https://www.reddit.com/r/java/comments/4qqo8p/hibernate_orm_521_has_been_released/
>>> .
>>>
>>> Can we make that change log visible without the need for an account?
>>> Otherwise it's very hard for people to find out what has changed, esp. as
>>> the release announcement itself doesn't provide any hints. IMHO it'd be
>>> nice if a few highlights were described there.
>>>
>>> --Gunnar
>>>
>>>
>>> 2016-07-01 10:29 GMT+02:00 Vlad Mihalcea :
>>>
>>> > Congrats, Andrea for the release.
>>> >
>>> > Vlad
>>> >
>>> > On Fri, Jul 1, 2016 at 11:19 AM, andrea boriero 
>>> > wrote:
>>> >
>>> > > i have just realized and sent a new message with the correct subject.
>>> > >
>>> > > Thanks
>>> > >
>>> > > On 1 July 2016 at 10:16, Sanne Grinovero  wrote:
>>> > >
>>> > > > Hi Andrea,
>>> > > > the email subject mentions 5.0.9, the blog talks about 5.2.1 .. did
>>> we
>>> > > > release both?
>>> > > >
>>> > > > Thanks,
>>> > > > Sanne
>>> > > >
>>> > > > On 1 July 2016 at 09:13, andrea boriero 
>>> wrote:
>>> > > > > For details:
>>> > > > > http://in.relation.to/2016/06/30/hibernate-orm-521-final-release/
>>> > > > > ___
>>> > > > > hibernate-dev mailing list
>>> > > > > hibernate-dev@lists.jboss.org
>>> > > > > https://lists.jboss.org/mailman/listinfo/hibernate-dev
>>> > > >
>>> > > ___
>>> > > hibernate-dev mailing list
>>> > > hibernate-dev@lists.jboss.org
>>> > > https://lists.jboss.org/mailman/listinfo/hibernate-dev
>>> > >
>>> > ___
>>> > hibernate-dev mailing list
>>> > hibernate-dev@lists.jboss.org
>>> > https://lists.jboss.org/mailman/listinfo/hibernate-dev
>>> >
>>> ___
>>> hibernate-dev mailing list
>>> hibernate-dev@lists.jboss.org
>>> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>>>
>> ___
>> hibernate-dev mailing list
>> hibernate-dev@lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/hibernate-dev
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev