diff --git a/Documentation/Appendix/VersionMatrix.rst b/Documentation/Appendix/VersionMatrix.rst index 52f6d10167..2942e58b44 100644 --- a/Documentation/Appendix/VersionMatrix.rst +++ b/Documentation/Appendix/VersionMatrix.rst @@ -16,7 +16,7 @@ List of EXT:solr versions and the matching versions of Apache Solr and TYPO3 tha ------------------------------- ---------------------------------------------- --------------------------------------------- --------------------------------- TYPO3 EXT: solr EXT:tika EXT:solrfal EXT:solrconsole EXT:solrdebugtools EXT:solrfluidgrouping EXT:solrmlt Apache Solr Configset ========= ========== ========== =========== =============== ================== ============================= =============== =============== ================= -11.5 11.5 (rc) 11.0 11.0 (rc) 11.0 (rc) 11.0 (rc) 11.0 (Ø) 11.0 (Ø) 8.11.1 ext_solr_11_5_0 +11.5 11.5 (rc) 11.0 11.0 (rc) 11.0 (rc) 11.0 (rc) 11.0 11.0 (Ø) 8.11.1 ext_solr_11_5_0 10.4 11.2 10.0 10.0 10.0 10.0 10.0 10.0 8.11.1 ext_solr_11_2_0 ========= ========== ========== =========== =============== ================== ============================= =============== =============== ================= diff --git a/Documentation/Releases/solr-release-11-5.rst b/Documentation/Releases/solr-release-11-5.rst index fd87e1fa63..a5c58baabc 100644 --- a/Documentation/Releases/solr-release-11-5.rst +++ b/Documentation/Releases/solr-release-11-5.rst @@ -22,6 +22,8 @@ Support of TYPO3 11 LTS With EXT:solr 11.5 we provide the support of TYPO3 11 LTS. +Please note that we require at least TYPO3 11.5.14, as this version contains some change concerning the usage of local TypoScriptFrontendController objects that are solving some issues during indexing. + Bootstrap 5.1 ------------- @@ -30,6 +32,16 @@ The default templates provided by EXT:solr were adapted for Bootstrap 5.1. The templates are also prepared to display some icons with Bootstrap Icons, but the usage is optional and the icons are no longer provided with EXT:solr as the former Glyphicons were. + +Custom field processors +----------------------- + +fieldProcessingInstructions can be used for processing values during indexing, e.g. timestampToIsoDate or uppercase. Now you can register and use your own field processors via: +$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['solr']['fieldProcessor']['yourFieldProcessor'] = ACustomFieldProcessor::class; + +Custom processors have to implement interface ApacheSolrForTypo3\Solr\FieldProcessor\FieldProcessor. + + Contributors ============ @@ -39,14 +51,23 @@ awesome community. Here are the contributors to this release. (patches, comments, bug reports, reviews, ... in alphabetical order) * Christoph Lehmann +* Christopher Schnell +* garfieldius * Guido Schmechel +* Henrik Elsner * Lars Tode * Marc Bastian Heinrichs * Mario Lubenka +* Marcus Balasch * Markus Friedrich +* Marcus Schwemer * Nicola Widmer * Rudy Gnodde +* Sascha Egerer +* Sebastian Hofer * Soren Malling +* twojtylak +* Tobias Schmidt Also a big thank you to our partners who have already concluded one of our new development participation packages such as Apache Solr EB for TYPO3 11 LTS (Feature), Apache Solr EB for TYPO3 10 LTS (Maintenance) @@ -57,15 +78,21 @@ or Apache Solr EB for TYPO3 9 ELTS (Extended): * avenit AG * b13 GmbH * Cobytes B.V. +* Connetation Web Engineering GmbH * cyperfection GmbH +* DVT - Daten-Verarbeitung-Tirol GmbH * Earlybird GmbH & Co KG * elancer-team GmbH +* FONDA GmbH * GFE Media GmbH * Hochschule Niederrhein +* i-fabrik GmbH * in2code GmbH * internezzo ag * Intersim AG * IW Medien GmbH +* Jochen Weiland +* Landeskriminalamt Thüringen * L.N. Schaffrath DigitalMedien GmbH * Leitgab Gernot * LOUIS INTERNET GmbH @@ -74,13 +101,20 @@ or Apache Solr EB for TYPO3 9 ELTS (Extended): * MEDIA::ESSENZ * mehrwert intermediale kommunikation GmbH * Neue Medien GmbH +* NEW.EGO GmbH +* novotegra GmbH +* Pädagogische Hochschule Karlsruhe +* ProPotsdam GmbH * Provitex GmbH * Proud Nerds * Québec.ca +* seam media group gmbh * SITE'NGO * Stämpfli AG * Studio 9 GmbH +* techniConcept Sàrl * TOUMORØ +* WACON Internet GmbH * we.byte GmbH * wegewerk GmbH * werkraum Digitalmanufaktur GmbH diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index b720446e41..c1c1341631 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -4,8 +4,8 @@ [general] project = Apache Solr for TYPO3 -version = 11.5.0-rc-2 -release = 11.5.0-rc-2 +version = 11.5.0-rc-3 +release = 11.5.0-rc-3 copyright = since 2009 by dkd & contributors [html_theme_options] diff --git a/ext_emconf.php b/ext_emconf.php index 2db8b3dc81..1c633a1b19 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -3,7 +3,7 @@ $EM_CONF[$_EXTKEY] = [ 'title' => 'Apache Solr for TYPO3 - Enterprise Search', 'description' => 'Apache Solr for TYPO3 is the enterprise search server you were looking for with special features such as Faceted Search or Synonym Support and incredibly fast response times of results within milliseconds.', - 'version' => '11.5.0-rc-2', + 'version' => '11.5.0-rc-3', 'state' => 'beta', 'category' => 'plugin', 'author' => 'Ingo Renner, Timo Hund, Markus Friedrich',