[jira] [Updated] (DELTASPIKE-1039) LinkageError on container reboot

2015-12-09 Thread Thomas Andraschko (JIRA)
[ https://issues.apache.org/jira/browse/DELTASPIKE-1039?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Andraschko updated DELTASPIKE-1039: -- Fix Version/s: 1.5.3 > LinkageError on container reboot > -

[jira] [Commented] (DELTASPIKE-1039) LinkageError on container reboot

2015-12-09 Thread Thomas Andraschko (JIRA)
[ https://issues.apache.org/jira/browse/DELTASPIKE-1039?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15048379#comment-15048379 ] Thomas Andraschko commented on DELTASPIKE-1039: --- I fixed in the git mas

Re: [VOTE] Release of Apache DeltaSpike 1.5.2

2015-12-09 Thread Gerhard Petracek
+1 regards, gerhard 2015-12-06 20:54 GMT+01:00 Gerhard Petracek : > Hi, > > I was running the needed tasks to get the 21th release of Apache > DeltaSpike out. > The artifacts are deployed to Nexus [1] (and [2]). > > The tag is available at [3] and the release-branch at [4]. > They will get pus

Re: [VOTE] Release of Apache DeltaSpike 1.5.2

2015-12-09 Thread Jason Porter
+1 On Wed, Dec 9, 2015 at 11:57 AM, Gerhard Petracek wrote: > +1 > > regards, > gerhard > > > > 2015-12-06 20:54 GMT+01:00 Gerhard Petracek : > > > Hi, > > > > I was running the needed tasks to get the 21th release of Apache > > DeltaSpike out. > > The artifacts are deployed to Nexus [1] (and [2

Result (was: Re: [VOTE] Release of Apache DeltaSpike 1.5.2)

2015-12-09 Thread Gerhard Petracek
thank you for voting! 6 binding +1 votes (pmc): - Christian Kaltepoth - Gerhard Petracek - Jason Porter - John D. Ament - Romain Manni-Bucau - Thomas Andraschko 1 non-binding -1 vote: - Harald Wellmann regards, gerhard 2015-12-06 20:54 GMT+01:00 Gerhard Petracek : > Hi, > > I was runn

Re: [VOTE] Release of Apache DeltaSpike 1.5.2

2015-12-09 Thread Harald Wellmann
Hi Gerhard, sorry for not getting back sooner... So far, I figured out that the regression I've seen was introduced between 1.5.0 and 1.5.1, and not in 1.5.2 - I tested with an application that was running on DS 1.5.0 previously. It seems I missed the end of the vote by a few hours, otherwis

EntityRepository + EntityManagerDelegate

2015-12-09 Thread Harald Wellmann
For the benefit of all DS Data users who prefer persist() and merge() over save(), I propose to extend the Data API by something like this: public interface FullEntityRepository extends EntityRepository, EntityManagerDelegate { } public abstract class AbstractFullEntityRepositorySerializa

RE: EntityRepository + EntityManagerDelegate

2015-12-09 Thread Marvin Toll
Without having the benefit of "test driving" the change, it seems to make a lot of sense to me. Any approach enabling direct access to the (native) JPA API can only be beneficial when it is impossible to imagine all of the different use cases that might emerge for hundreds of developers over th

[jira] [Updated] (DELTASPIKE-645) review sonar findings

2015-12-09 Thread Gerhard Petracek (JIRA)
[ https://issues.apache.org/jira/browse/DELTASPIKE-645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gerhard Petracek updated DELTASPIKE-645: Fix Version/s: (was: 1.5.2) 1.6.0 > review sonar findings

Re: [VOTE] Release of Apache DeltaSpike 1.5.2

2015-12-09 Thread Gerhard Petracek
hi harald, ok - that's why i said "i guess" - with v1.5.2 there was only one commit in the data-module which >could< have introduced a regression (for applications based on osgi). however, i'm happy to hear that we don't have a new regression (hopefully the mentioned part still works for applicati

[jira] [Created] (DELTASPIKE-1041) update site and javadoc to 1.5.2

2015-12-09 Thread Gerhard Petracek (JIRA)
Gerhard Petracek created DELTASPIKE-1041: Summary: update site and javadoc to 1.5.2 Key: DELTASPIKE-1041 URL: https://issues.apache.org/jira/browse/DELTASPIKE-1041 Project: DeltaSpike

RE: EntityRepository + EntityManagerDelegate

2015-12-09 Thread Romain Manni-Bucau
Doesnt it break data design? Why not using the em if it is what you need? One doesnt prevent the other. Le 9 déc. 2015 23:12, "Marvin Toll" a écrit : > Without having the benefit of "test driving" the change, it seems to make > a lot of sense to me. Any approach enabling direct access to the (na

[jira] [Resolved] (DELTASPIKE-1040) ClassDeactivationUtils spams the log in ProjectStages Development and UnitTest

2015-12-09 Thread Gerhard Petracek (JIRA)
[ https://issues.apache.org/jira/browse/DELTASPIKE-1040?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gerhard Petracek resolved DELTASPIKE-1040. -- Resolution: Fixed > ClassDeactivationUtils spams the log in ProjectStages D

[jira] [Reopened] (DELTASPIKE-1040) ClassDeactivationUtils spams the log in ProjectStages Development and UnitTest

2015-12-09 Thread Gerhard Petracek (JIRA)
[ https://issues.apache.org/jira/browse/DELTASPIKE-1040?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gerhard Petracek reopened DELTASPIKE-1040: -- > ClassDeactivationUtils spams the log in ProjectStages Development and UnitTes

[jira] [Updated] (DELTASPIKE-1041) update site and javadoc to 1.5.2

2015-12-09 Thread Gerhard Petracek (JIRA)
[ https://issues.apache.org/jira/browse/DELTASPIKE-1041?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gerhard Petracek updated DELTASPIKE-1041: - Issue Type: Task (was: Bug) > update site and javadoc to 1.5.2 > ---

Re: EntityRepository + EntityManagerDelegate

2015-12-09 Thread John D. Ament
I like the convenience of only needing to extend one interface, and like that it still allows the old flexibility of only extending what you need. John On Wed, Dec 9, 2015 at 4:26 PM Harald Wellmann wrote: > For the benefit of all DS Data users who prefer persist() and merge() > over save(), I

RE: EntityRepository + EntityManagerDelegate

2015-12-09 Thread Marvin Toll
Romain - I’m not clear on the term “data design”? In what ways does exposing the specification backed JPA API break “data design”? Or, perhaps you are referencing Eric Evens “Repository Pattern” and asserting that by mixing the JPA API and the DeltaSpike Repository API in the same class cau