Skip to content

Commit

Permalink
Fixed: Announce 17.12.09 EOL (OFBIZ-12479)
Browse files Browse the repository at this point in the history
Includes:
Update Solr and Lucene to address several CVEs (including Log4j) (OFBIZ-12464)
  • Loading branch information
JacquesLeRoux committed Jan 6, 2022
1 parent e778e45 commit c69bc8f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions lucene/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
dependencies {
// Remember to change the version number in SearchWorker class when upgrading.
// Also Solr et Lucene should use the same version, luceneMatchVersion should be updated in solrconfig.xml
pluginLibsCompile 'org.apache.lucene:lucene-core:8.9.0'
pluginLibsCompile 'org.apache.lucene:lucene-queryparser:8.9.0'
pluginLibsCompile 'org.apache.lucene:lucene-analyzers-common:8.9.0'
pluginLibsCompile 'org.apache.lucene:lucene-core:8.11.1'
pluginLibsCompile 'org.apache.lucene:lucene-queryparser:8.11.1'
pluginLibsCompile 'org.apache.lucene:lucene-analyzers-common:8.11.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public final class SearchWorker {

public static final String module = SearchWorker.class.getName();

private static final Version LUCENE_VERSION = Version.LUCENE_8_9_0;
private static final Version LUCENE_VERSION = Version.LUCENE_8_11_1;

private SearchWorker() {}

Expand Down
2 changes: 1 addition & 1 deletion solr/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
dependencies {
// Remember to change the version number in SearchWorker class when upgrading.
// Also Solr et Lucene should use the same version, luceneMatchVersion should be updated in solrconfig.xml
pluginLibsCompile 'org.apache.solr:solr-core:8.9.0'
pluginLibsCompile 'org.apache.solr:solr-core:8.11.1'
pluginLibsCompile 'com.google.guava:guava:28.0-jre'
}

Expand Down
2 changes: 1 addition & 1 deletion solr/home/solrdefault/conf/solrconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
that you fully re-index after changing this setting as it can
affect both how text is indexed and queried.
-->
<luceneMatchVersion>8.9.0</luceneMatchVersion>
<luceneMatchVersion>8.11.1</luceneMatchVersion>

<!-- <lib/> directives can be used to instruct Solr to load any Jars
identified and use them to resolve any "plugins" specified in
Expand Down

0 comments on commit c69bc8f

Please sign in to comment.