[hibernate-dev] Hibernate 4.3.9.Final and 4.2.19.Final Released

2015-04-15 Thread Gail Badner
For details, see: http://in.relation.to/Bloggers/HibernateORM439Final4218FinalAnd4219FinalReleased Gail Badner Red Hat, Hibernate ORM ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Preparing to release 4.3.9.Final and 4.2.19.Final

2015-04-15 Thread Gail Badner
I've finished with the releases and have uploaded artifacts, release bundles, and docs for both releases. I'll write up a blog later this evening with some details. Thanks, Gail - Original Message - > From: "Gail Badner" > To: "hibernate-dev" > Sent: Wednesday, April 15, 2015 2:13:48

Re: [hibernate-dev] ORM Team "triage" meeting

2015-04-15 Thread Gail Badner
When will we start having these meetings? - Original Message - > From: "Sanne Grinovero" > To: "hibernate-dev" > Sent: Monday, March 23, 2015 2:17:40 PM > Subject: Re: [hibernate-dev] ORM Team "triage" meeting > > +1 it's a nice time to allow me to join occasionally as needed > > Sanne

[hibernate-dev] Preparing to release 4.3.9.Final and 4.2.19.Final

2015-04-15 Thread Gail Badner
Please do not push any commits to 4.3 or 4.2 branches until I finish the releases. Thanks! Gail ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

[hibernate-dev] Any change of adding generics to Hibernate specific API

2015-04-15 Thread Mihalcea Vlad
Hi, Although many rely on the Java Persistence API, Hibernate still offers specific features, like mapping a native SQLQuery result set to a DTO: .setResultTransformer(Transformers.aliasToBean(DTO.class)); Is it possible to add TypedQuery and TypedSQLQuery, analogous to the JPA specs, so you can

Re: [hibernate-dev] OGM test refactoring

2015-04-15 Thread Gunnar Morling
> umm, the point is that @SkipByGridDialect doesn't work, or I could just put it on existing methods. By splitting up the affected tests into several classes you should be able to apply @SkipByGridDialect on the class level. Then no session factory at all will be built bootstrapped for a skipped b

Re: [hibernate-dev] OGM test refactoring

2015-04-15 Thread Jonathan Halliday
On 15/04/15 15:20, Gunnar Morling wrote: > > umm, the point is that @SkipByGridDialect doesn't work, or I could > just put it on existing methods. > > By splitting up the affected tests into several classes you should be > able to apply @SkipByGridDialect on the class level. Then no session > fa

Re: [hibernate-dev] Adding a custom table to the user defined mapping

2015-04-15 Thread Steve Ebersole
On Fri, Apr 10, 2015 at 12:25 PM, Sanne Grinovero wrote: > Hi all, > I'm considering solving a complex issue in Hibernate Search by having > it add a couple of "system entities" to the set of user defined > entities. > > Do we have any example on how I'd do that? > Yep. This is exactly what Env

Re: [hibernate-dev] OGM 5 Bootstrap: Reading property value in MetadataBuilderContributor

2015-04-15 Thread Steve Ebersole
I am not really sure what you mean by "need a way to find out whether the passed MetadataBuilder is meant to bootstrap Hibernate ORM or OGM". I assume what you mean is really much more simple: how do I access configuration settings from within a MetadataBuilderContributor? Presumably a "yes OGM is

Re: [hibernate-dev] OGM test refactoring

2015-04-15 Thread Jonathan Halliday
On 15/04/15 13:54, Gunnar Morling wrote: > How many tests are affected by this problem? hmm, good question. At present most of the association tests and a handful of assorted others that happen to use associations are blowing up because I haven't finished the association support. I'm working

Re: [hibernate-dev] OGM test refactoring

2015-04-15 Thread Gunnar Morling
How many tests are affected by this problem? If not too many, it might be feasible to split those test methods into several test classes (each only referencing the entities it actually needs) which you then can mark individually with @SkipByGridDialect as needed. I am no big of copying/pasting te

[hibernate-dev] OGM test refactoring

2015-04-15 Thread Jonathan Halliday
In the course of developing the cassandra backend for OGM I've hit an issue with some of the backendtck tests. These tests are in core and reused by each backend. It's possible to exclude tests at class or method level per backend, which prevents irrelevant tests from running for a given backe

[hibernate-dev] OGM 5 Bootstrap: Reading property value in MetadataBuilderContributor

2015-04-15 Thread Gunnar Morling
Steve, all, For migrating OGM to the new ORM 5 bootstrap APIs, I am looking into using a MetadataBuilderContributor for applying an OGM-specific ImplicitNamingStrategy. Provided it is exposed via META-INF/services, the contributor is run un-conditionally. So I'd need a way to find out whether the