The main site lucene/site/publish/index.html is missing Solr in the subject line and the introduction of the announcement ("The Apache Lucene PMC announces....").
Uwe ----- Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de > -----Original Message----- > From: sim...@apache.org [mailto:sim...@apache.org] > Sent: Saturday, November 26, 2011 10:14 PM > To: comm...@lucene.apache.org > Subject: svn commit: r1206592 - in /lucene/site: publish/ publish/skin/ > src/documentation/content/xdocs/ > > Author: simonw > Date: Sat Nov 26 21:13:32 2011 > New Revision: 1206592 > > URL: http://svn.apache.org/viewvc?rev=1206592&view=rev > Log: > added announce for 3.5 > > Modified: > lucene/site/publish/index.html > lucene/site/publish/index.pdf > lucene/site/publish/linkmap.pdf > lucene/site/publish/mail.pdf > lucene/site/publish/skin/basic.css > lucene/site/publish/skin/print.css > lucene/site/publish/skin/profile.css > lucene/site/publish/skin/screen.css > lucene/site/publish/who.pdf > lucene/site/src/documentation/content/xdocs/index.xml > > Modified: lucene/site/publish/index.html > URL: > http://svn.apache.org/viewvc/lucene/site/publish/index.html?rev=1206592&r1 > =1206591&r2=1206592&view=diff > ================================================================ > ============== > --- lucene/site/publish/index.html (original) > +++ lucene/site/publish/index.html Sat Nov 26 21:13:32 2011 > @@ -199,6 +199,9 @@ document.write("Last Published: " + docu <a > href="#News">News</a> <ul class="minitoc"> <li> > +<a href="#27+November+2011+-+Lucene+Core+3.5.0">27 November 2011 - > +Lucene Core 3.5.0</a> </li> <li> > <a href="#26+October+2011+- > +Java+7u1+fixes+index+corruption+and+crash+bugs+in+Apache+Lucene+Core+ > and+Apache+Solr">26 October 2011 - Java 7u1 fixes index corruption and crash > bugs in Apache Lucene Core and Apache Solr</a> </li> <li> @@ -272,7 > +275,121 @@ the <a href="http://lucene.apache.org/ja <a > name="N10047"></a><a name="News"></a> > <h2 class="h3">News</h2> > <div class="section"> > -<a name="N1004D"></a><a name="26+October+2011+- > +Java+7u1+fixes+index+corruption+and+crash+bugs+in+Apache+Lucene+Core+ > and+Apache+Solr"></a> > +<a name="N1004D"></a><a > +name="27+November+2011+-+Lucene+Core+3.5.0"></a> > +<h3 class="h4">27 November 2011 - Lucene Core 3.5.0</h3> <p>The Lucene > +PMC is pleased to announce the availability of Apache Lucene 3.5.0. > + </p> > +<p>Lucene can be downloaded from <a > +href="http://www.apache.org/dyn/closer.cgi/lucene/java/">http://www.apa > +che.org/dyn/closer.cgi/lucene/java/</a> and Solr can be downloaded from > +<a > +href="http://www.apache.org/dyn/closer.cgi/lucene/solr/">http://www.apa > +che.org/dyn/closer.cgi/lucene/solr/</a> > +</p> > +<p>Highlights of the Lucene release include:</p> <ul> > + > +<li>Added a very substantial (3-5X) RAM reduction required to hold the > + terms index on opening an IndexReader. (<a > +href="https://issues.apache.org/jira/browse/LUCENE-2205">LUCENE-2205</a > +>)</li> > + > + > +<li>Added IndexSearcher.searchAfter which returns results after a > + specified ScoreDoc (e.g. last document on the previous page) > to > + support deep paging use cases. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 2215">LUCENE-2215</a>) > + </li> > + > +<li> > + Added SearcherManager to manage sharing and reopening > IndexSearchers > + across multiple search threads. Underlying IndexReader > instances are > + safely closed if not referenced anymore. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 3445">LUCENE-3445</a>, > + <a href="https://issues.apache.org/jira/browse/LUCENE- > 3558">LUCENE-3558</a>) > + </li> > + > +<li>Added SearcherLifetimeManager which safely provides a consistent > + view of the index across multiple requests (e.g. > paging/drilldown). > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 3558">LUCENE-3558</a>, > + <a href="https://issues.apache.org/jira/browse/LUCENE- > 3486">LUCENE-3486</a>) > + </li> > + > +<li>Renamed IndexWriter.optimize to forceMerge to discourage use of > + this method since it is horribly costly and rarely justified > anymore. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 3454">LUCENE-3454</a>) > + </li> > + > +<li>Added NGramPhraseQuery that speeds up phrase queries 30-50% when > + n-gram analysis is used. (<a > href="https://issues.apache.org/jira/browse/LUCENE-3426">LUCENE-3426</a>) > + </li> > + > +<li>Added a new reopen API (IndexReader.openIfChanged) that returns > + null instead of the old reader if there are no changes in > the > index. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 3464">LUCENE-3464</a>) > + </li> > + > +<li>Improvements to vector highlighting: support for more queries > + such as wildcards and boundary analysis for generated > snippets. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 1824">LUCENE-1824</a>, > + <a href="https://issues.apache.org/jira/browse/LUCENE- > 1889">LUCENE-1889</a>) > + </li> > + > +<li>IndexSearcher and IndexReader now perform additional checks to > + throw AlreadyClosedExceptions if searches are performed on > a > + closed IndexReader. Performing searches on already closed > reader can > + cause JVM crashes when invalid memory mapped files are > referenced. > + </li> > + > +<li>Several bugfixes, including a bug where closing an NRT reader > + after the writer was closed was incorrectly invoking the > + DeletionPolicy. See CHANGES.txt entries for full details. > + </li> > + > +</ul> > +<p>Highlights of the Solr release include:</p> <ul> > + > +<li> > + Bug fixes and improvements from Apache Lucene 3.5.0, including a > + very substantial (3-5X) RAM reduction required to hold the terms > + index on opening an <span class="codefrag">IndexReader</span>. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 2205">LUCENE-2205</a>) > + </li> > + > +<li> > + Added support for distributed result grouping. > + (<a href="https://issues.apache.org/jira/browse/SOLR-2066">SOLR- > 2066</a>, > + <a href="https://issues.apache.org/jira/browse/SOLR-2776">SOLR- > 2776</a>) > + </li> > + > +<li> > + Added support for Hunspell stemmer <span > class="codefrag">TokenFilter</span> supporting > + stemming for 99 languages. > + (<a href="https://issues.apache.org/jira/browse/SOLR-2769">SOLR- > 2769</a>) > + </li> > + > +<li> > + A new contrib module "langid" adds language identification > + capabilities as an Update Processor, using Tika's > + <span class="codefrag">LanguageIdentifier</span> or Cybozu > language-detection library > + (<a href="https://issues.apache.org/jira/browse/SOLR-1979">SOLR- > 1979</a>) > + </li> > + > +<li> > + Numeric types including Trie and date types now support > + <span class="codefrag">sortMissingFirst</span>/<span > class="codefrag">Last</span>. > + (<a href="https://issues.apache.org/jira/browse/SOLR-2881">SOLR- > 2881</a>) > + </li> > + > +<li> > + Added <span class="codefrag">hl.q</span> parameter. It is > optional > and if it is specified, > + it overrides <span class="codefrag">q</span> parameter in <span > class="codefrag">Highlighter</span>. > + (<a href="https://issues.apache.org/jira/browse/SOLR-1926">SOLR- > 1926</a>) > + </li> > + > +<li> > + Several minor bugfixes like date parsing for years from > 0001-1000, > ignored > + configurations when using <span > class="codefrag">QueryAnalyzer</span> with > + <span class="codefrag">SpellCheckComponent</span> and many > more. > + See CHANGES.txt entries for full details. > + </li> > + > +</ul> > +<a name="N10106"></a><a > +name="26+October+2011+- > +Java+7u1+fixes+index+corruption+and+crash+bugs+ > +in+Apache+Lucene+Core+and+Apache+Solr"></a> > <h3 class="h4">26 October 2011 - Java 7u1 fixes index corruption and crash > bugs in Apache Lucene Core and Apache Solr</h3> <p>Oracle released <a > href="http://www.oracle.com/technetwork/java/javase/7u1-relnotes- > 507962.html">Java 7u1</a> on October 19. > According to the release notes and tests done by the Lucene > committers, > all bugs reported on July 28 are fixed in this release, @@ -286,7 +403,7 @@ > the <a href="http://lucene.apache.org/ja > version shipped with Java 7 changed and tokenization behaves > differently > (e.g. lowercasing). For more information, read <span > class="codefrag">JRE_VERSION_MIGRATION.txt</span> > in your distribution package!</p> -<a name="N10076"></a><a > name="14+September+2011+- > +Lucene+Core+3.4.0+and+Solr+3.4.0+Available"></a> > +<a name="N1012F"></a><a > +name="14+September+2011+- > +Lucene+Core+3.4.0+and+Solr+3.4.0+Available">< > +/a> > <h3 class="h4">14 September 2011 - Lucene Core 3.4.0 and Solr 3.4.0 > Available</h3> <p>The Lucene PMC is pleased to announce the availability of > Apache Lucene 3.4.0 and Apache Solr 3.4.0. > </p> > @@ -379,7 +496,7 @@ the <a href="http://lucene.apache.org/ja <li>Various > fixes for multi-threaded <span > class="codefrag">DataImportHandler</span>.</li> > > </ul> > -<a name="N10152"></a><a name="28+July+2011+- > +WARNING%3A+Index+corruption+and+crashes+in+Apache+Lucene+Core+%2F > +Apache+Solr+with+Java+7"></a> > +<a name="N1020B"></a><a > +name="28+July+2011+- > +WARNING%3A+Index+corruption+and+crashes+in+Apache+ > +Lucene+Core+%2F+Apache+Solr+with+Java+7"></a> > <h3 class="h4">28 July 2011 - WARNING: Index corruption and crashes in > Apache Lucene Core / Apache Solr with Java 7</h3> <p>Oracle released <a > href="http://www.oracle.com/technetwork/java/javase/jdk7-relnotes- > 429209.html">Java 7</a> today. > Unfortunately it contains hotspot compiler optimizations, which > miscompile some loops. > @@ -417,7 +534,7 @@ the <a href="http://lucene.apache.org/ja > version shipped with Java 7 changed and tokenization behaves > differently > (e.g. lowercasing). For more information, read <span > class="codefrag">JRE_VERSION_MIGRATION.txt</span> > in your distribution package!</p> -<a name="N101A2"></a><a > name="1+July+2011+-+Lucene+Core+3.3+and+Solr+3.3+Available"></a> > +<a name="N1025B"></a><a > +name="1+July+2011+-+Lucene+Core+3.3+and+Solr+3.3+Available"></a> > <h3 class="h4">1 July 2011 - Lucene Core 3.3 and Solr 3.3 Available</h3> > <p>The Lucene PMC is pleased to announce the availability of Apache Lucene > 3.3 and Apache Solr 3.3. > </p> > @@ -477,7 +594,7 @@ the <a href="http://lucene.apache.org/ja <li>Bugfixes > and improvements from Apache Lucene 3.3</li> > > </ul> > -<a name="N101F2"></a><a name="4+June+2011+- > +Lucene+Core+3.2+and+Solr+3.2+Available"></a> > +<a name="N102AB"></a><a > +name="4+June+2011+-+Lucene+Core+3.2+and+Solr+3.2+Available"></a> > <h3 class="h4">4 June 2011 - Lucene Core 3.2 and Solr 3.2 Available</h3> > <p>The Lucene PMC is pleased to announce the availability of Apache Lucene > 3.2 and Apache Solr 3.2. > </p> > @@ -542,7 +659,7 @@ the <a href="http://lucene.apache.org/ja <li>Bugfixes > and improvements from Apache Lucene 3.2. </li> > > </ul> > -<a name="N10242"></a><a name="31+March+2011+- > +Lucene+Core+3.1+and+Solr+3.1+Available"></a> > +<a name="N102FB"></a><a > +name="31+March+2011+-+Lucene+Core+3.1+and+Solr+3.1+Available"></a> > <h3 class="h4">31 March 2011 - Lucene Core 3.1 and Solr 3.1 Available</h3> > <p>The Lucene PMC is pleased to announce the availability of Apache Lucene > 3.1 and Apache Solr 3.1. > The version number for Solr 3.1 was chosen to > reflect the merge of @@ -631,7 +748,7 @@ the <a > href="http://lucene.apache.org/ja > > > </ul> > -<a name="N102A5"></a><a name="3+December+2010+- > +Lucene+Java+3.0.3+and+2.9.4+available"></a> > +<a name="N1035E"></a><a > +name="3+December+2010+-+Lucene+Java+3.0.3+and+2.9.4+available"></a> > <h3 class="h4">3 December 2010 - Lucene Java 3.0.3 and 2.9.4 available</h3> > <p> > Both releases fix bugs in the previous versions: > @@ -686,7 +803,7 @@ the <a href="http://lucene.apache.org/ja > Maven artifacts are available > <a > href="http://repo1.maven.org/maven2/org/apache/lucene/">here</a>. > </p> > -<a name="N10300"></a><a name="25+June+2010+- > +Solr+1.4.1+Released"></a> > +<a name="N103B9"></a><a name="25+June+2010+- > +Solr+1.4.1+Released"></a> > <h3 class="h4">25 June 2010 - Solr 1.4.1 Released</h3> <p> > Solr 1.4.1 has been released and is now available for public @@ > -699,7 > +816,7 @@ the <a href="http://lucene.apache.org/ja > See the <a > href="http://svn.apache.org/repos/asf/lucene/solr/tags/release- > 1.4.1/CHANGES.txt">release notes</a> > for more details. > </p> > -<a name="N10315"></a><a name="18+June+2010+- > +Lucene+Java+3.0.2+and+2.9.3+available"></a> > +<a name="N103CE"></a><a > +name="18+June+2010+-+Lucene+Java+3.0.2+and+2.9.3+available"></a> > <h3 class="h4">18 June 2010 - Lucene Java 3.0.2 and 2.9.3 available</h3> <p> > Both releases fix bugs in the previous versions: > > Modified: lucene/site/publish/index.pdf > URL: > http://svn.apache.org/viewvc/lucene/site/publish/index.pdf?rev=1206592&r1=1 > 206591&r2=1206592&view=diff > ================================================================ > ============== > Binary files - no diff available. > > Modified: lucene/site/publish/linkmap.pdf > URL: > http://svn.apache.org/viewvc/lucene/site/publish/linkmap.pdf?rev=1206592&r > 1=1206591&r2=1206592&view=diff > ================================================================ > ============== > Binary files - no diff available. > > Modified: lucene/site/publish/mail.pdf > URL: > http://svn.apache.org/viewvc/lucene/site/publish/mail.pdf?rev=1206592&r1=1 > 206591&r2=1206592&view=diff > ================================================================ > ============== > Binary files - no diff available. > > Modified: lucene/site/publish/skin/basic.css > URL: > http://svn.apache.org/viewvc/lucene/site/publish/skin/basic.css?rev=1206592& > r1=1206591&r2=1206592&view=diff > ================================================================ > ============== > --- lucene/site/publish/skin/basic.css (original) > +++ lucene/site/publish/skin/basic.css Sat Nov 26 21:13:32 2011 > @@ -163,4 +163,4 @@ p { > .codefrag { > font-family: "Courier New", Courier, monospace; > font-size: 110%; > -} > +} > \ No newline at end of file > > Modified: lucene/site/publish/skin/print.css > URL: > http://svn.apache.org/viewvc/lucene/site/publish/skin/print.css?rev=1206592& > r1=1206591&r2=1206592&view=diff > ================================================================ > ============== > --- lucene/site/publish/skin/print.css (original) > +++ lucene/site/publish/skin/print.css Sat Nov 26 21:13:32 2011 > @@ -51,4 +51,4 @@ a:link, a:visited { > > acronym { > border: 0; > -} > +} > \ No newline at end of file > > Modified: lucene/site/publish/skin/profile.css > URL: > http://svn.apache.org/viewvc/lucene/site/publish/skin/profile.css?rev=1206592 > &r1=1206591&r2=1206592&view=diff > ================================================================ > ============== > --- lucene/site/publish/skin/profile.css (original) > +++ lucene/site/publish/skin/profile.css Sat Nov 26 21:13:32 2011 > @@ -164,4 +164,4 @@ a:hover { color:#6587ff} > #footer a:visited { color:black } > #footer a:hover { color:black } > #footer a { color:black } > - > + > \ No newline at end of file > > Modified: lucene/site/publish/skin/screen.css > URL: > http://svn.apache.org/viewvc/lucene/site/publish/skin/screen.css?rev=1206592 > &r1=1206591&r2=1206592&view=diff > ================================================================ > ============== > --- lucene/site/publish/skin/screen.css (original) > +++ lucene/site/publish/skin/screen.css Sat Nov 26 21:13:32 2011 > @@ -591,4 +591,4 @@ p.instruction { > list-style-image: url('../images/instruction_arrow.png'); > list-style-position: outside; > margin-left: 2em; > -} > +} > \ No newline at end of file > > Modified: lucene/site/publish/who.pdf > URL: > http://svn.apache.org/viewvc/lucene/site/publish/who.pdf?rev=1206592&r1=12 > 06591&r2=1206592&view=diff > ================================================================ > ============== > Binary files - no diff available. > > Modified: lucene/site/src/documentation/content/xdocs/index.xml > URL: > http://svn.apache.org/viewvc/lucene/site/src/documentation/content/xdocs/in > dex.xml?rev=1206592&r1=1206591&r2=1206592&view=diff > ================================================================ > ============== > --- lucene/site/src/documentation/content/xdocs/index.xml (original) > +++ lucene/site/src/documentation/content/xdocs/index.xml Sat Nov 26 > 21:13:32 2011 > @@ -40,6 +40,102 @@ the <a href="ext:java">Lucene Core</a> p > > <section> > <title>News</title> > + <section> > + <title>27 November 2011 - Lucene Core 3.5.0</title> > + <p>The Lucene PMC is pleased to announce the availability of > Apache Lucene 3.5.0. > + </p> > + <p>Lucene can be downloaded from <a > href="http://www.apache.org/dyn/closer.cgi/lucene/java/">http://www.apache > .org/dyn/closer.cgi/lucene/java/</a> and Solr can be downloaded from <a > href="http://www.apache.org/dyn/closer.cgi/lucene/solr/">http://www.apache. > org/dyn/closer.cgi/lucene/solr/</a></p> > + > + <p>Highlights of the Lucene release include:</p> > + <ul> > + <li>Added a very substantial (3-5X) RAM reduction required > to hold the > + terms index on opening an IndexReader. (<a > href="https://issues.apache.org/jira/browse/LUCENE-2205">LUCENE- > 2205</a>)</li> > + > + <li>Added IndexSearcher.searchAfter which returns results > after a > + specified ScoreDoc (e.g. last document on the previous page) > to > + support deep paging use cases. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 2215">LUCENE-2215</a>) > + </li> > + <li> > + Added SearcherManager to manage sharing and reopening > IndexSearchers > + across multiple search threads. Underlying IndexReader > instances are > + safely closed if not referenced anymore. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 3445">LUCENE-3445</a>, > + <a href="https://issues.apache.org/jira/browse/LUCENE- > 3558">LUCENE-3558</a>) > + </li> > + <li>Added SearcherLifetimeManager which safely provides a > consistent > + view of the index across multiple requests (e.g. > paging/drilldown). > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 3558">LUCENE-3558</a>, > + <a href="https://issues.apache.org/jira/browse/LUCENE- > 3486">LUCENE-3486</a>) > + </li> > + <li>Renamed IndexWriter.optimize to forceMerge to > discourage use of > + this method since it is horribly costly and rarely justified > anymore. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 3454">LUCENE-3454</a>) > + </li> > + <li>Added NGramPhraseQuery that speeds up phrase queries > 30-50% when > + n-gram analysis is used. (<a > href="https://issues.apache.org/jira/browse/LUCENE-3426">LUCENE-3426</a>) > + </li> > + <li>Added a new reopen API (IndexReader.openIfChanged) > that returns > + null instead of the old reader if there are no changes in > the > index. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 3464">LUCENE-3464</a>) > + </li> > + <li>Improvements to vector highlighting: support for more > queries > + such as wildcards and boundary analysis for generated > snippets. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 1824">LUCENE-1824</a>, > + <a href="https://issues.apache.org/jira/browse/LUCENE- > 1889">LUCENE-1889</a>) > + </li> > + <li>IndexSearcher and IndexReader now perform additional > checks to > + throw AlreadyClosedExceptions if searches are performed on > a > + closed IndexReader. Performing searches on already closed > reader can > + cause JVM crashes when invalid memory mapped files are > referenced. > + </li> > + <li>Several bugfixes, including a bug where closing an NRT > reader > + after the writer was closed was incorrectly invoking the > + DeletionPolicy. See CHANGES.txt entries for full details. > + </li> > + </ul> > + <p>Highlights of the Solr release include:</p> > + <ul> > + <li> > + Bug fixes and improvements from Apache Lucene 3.5.0, including a > + very substantial (3-5X) RAM reduction required to hold the terms > + index on opening an <code>IndexReader</code>. > + (<a href="https://issues.apache.org/jira/browse/LUCENE- > 2205">LUCENE-2205</a>) > + </li> > + <li> > + Added support for distributed result grouping. > + (<a href="https://issues.apache.org/jira/browse/SOLR-2066">SOLR- > 2066</a>, > + <a href="https://issues.apache.org/jira/browse/SOLR-2776">SOLR- > 2776</a>) > + </li> > + <li> > + Added support for Hunspell stemmer <code>TokenFilter</code> > supporting > + stemming for 99 languages. > + (<a href="https://issues.apache.org/jira/browse/SOLR-2769">SOLR- > 2769</a>) > + </li> > + <li> > + A new contrib module "langid" adds language identification > + capabilities as an Update Processor, using Tika's > + <code>LanguageIdentifier</code> or Cybozu language-detection > library > + (<a href="https://issues.apache.org/jira/browse/SOLR-1979">SOLR- > 1979</a>) > + </li> > + <li> > + Numeric types including Trie and date types now support > + <code>sortMissingFirst</code>/<code>Last</code>. > + (<a href="https://issues.apache.org/jira/browse/SOLR-2881">SOLR- > 2881</a>) > + </li> > + <li> > + Added <code>hl.q</code> parameter. It is optional and if it is > specified, > + it overrides <code>q</code> parameter in > <code>Highlighter</code>. > + (<a href="https://issues.apache.org/jira/browse/SOLR-1926">SOLR- > 1926</a>) > + </li> > + <li> > + Several minor bugfixes like date parsing for years from > 0001-1000, > ignored > + configurations when using <code>QueryAnalyzer</code> with > + <code>SpellCheckComponent</code> and many more. > + See CHANGES.txt entries for full details. > + </li> > + </ul> > + </section> > <section><title>26 October 2011 - Java 7u1 fixes index corruption and > crash bugs in Apache Lucene Core and Apache Solr</title> > <p>Oracle released <a > href="http://www.oracle.com/technetwork/java/javase/7u1-relnotes- > 507962.html">Java 7u1</a> on October 19. > According to the release notes and tests done by the Lucene > committers, > all bugs reported on July 28 are fixed in this release, --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org