|
View:
New views
20 Messages
—
Rating Filter:
Alert me
|
| < Prev | 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 18 - 19 - 20 | Next > |
|
|
JDO TCK Conference Call Friday, Feb 22, 9 am PSTHi,
We will have our regular meeting Friday, February 22 at 9 am PST to discuss JDO TCK issues and status. Dial-in numbers are: 866 230-6968 294-0479# International: +1 865 544-7856 Agenda: 1. Order of args for getPersistenceManager 2. InstanceLifecycleListener tests using jdoconfig.xml properties 3. persistence.xml access 4. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday, Feb 22, 9 am PSTAttendees: Michelle Caisse, Michael Bouschen, Craig Russell
Agenda: 1. Order of args for getPersistenceManagerFactory. This is https://issues.apache.org/jira/browse/JDO-577 2. InstanceLifecycleListener tests using jdoconfig.xml properties: Michelle has some tests under development which are blocked by JDO-577. 3. persistence.xml access: Need to update the specification and the JDOHelper per https://issues.apache.org/jira/browse/JDO-576. I'd like to see how the user can ask for a PersistenceManagerFactory that implements JDOEntitiyManagerFactory. May be a JDO 2.2 issue. 4. Other issues using size() and max() in queries, e.g. select max(this.children.size()) from x.y.Node The SQL version to select the nodes with the maximum number of children would be select * from node n2 group by n2.parent having count(*) = (select max(temp.number) from (select count(*) as number from node n group by n.parent) as temp) This is not really a subquery issue. It applies equally to JDO 2.0 where we introduced aggregates. From the description, it's a bug in the implementation. Now you can see clearly the benefit of having an object model to query. Should we add tck tests for this? Definitely not for JDO 2.1. Probably for 2.2. Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
|
|
JDO TCK Conference Call Friday, Feb 29, 9 am PSTHi,
We will have our regular meeting Friday, February 29 at 9 am PST to discuss JDO TCK issues and status. Dial-in numbers are: 866 230-6968 294-0479# International: +1 865 544-7856 Agenda: 1. Getting a PMF from an EMF (JDO-556) 2. New draft spec (http://db.apache.org/jdo/releases/jdo-2008-02-15.pdf) 3. Work remaining for 2.1 release 4. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday, Feb 29, 9 am PSTAttendees: Michelle Caisse, Michael Bouschen, Matthew Adams, Erik
Bengtson, Craig Russell Agenda: 1. Getting a PMF from an EMF (JDO-556) One final issue to be fixed in JDOHelper. AI Craig fix JDOHelper to use the PersistenceUnitName property to get a PMF instead of using Persistence class. 2. New draft spec (http://db.apache.org/jdo/releases/ jdo-2008-02-15.pdf) was posted on the jdo web site. AI everyone review and provide feedback. 3. Work remaining for 2.1 release http://issues.apache.org/jira/secure/IssueNavigator.jspa?sorter/field=issuekey&sorter/order=ASC 4. Other issues Release of JPOX next week. JPOX 1.2.0 will be released next week. This release will depend on the JDO 2.1 snapshot jars, and will be official once the JCP maintenance review is complete and the Apache JDO project votes to release. There are currently no tck tests for using size() and max() or other aggregates in queries. For example, find the Node or Nodes with the maximum number of children: Select from Node n where n.children.size() == (select max(children.size()) from Node n). AI Michael write tck tests for JDO 2.2. Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
|
|
JDO TCK Conference Call Friday Mar 7, 9 am PSTHi,
We will have our regular meeting Friday, March 7 at 9 am PST to discuss JDO TCK issues and status. Dial-in numbers are: 866 230-6968 294-0479# International: +1 865 544-7856 Agenda: 1. Recursion depth discussion in spec 2. Getting a PMF from an EMF (JDO-556) 3. Work remaining for 2.1 release 4. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday Mar 7, 9 am PSTAttendees: Michael Bouschen, Michelle Caisse
Recursion depth: Email discussion suggested that 0 should be no-op. But what does this mean? Also, a user might expect any negative value to be infinite recursion depth, given that -1 is defined that way. We will continue discussion in email. Craig's status: > 1. JDOHelper is almost done. With the pending changes, and new test > cases for JDOHelper overrides for PersistenceUnitName, and the latest > JPOX SNAPSHOT, everything passes. So I have no concerns about the > current ship quality of JPOX. > > I still need to do a small bit of reorganization of the JDOHelper > code before I check it in. So far, I've refactored > getPersistenceManagerFactory(Map overrides, String name, ClassLoader > resourceLoader, ClassLoader pmfLoader) so it is one page and much > more readable. > > 2. I've briefly looked at Andy's proposed changes to the recursion > depth text and if there's no further discussion, I'll update the spec. Open issues for JDO 2.1: The patch on JDO-555 needs to be reviewed. Need to review other JIRAs and change fix for release flag for some. -- Michelle |
|
|
JDO TCK Conference Call Friday Mar 14, 9 am Pacific Daylight Time {NOTE US TIME CHANGE!!!)Hi,
We will have our regular meeting Friday, March 14 at 9 am PST to discuss JDO TCK issues and status. Dial-in numbers are: 866 230-6968 294-0479# International: +1 865 544-7856 Agenda: 1. Recursion depth discussion in spec 2. Jdoconfig tests fail on tck2-legacy (JDO-581) 3. Work remaining for 2.1 release 4. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday Mar 14, 9 am Pacific Daylight Time {NOTE US TIME CHANGE!!!)Attendees: Michelle Caisse, Craig Russell
Agenda: 1. Recursion depth discussion in spec. Ship it. 2. Jdoconfig tests fail on tck2-legacy (JDO-581). This turned out to be a bug in the tck and a confusing error message from JPOX. The bug in the tck has been fixed. JPOX has been notified of the confusing error message (left JDO-581 open for this). 3. Work remaining for 2.1 release: The last bug for this release is almost done (JDO-579 minor reporting bug in case of failure). Michele will spin a release. Craig will update the specification. Both the release artifacts and the specification will be put to a vote next week. ACTION: Please look for the release vote notice and test the release. 4. Other issues none. Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
|
|
JDO TCK Conference Call Friday Mar 21, 9 am Pacific Daylight Time {NOTE US TIME CHANGE!!!)Hi,
We will have our regular meeting Friday, March 21 at 9 am PST to discuss JDO TCK issues and status. Dial-in numbers are: 866 230-6968 294-0479# International: +1 865 544-7856 Agenda: 1. JDO 2.1 status 2. JDO 2.2 plan 3. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday Mar 21, 9 am Pacific Daylight Time {NOTE US TIME CHANGE!!!)Attendees: Michelle Caisse, Craig Russell
Agenda: 1. JDO 2.1 status: Voting is going well. No negative votes yet. The vote closes on Monday. Michelle is testing 2.1-rc2 on Windows. We need a process for updating release notes possibly after the release is out. AI Michelle propose a process. 2. JDO 2.2 plan Several items have been proposed already for post-2.1 activities. AI everyone reply to issues on email and file JIRA issues to track them. 3. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
|
|
JDO TCK Conference Call Friday Mar 28, 9 am Pacific Daylight Time (NOTE US TIME CHANGE!!!)Hi,
We will have our regular meeting Friday, March 28 at 9 am PDT to discuss JDO TCK issues and status. Dial-in numbers are: 866 230-6968 294-0479# International: +1 865 544-7856 Agenda: 1. JDO 2.2 plans 3. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday Mar 28, 9 am Pacific Daylight Time (NOTE US TIME CHANGE!!!)Attendees: Richard Schilling, Michael Bouschen, Michelle Caisse, Craig
Russell Agenda: 1. JDO 2.2 plans: AI All go through emails to find features we deferred past 2.1. Include test cases that need to be added for features where there is insufficient testing. Put feature requests into JIRA so we can track them. 2. JDO 2.1 status The release is official and many of the artifacts are available for download. However there are some issues with downloading the jars and poms. Looks like the jars are ok but the signature .asc seems to be missing. AI Craig and Michelle fix the download page. AI Craig get the specification published via the JCP. AI Richard try to download and run the tck. 3. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
|
|
JDO TCK Conference Call Friday Apr 3, 9 am PDTHi,
We will have our regular meeting Friday, April 3 at 9 am PDT to discuss JDO TCK issues and status. Dial-in numbers are: 866 230-6968 294-0479# International: +1 865 544-7856 Agenda: 1. JDO 2.2 plans 3. Other issues Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Date correction: JDO TCK Conference Call Friday Apr 4, 9 am PDTFriday, April 4
-- Michelle Michelle Caisse wrote: > Hi, > > We will have our regular meeting Friday, April 3 at 9 am PDT to > discuss JDO TCK issues and status. > > Dial-in numbers are: > 866 230-6968 294-0479# > International: +1 865 544-7856 > > Agenda: > > 1. JDO 2.2 plans > 3. Other issues > > Action Items from weeks past: > > [Feb 1 2008] AI Matthew see what would be needed to update the PMF > contract to support ServiceLoader. > > [Nov 30 2007] AI Christiaan propose more details on Update/copy by > query for post-JDO 2.1. > > [May 25 2007] AI everyone download the Grails demo from grails.org > and check it out. Also look at Grails/Groovy ExpandoMetaClass that > has the magic to avoid reflection and enhancement. > > [May 25 2007] AI Matthew Adams prepare a proposal with just the basics > of schema synchronization with jdo and orm metadata. > > [Aug 11 2006] AI Craig propose some semantics for behavior if user > tries to add to a list where the ordering element is incorrect. > > [Sep 2 2005] AI: To recruit members: Articles on TheServerSide > directing attention to the site. T-shirts. AI: Craig write a > ServerSide article. > > -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday Apr 3, 9 am PDTNext week's meeting (April 11) is canceled due to vacations and
conflicting meetings. Attendees: Michelle Caisse, Matthew Adams, Craig Russell Agenda: 1. JDO 2.2 plans: Craig sent mail soliciting input for the release. A few responses so far. Can we have a shorter release cycle? Perhaps 3 to 6 months. Items suggested for this release include: Dynamic fetch plans (also add method setRecursionDepth on FetchPlan) Service Loader pattern for JDOHelper.getPersistenceManagerFactory Add new constructors for exceptions Support for multiple datastores JMX management/monitoring model OSGi Service (Similar to JDO-556) The long awaited enhancer API Schema synchronization API (generates/modifies schema) level of standardisation of transaction isolation AI Everyone who proposed a feature, please add a JIRA issue and assign it to a volunteer who will implement the feature. Discussion can then continue around the JIRA issues. 2. Plan to promote JDO 2.1. AI Craig write up a release announcement for posting to Apache, ServerSide, etc. Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
|
|
Minutes: JDO TCK Conference Call Friday, April 18, 9 am PDTAttendees: Richard Schilling, Michael Bouschen, Craig Russell
1. JSR 243 will be updated to link to the Apache JDO site and to download the approved specification. 2. The address for the maven remote repo for Glassfish has changed, so we need to update the release note for JDO 2.0 TCK. AI: Michael file a JIRA, send email on how to make people aware of how to run TCK with this change. We can discuss on the alias how to update the download page to include this information. Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
|
|
JDO TCK Conference Call Friday, May 16, 9 am PDTHi,
We will have our regular meeting Friday, May 16 at 9 am PDT to discuss JDO TCK issues and status. Dial-in numbers are: 866 230-6968 294-0479# International: +1 865 544-7856 Agenda: 1. JDO 2.2 plans 3. Other issues Action Items from weeks past: [Apr 4 2008] AI Everyone who proposed a JDO 2.2 feature, please add a JIRA issue and assign it to a volunteer who will implement the feature. [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday, May 16, 9 am PDTAttendees: Michelle Caisse, Michael Bouschen, Craig Russell
NOTE: 213 787-0528 is the new caller-paid conference call number. Agenda: 1. JDO 2.2 plans. Scrubbed the JIRA issues list for 2.2 release. This is the tool we will use to manage the release. If any other features are desired for the release, please file a JIRA and describe the feature. 2. Other issues From the mailbox: jdo-user wants to know why @ annotations aren't @documented. Good idea, file a JIRA. jdo-dev wants a quick reference guide like the Kodo two pager. Good idea, volunteers? jdo-user reports an issue with interrupting a JDO application. Probably an implementation bug (Spring, JDO implementation, application code) The tck as we distributed it will not automatically download the jta jar because of repository issues in Glassfish. AI Michael fix the svn repo. AI Michelle check into how to get information out to users who download the tck bits but don't check out the svn repo. Action Items from weeks past: [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. This is now filed as https://issues.apache.org/jira/browse/JDO-556 and will not be tracked here. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. This is now filed as https://issues.apache.org/jira/browse/JDO-463 and will not be tracked here. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
|
|
JDO TCK Conference Call Friday, May 23, 9 am PDTHi,
We will have our regular meeting Friday, May 23 at 9 am PDT to discuss JDO TCK issues and status. Dial-in numbers are: Domestic (toll-free) 866 230-6968 294-0479# International (caller-paid): +1 213 787-0528 Agenda: 1. JDO 2.2 plans 3. Other issues Action Items from weeks past: [Apr 4 2008] AI Everyone who proposed a JDO 2.2 feature, please add a JIRA issue and assign it to a volunteer who will implement the feature. [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle |
|
|
Minutes: JDO TCK Conference Call Friday, May 23, 9 am PDTAttendees: Michelle Caisse, Michael Bouschen, Richard Schilling, Craig
Russell Agenda: 1. JDO 2.2 plans: All items that we know about are filed in JIRA and assigned to the release 2.2. Any other issues should be brought up on email. It would be good to review the early of JSR-317 for ideas for the maintenance release. 2. Other issues Richard is looking at JDO 1.1 RI to see if it can be adapted to use a memcached as a persistent store (instead of a backing store for another persistence layer). Action Items from weeks past: [Apr 4 2008] AI Everyone who proposed a JDO 2.2 feature, please add a JIRA issue and assign it to a volunteer who will implement the feature. [Feb 1 2008] AI Matthew see what would be needed to update the PMF contract to support ServiceLoader. [Nov 30 2007] AI Christiaan propose more details on Update/copy by query for post-JDO 2.1. [May 25 2007] AI everyone download the Grails demo from grails.org and check it out. Also look at Grails/Groovy ExpandoMetaClass that has the magic to avoid reflection and enhancement. [May 25 2007] AI Matthew Adams prepare a proposal with just the basics of schema synchronization with jdo and orm metadata. [Aug 11 2006] AI Craig propose some semantics for behavior if user tries to add to a list where the ordering element is incorrect. [Sep 2 2005] AI: To recruit members: Articles on TheServerSide directing attention to the site. T-shirts. AI: Craig write a ServerSide article. -- Michelle Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:Craig.Russell@... P.S. A good JDO? O, Gasp! |
| < Prev | 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 18 - 19 - 20 | Next > |
| Free embeddable forum powered by Nabble | Forum Help |