From d7a76cb4aaf635d415ddba640c901d3f7acf1be2 Mon Sep 17 00:00:00 2001 From: "Chris M. Hostetter" Date: Tue, 15 Jul 2008 20:37:38 +0000 Subject: [PATCH] SOLR-594 - upgrade documentation about calling inform for anyone who might be using StopFilterFactory, SynonymFilterFactory, or EnglishProterFilterFactory directly from java code. git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@677034 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index a641b01440d..6599dcd356e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -63,6 +63,15 @@ using the LegacyDateField class as a possible alternative. Users that desire 100% backwards compatibility should consider using the Solr 1.2 version of DateField. +Due to some changes in the lifecycle of TokenFilterFactories, users of +Solr 1.2 who have written Java code which constructs new instances of +StopFilterFactory, SynonymFilterFactory, or EnglishProterFilterFactory +will need to modify their code by adding a line like the following +prior to using the factory object... + factory.inform(SolrCore.getSolrCore().getSolrConfig().getResourceLoader()); +These lifecycle changes do not affect people who use Solr "out of the +box" or who have developed their own TokenFilterFactory plugins. More +info can be found in SOLR-594. Detailed Change List --------------------