Re: [hibernate-dev] Maintenance of github hooks for Hibernate ORM

2014-12-01 Thread Hardy Ferentschik
Hi, On Mon, Dec 01, 2014 at 12:01:39AM +, Sanne Grinovero wrote: > Hi Steve, > I was checking our web-hooks and various integrations, noticed two > thing with the hooks setup for ORM: > > # bitbucket > > The hook wasn't working as github refused to deliver the metadata as > the SSL certifica

Re: [hibernate-dev] Maintenance on ci.hibernate.org

2014-12-01 Thread Davide D'Alto
On a related note, I've also reinstalled couchdb since it stopped working for some reason. I've also changed the maven version used for hibernate-ogm-master-jdk9 to maven 3.2.3. Maven 3.2.3 fixes some some bugs related to the profiles activation. Davide On Sun, Nov 30, 2014 at 10:22 PM, Sanne G

Re: [hibernate-dev] Maintenance of github hooks for Hibernate ORM

2014-12-01 Thread Steve Ebersole
On Sun, Nov 30, 2014 at 6:01 PM, Sanne Grinovero wrote: > Hi Steve, > I was checking our web-hooks and various integrations, noticed two > thing with the hooks setup for ORM: > > # bitbucket > To be honest, I do not know if the new Jira "Development Tools - GitHub" integration needs these GitHub

Re: [hibernate-dev] Closed pull requests

2014-12-01 Thread Steve Ebersole
They should get moved to the 4.3-based master. I think I found the relevant issues: * Oracle12cDialect - https://hibernate.atlassian.net/browse/HHH-9044 * PostgreSQL92Dialect & PostgreSQL94Dialect - https://hibernate.atlassian.net/browse/HHH-9167 I have reopened them and targeted them for 5.0

Re: [hibernate-dev] Making it pluggable how GenerationType.AUTO is mapped

2014-12-01 Thread Steve Ebersole
Maybe. I'll have to look a little closer. Is this something you are looking at for use with ORM 5.0? On Fri, Nov 28, 2014 at 5:08 AM, Gunnar Morling wrote: > Hi Steve, all, > > For OGM it would be beneficial if there was an extension point in ORM which > allows us to customize how GenerationTy

Re: [hibernate-dev] org.hibernate.persister.spi.PersisterFactory and 5.0

2014-12-01 Thread Steve Ebersole
As for the "parameter object", I came up with a decent (imo) solution. So I only wrap the things that are "contextual". Here is the contract right now: public interface PersisterFactory extends Service { /** * "Parameter object" providing access to additional information that may be needed *

Re: [hibernate-dev] org.hibernate.persister.spi.PersisterFactory and 5.0

2014-12-01 Thread Steve Ebersole
Wanted to point out that I carried those signatures on to the persister ctors as well. In Amsterdam we had talked about OGM needing a bootstrap hook for the point just after all persisters have been built. Exactly what information did that hook need access to? On Mon, Dec 1, 2014 at 11:28 AM, St

[hibernate-dev] Jandex 2.0 Beta - Java 8 Type Annotations, Generics, & Offline Reflection

2014-12-01 Thread Hardy Ferentschik
Hi, I think this email of Jason is worth forwarding to hibernate-dev. Jandex 2 sounds really interesting for all Hibernate projects. To a certain degree Jandex offers now a lot of the things Steve tried to do with the reflight stuff. I am not sure whether Jandex can completely replace it, but

Re: [hibernate-dev] Closed pull requests

2014-12-01 Thread Andrej Golovnin
> They should get moved to the 4.3-based master. I think I found the relevant > issues: > > * Oracle12cDialect - https://hibernate.atlassian.net/browse/HHH-9044 > * PostgreSQL92Dialect & PostgreSQL94Dialect - > https://hibernate.atlassian.net/browse/HHH-9167 > > I have reopened them and targe

Re: [hibernate-dev] Closed pull requests

2014-12-01 Thread Steve Ebersole
I am finishing up the initial 5.0 work for master right now. I will work on these next. Ping me at the end of the week so I dont forget :) On Mon, Dec 1, 2014 at 3:07 PM, Andrej Golovnin wrote: > > > They should get moved to the 4.3-based master. I think I found the > relevant issues: > > > >

Re: [hibernate-dev] Jandex 2.0 Beta - Java 8 Type Annotations, Generics, & Offline Reflection

2014-12-01 Thread Steve Ebersole
Yes, this is the new Jandex stuff I mentioned in Amsterdam. Moving to Jandex at all is one of the tasks we marked as optional for ORM 5.0. This would mean changing the legacy AnnotationBinder awesome-sauce to use Jandex, not the new metamodel code; so that would be a lot of work. Volunteers to he