You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ro...@apache.org on 2023/05/09 11:20:01 UTC

[lucene-site] branch main updated (1c5eda7d5 -> ecb9e16aa)

This is an automated email from the ASF dual-hosted git repository.

romseygeek pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-site.git


    from 1c5eda7d5 Remove leading zero from release date
     new b6f5a546a Update version variables for release 9.6.0
     new f5313caae Adding Lucene news for release 9.6.0
     new ecb9e16aa correct date

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../core/core_news/2023-05-09-9-6-0-available.md   | 27 ++++++++++++++++++++++
 pelicanconf.py                                     |  4 ++--
 2 files changed, 29 insertions(+), 2 deletions(-)
 create mode 100644 content/core/core_news/2023-05-09-9-6-0-available.md


[lucene-site] 03/03: correct date

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

romseygeek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-site.git

commit ecb9e16aab06fef4af7be12bc3c60f934d8f56af
Author: Alan Woodward <ro...@apache.org>
AuthorDate: Tue May 9 12:18:12 2023 +0100

    correct date
---
 .../{yyyy-mm-dd-9-6-0-available.md => 2023-05-09-9-6-0-available.md}      | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/content/core/core_news/yyyy-mm-dd-9-6-0-available.md b/content/core/core_news/2023-05-09-9-6-0-available.md
similarity index 100%
rename from content/core/core_news/yyyy-mm-dd-9-6-0-available.md
rename to content/core/core_news/2023-05-09-9-6-0-available.md


[lucene-site] 02/03: Adding Lucene news for release 9.6.0

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

romseygeek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-site.git

commit f5313caae1015058878f4bd3596b2d9fd1922a95
Author: Alan Woodward <ro...@apache.org>
AuthorDate: Tue May 9 12:16:27 2023 +0100

    Adding Lucene news for release 9.6.0
---
 .../core/core_news/yyyy-mm-dd-9-6-0-available.md   | 27 ++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/content/core/core_news/yyyy-mm-dd-9-6-0-available.md b/content/core/core_news/yyyy-mm-dd-9-6-0-available.md
new file mode 100644
index 000000000..dcf137b7a
--- /dev/null
+++ b/content/core/core_news/yyyy-mm-dd-9-6-0-available.md
@@ -0,0 +1,27 @@
+Title: Apache Luceneâ„¢ 9.6.0 available
+category: core/news
+URL:
+save_as:
+
+The Lucene PMC is pleased to announce the release of Apache Lucene 9.6.0.
+
+Apache Lucene is a high-performance, full-featured search engine library written entirely in Java. It is a technology suitable for nearly any application that requires structured search, full-text search, faceting, nearest-neighbor search across high-dimensionality vectors, spell correction or query suggestions.
+
+This release contains numerous bug fixes, optimizations, and improvements, some of which are highlighted below. The release is available for immediate download at:
+
+  <https://lucene.apache.org/core/downloads.html>
+
+### Lucene 9.6.0 Release Highlights:
+
+* Introduce a new KeywordField for simple and efficient  filtering, sorting and faceting.
+* Add support for Java 20 foreign memory API. If exactly Java 19 or 20 is used, MMapDirectory will mmap Lucene indexes in chunks of 16 GiB (instead of 1 GiB) and indexes closed while queries are running can no longer crash the JVM.
+* Improved performance for TermInSetQuery, PrefixQuery, WildcardQuery and TermRangeQuery
+* Lower memory usage for BloomFilteringPostingsFormat
+* Faster merges for HNSW indexes
+* Improvements to concurrent indexing throughput under heavy load
+* Correct equals implementation in SynonymQuery
+* 'explain' is now implemented on TermAutomatonQuery
+
+Please read CHANGES.txt for a full list of new features and changes:
+
+  <https://lucene.apache.org/core/9_6_0/changes/Changes.html>
\ No newline at end of file


[lucene-site] 01/03: Update version variables for release 9.6.0

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

romseygeek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-site.git

commit b6f5a546a2b5b014bac34dca5033bdd17b6ecd53
Author: Alan Woodward <ro...@apache.org>
AuthorDate: Tue May 9 12:06:01 2023 +0100

    Update version variables for release 9.6.0
---
 pelicanconf.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pelicanconf.py b/pelicanconf.py
index 88cfa5437..469da81b1 100755
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -10,8 +10,8 @@ SITESUBTITLE = ''
 SITEURL = ''
 CURRENTYEAR = date.today().year
 
-LUCENE_LATEST_RELEASE = '9.5.0'
-LUCENE_LATEST_RELEASE_DATE = datetime(2023, 1, 30)
+LUCENE_LATEST_RELEASE = '9.6.0'
+LUCENE_LATEST_RELEASE_DATE = datetime(2023, 5, 09)
 LUCENE_PREVIOUS_MAJOR_RELEASE = '8.11.2'
 
 # This string will be appended to all unversioned css and js resources to prevent caching surprises on edits.