Re: [hibernate-dev] Changing method signatures in micro releases

2014-05-19 Thread Gail Badner
It was a simple matter to restore the old the method and provide a default implementation of the method added by HHH-9078. I've create the following issues: For master, 4.3, and 4.2 (because HHH-9078 was fixed on master, 4.3, and 4.2): HHH-9204: Restore AbstractCollectionPersister.doProcessQueu

Re: [hibernate-dev] Changing method signatures in micro releases

2014-05-19 Thread Gail Badner
Hi Gunnar, Thanks for mentioning this. I believe that org.hibernate.persister.collection and org.hibernate.persister.entity are considered APIs, which should definitely be backward-compatible for micro releases. I'm looking at some alternatives to mitigate that. My first thought is that the f

[hibernate-dev] Changing method signatures in micro releases

2014-05-19 Thread Gunnar Morling
Hi, When updating Hibernate OGM to make use of ORM 4.3.5, I noticed a changed method signature in AbstractCollectionPersister (abstract method doProcessQueuedOps() has a new parameter). This causes a compilation failure in OGM, as we naturally still override the old signature. I can solve this pa