Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 65713 invoked from network); 12 Jun 2009 15:26:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 12 Jun 2009 15:26:20 -0000 Received: (qmail 70723 invoked by uid 500); 12 Jun 2009 15:26:31 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 70662 invoked by uid 500); 12 Jun 2009 15:26:30 -0000 Mailing-List: contact java-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-dev@lucene.apache.org Received: (qmail 70654 invoked by uid 99); 12 Jun 2009 15:26:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Jun 2009 15:26:30 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [209.85.217.215] (HELO mail-gx0-f215.google.com) (209.85.217.215) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Jun 2009 15:26:20 +0000 Received: by gxk11 with SMTP id 11so3460555gxk.5 for ; Fri, 12 Jun 2009 08:25:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.150.203.13 with SMTP id a13mr7662580ybg.251.1244820357548; Fri, 12 Jun 2009 08:25:57 -0700 (PDT) In-Reply-To: <40BAF1BE010B4AC3A015BA9F58DD8AFC@VEGA> References: <20090612142336.6EB102388896@eris.apache.org> <9ac0c6aa0906120752s7ea2e4bey7c4f00dd682abc93@mail.gmail.com> <40BAF1BE010B4AC3A015BA9F58DD8AFC@VEGA> Date: Fri, 12 Jun 2009 11:25:57 -0400 Message-ID: <9ac0c6aa0906120825j28189645tf2e420e9b9c49588@mail.gmail.com> Subject: Re: svn commit: r784133 - /lucene/java/trunk/CHANGES.txt From: Michael McCandless To: java-dev@lucene.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Ahhh :) I think it's sorted by when-issue-got-fixed. But in fact it's good that this generally seems to match sorting jira issue number... it means we're being responsive to the issues being opened (I think?). Mike On Fri, Jun 12, 2009 at 10:54 AM, Uwe Schindler wrote: > I thought this list was sorted by the jira issue number! > > ----- > Uwe Schindler > H.-H.-Meier-Allee 63, D-28213 Bremen > http://www.thetaphi.de > eMail: uwe@thetaphi.de > > >> -----Original Message----- >> From: Michael McCandless [mailto:lucene@mikemccandless.com] >> Sent: Friday, June 12, 2009 4:53 PM >> To: java-dev@lucene.apache.org >> Subject: Re: svn commit: r784133 - /lucene/java/trunk/CHANGES.txt >> >> Uwe, how come you inserted this @ 13 instead of appending to the end (20= )? >> >> Mike >> >> On Fri, Jun 12, 2009 at 10:23 AM, wrote: >> > Author: uschindler >> > Date: Fri Jun 12 14:23:36 2009 >> > New Revision: 784133 >> > >> > URL: http://svn.apache.org/viewvc?rev=3D784133&view=3Drev >> > Log: >> > LUCENE-1592: Add missing CHANGES.txt entry. >> > >> > Modified: >> > =A0 =A0lucene/java/trunk/CHANGES.txt >> > >> > Modified: lucene/java/trunk/CHANGES.txt >> > URL: >> http://svn.apache.org/viewvc/lucene/java/trunk/CHANGES.txt?rev=3D784133&= r1=3D7 >> 84132&r2=3D784133&view=3Ddiff >> > >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >> =3D=3D=3D=3D >> > --- lucene/java/trunk/CHANGES.txt (original) >> > +++ lucene/java/trunk/CHANGES.txt Fri Jun 12 14:23:36 2009 >> > @@ -153,27 +153,33 @@ >> > =A0 =A0 is deprecated in favor of the new TimeLimitingCollector which >> > =A0 =A0 extends Collector. =A0(Shai Erera via Mike McCandless) >> > >> > -13. LUCENE-1621: MultiTermQuery.getTerm() has been deprecated as it >> does >> > +13. LUCENE-1592: The method TermsEnum.skipTo() was deprecated, becaus= e >> > + =A0 =A0it is used nowhere in core/contrib and there is only a very >> ineffective >> > + =A0 =A0default implementation available. If you want to position a >> TermEnum >> > + =A0 =A0to another Term, create a new one using IndexReader.terms(Ter= m). >> > + =A0 =A0(Uwe Schindler) >> > + >> > +14. LUCENE-1621: MultiTermQuery.getTerm() has been deprecated as it >> does >> > =A0 =A0 not make sense for all subclasses of MultiTermQuery. Check >> individual >> > =A0 =A0 subclasses to see if they support getTerm(). =A0(Mark Miller) >> > >> > -14. LUCENE-1636: Make TokenFilter.input final so it's set only >> > +15. LUCENE-1636: Make TokenFilter.input final so it's set only >> > =A0 =A0 once. (Wouter Heijke, Uwe Schindler via Mike McCandless). >> > >> > -15. LUCENE-1658: Renamed FSDirectory to SimpleFSDirectory (but left a= n >> > +16. LUCENE-1658: Renamed FSDirectory to SimpleFSDirectory (but left a= n >> > =A0 =A0 FSDirectory base class). =A0Added an FSDirectory.open static m= ethod >> > =A0 =A0 to pick a good default FSDirectory implementation given the OS= . >> > =A0 =A0 (Michael McCandless, Uwe Schindler) >> > >> > -16. LUCENE-1665: Deprecate SortField.AUTO, to be removed in 3.0. >> > +17. LUCENE-1665: Deprecate SortField.AUTO, to be removed in 3.0. >> > =A0 =A0 Instead, when sorting by field, the application should explici= tly >> > =A0 =A0 state the type of the field. =A0(Mike McCandless) >> > >> > -17. LUCENE-1660: StopFilter, StandardAnalyzer, StopAnalyzer now >> > +18. LUCENE-1660: StopFilter, StandardAnalyzer, StopAnalyzer now >> > =A0 =A0 require up front specification of enablePositionIncrement (Mik= e >> > =A0 =A0 McCandless) >> > >> > -18. LUCENE-1614: DocIdSetIterator's next() and skipTo() were deprecat= ed >> in favor >> > +19. LUCENE-1614: DocIdSetIterator's next() and skipTo() were deprecat= ed >> in favor >> > =A0 =A0 of the new nextDoc() and advance(). The new methods return the= doc >> Id they >> > =A0 =A0 landed on, saving an extra call to doc() in most cases. >> > =A0 =A0 For easy migration of the code, you can change the calls to ne= xt() >> to >> > @@ -185,12 +191,12 @@ >> > =A0 =A0 iterator has exhausted. Otherwise it should return the current= doc >> ID. >> > =A0 =A0 (Shai Erera via Mike McCandless) >> > >> > -19. LUCENE-1672: All ctors/opens and other methods using String/File = to >> > +20. LUCENE-1672: All ctors/opens and other methods using String/File = to >> > =A0 =A0 specify the directory in IndexReader, IndexWriter, and IndexSe= archer >> > =A0 =A0 were deprecated. You should instantiate the Directory manually >> before >> > =A0 =A0 and pass it to these classes (LUCENE-1451, LUCENE-1658). >> > =A0 =A0 (Uwe Schindler) >> > - >> > + >> > =A0Bug fixes >> > >> > =A01. LUCENE-1415: MultiPhraseQuery has incorrect hashCode() and equal= s() >> > >> > >> > >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org >> For additional commands, e-mail: java-dev-help@lucene.apache.org > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org > For additional commands, e-mail: java-dev-help@lucene.apache.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org For additional commands, e-mail: java-dev-help@lucene.apache.org