From 76c75d4fdaa077d8f13042266fe501bcbb5b57cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20K=C3=A4hm?= Date: Thu, 22 Dec 2022 22:38:12 +0100 Subject: [PATCH] [RELEASE] 11.5.1 - Maintenance Release This is a maintenance release for TYPO3 11.5, containing: - [BUGFIX] Do not include removed strptime() (#3335) - [BUGFIX:BP:11.5] Do not handle page updates on new page with uid 0 (#3344) - [BUGFIX:BP:11.5] Shortcircuit work in SolrRoutingMiddleware (#3341) - !!![TASK] Use preAddModifyDocuments hook for pages (#3076) - [BUGFIX] Fix array key access in ext_getSetup (Backport 11.5) (#3361) - [TASK:BP:11.5] Indexing configuration icon fallback (#3371) - [BUGFIX:BP:11.5] Do not index missing fields (#3372) - [TASK:BP:11.5] Introduce index queue type setting (#3370) - [TASK:BP:11.5] Do not index language with unconfigured core (#3373) - [BUGFIX] Make API eID script compatible with TYPO3 v11.5 (#3350) - [BUGFIX] Type-hinting for SiteUtility::getConnectionProperty() (#3396) - [TASK:BP:11.5] Introduce generic EXT:solr exception (#3422) - [BUGFIX:BP:11.5] Fix frontend Solr connection initialization (#3425) - [ACTIONS:2022.12.22] Use fixed typo3/coding-standards 0.6.x < 0.7.0 for TYPO3 11.5 (#3429) - [TASK:Security] Update jQuery and its plugin libs (#3428) - [BUGFIX:P:11.5] Proper check for config.index_enable (#3433) - [BUGFIX:P:11.5] Typecast $timestamp to int in TimestampToUtcIsoDate (#3434) - [BUGFIX:P:11.5] prevent undefined array key warning if filter is empty (#3435) - [FEATURE] Add signal before search in resultsAction (#3392) - [BUGFIX] Fix php warning undefined array key no_search_sub_entries (#3381) Please read the release notes: https://github.com/TYPO3-Solr/ext-solr/releases/tag/11.5.1 --- How to Get Involved There are many ways to get involved with Apache Solr for TYPO3: * Submit bug reports and feature requests on GitHub * Ask or help or answer questions in our Slack channel * Provide patches through pull requests or review and comment on existing pull requests * Go to www.typo3-solr.com or call dkd to sponsor the ongoing development of Apache Solr for TYPO3 Support us by becoming an EB partner: https://shop.dkd.de/Produkte/Apache-Solr-fuer-TYPO3/ or call: +49 (0)69 - 2475218 0 --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- Documentation/Releases/solr-release-11-5.rst | 58 +++++++++++++++++++- Documentation/Settings.cfg | 4 +- ext_emconf.php | 2 +- 4 files changed, 60 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 284b304c1b..813e19e933 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem. **Used versions (please complete the following information):** - TYPO3 Version: [e.g. 11.5.4] - Browser: [e.g. chrome, safari] - - EXT:solr Version: [e.g. 11.5.0] + - EXT:solr Version: [e.g. 11.5.1] - Used Apache Solr Version: [e.g. 8.11.1] - PHP Version: [e.g. 7.4.0] - MySQL Version: [e.g. 8.0.0] diff --git a/Documentation/Releases/solr-release-11-5.rst b/Documentation/Releases/solr-release-11-5.rst index d0302b00d8..d486e981cb 100644 --- a/Documentation/Releases/solr-release-11-5.rst +++ b/Documentation/Releases/solr-release-11-5.rst @@ -3,6 +3,39 @@ .. _releases-11-5: +============================ +Apache Solr for TYPO3 11.5.1 +============================ + +We are happy to publish EXT:solr 11.5.1 maintenance release. + +New in this release +=================== + +- [BUGFIX] Do not include removed strptime() by @dkd-kaehm in https://github.com/TYPO3-Solr/ext-solr/pull/3335 +- [BUGFIX:BP:11.5] Do not handle page updates on new page with uid 0 by @rr-it in https://github.com/TYPO3-Solr/ext-solr/pull/3344 +- [BUGFIX:BP:11.5] Shortcircuit work in SolrRoutingMiddleware by @christophlehmann in https://github.com/TYPO3-Solr/ext-solr/pull/3341 +- !!![TASK] Use preAddModifyDocuments hook for pages by @christophlehmann in https://github.com/TYPO3-Solr/ext-solr/pull/3076 +- [BUGFIX] Fix array key access in ext_getSetup (Backport 11.5) by @saitho in https://github.com/TYPO3-Solr/ext-solr/pull/3361 +- [TASK:BP:11.5] Indexing configuration icon fallback by @dkd-friedrich in https://github.com/TYPO3-Solr/ext-solr/pull/3371 +- [BUGFIX:BP:11.5] Do not index missing fields by @dkd-friedrich in https://github.com/TYPO3-Solr/ext-solr/pull/3372 +- [TASK:BP:11.5] Introduce index queue type setting by @dkd-friedrich in https://github.com/TYPO3-Solr/ext-solr/pull/3370 +- [TASK:BP:11.5] Do not index language with unconfigured core by @christophlehmann in https://github.com/TYPO3-Solr/ext-solr/pull/3373 +- [BUGFIX] Make API eID script compatible with TYPO3 v11.5 by @peterkraume in https://github.com/TYPO3-Solr/ext-solr/pull/3350 +- [BUGFIX] Type-hinting for SiteUtility::getConnectionProperty() by @dkd-kaehm in https://github.com/TYPO3-Solr/ext-solr/pull/3396 +- [TASK:BP:11.5] Introduce generic EXT:solr exception by @dkd-friedrich in https://github.com/TYPO3-Solr/ext-solr/pull/3422 +- [BUGFIX:BP:11.5] Fix frontend Solr connection initialization by @dkd-friedrich in https://github.com/TYPO3-Solr/ext-solr/pull/3425 +- [ACTIONS:2022.12.22] Use fixed typo3/coding-standards 0.6.x < 0.7.0 for TYPO3 11.5 by @dkd-kaehm in https://github.com/TYPO3-Solr/ext-solr/pull/3429 +- [TASK:Security] Update jQuery and its plugin libs by @dkd-kaehm in https://github.com/TYPO3-Solr/ext-solr/pull/3428 +- [BUGFIX:P:11.5] Proper check for config.index_enable by @georgringer in https://github.com/TYPO3-Solr/ext-solr/pull/3433 +- [BUGFIX:P:11.5] Typecast $timestamp to int in TimestampToUtcIsoDate by @derhansen in https://github.com/TYPO3-Solr/ext-solr/pull/3434 +- [BUGFIX:P:11.5] prevent undefined array key warning if filter is empty by @achimfritz in https://github.com/TYPO3-Solr/ext-solr/pull/3435 +- [FEATURE] Add signal before search in resultsAction by @stat1x in https://github.com/TYPO3-Solr/ext-solr/pull/3392 +- [BUGFIX] Fix php warning undefined array key no_search_sub_entries by @DrWh0286 in https://github.com/TYPO3-Solr/ext-solr/pull/3381 + +Please read the release notes: +https://github.com/TYPO3-Solr/ext-solr/releases/tag/11.5.1 + ============================ Apache Solr for TYPO3 11.5.0 ============================ @@ -287,20 +320,24 @@ awesome community. Here are the contributors to this release. * Nicola Widmer * Pascal Hofmair * Peter, CyberForum e.V +* Peter Kraume * Philipp Kitzberger * Rafael Kähm * René Maas * Rudy Gnodde +* rr-it * Sascha Egerer * Sebastian Hofer * Sebastian Michaelsen * Soren Malling +* stat1x * Stefan Frömken * Stefano Kowalke * twojtylak * Thomas Löffler * Tobias Kretschmann * Tobias Schmidt +* Torben Hansen 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) @@ -308,17 +345,24 @@ or Apache Solr EB for TYPO3 9 ELTS (Extended): * .hausformat GmbH * ACO Ahlmann SE & Co. KG +* AgenturWebfox GmbH +* Amedick & Sommer Neue Medien GmbH * avenit AG * b13 GmbH +* Bytebetrieb GmbH & Co. KG * Cobytes B.V. * Connetation Web Engineering GmbH +* cosmoblonde GmbH +* creativ clicks GmbH * cyperfection GmbH * DVT - Daten-Verarbeitung-Tirol GmbH * Earlybird GmbH & Co KG * elancer-team GmbH +* eulenblick Kommunikation und Werbung * FONDA GmbH * GFE Media GmbH * graphodata GmbH +* Hirsch & Wölfl GmbH * Hochschule Niederrhein * i-fabrik GmbH * in2code GmbH @@ -326,6 +370,7 @@ or Apache Solr EB for TYPO3 9 ELTS (Extended): * Intersim AG * IW Medien GmbH * Jochen Weiland +* Kassenärztliche Vereinigung Rheinland-Pfalz * Kreis Euskirchen * Landeskriminalamt Thüringen * L.N. Schaffrath DigitalMedien GmbH @@ -338,26 +383,35 @@ or Apache Solr EB for TYPO3 9 ELTS (Extended): * Neue Medien GmbH * NEW.EGO GmbH * novotegra GmbH +* Overlap GmbH & Co KG * Pädagogische Hochschule Karlsruhe * peytz.dk * ProPotsdam GmbH -* Provitex GmbH * Proud Nerds -* rms. relationship marketing solutions GmbH +* Provitex GmbH +* queo GmbH * Québec.ca +* rms. relationship marketing solutions GmbH +* Sandstein Neue Medien GmbH +* Schoene neue kinder GmbH * seam media group gmbh * SITE'NGO +* Snowflake Productions GmbH * SOS Software Service GmbH * Stämpfli AG * Studio 9 GmbH * systime.dk * techniConcept Sàrl * TOUMORØ +* Typoheads GmbH +* UEBERBIT GmbH +* visol digitale Dienstleistungen GmbH * WACON Internet GmbH * we.byte GmbH * wegewerk GmbH * werkraum Digitalmanufaktur GmbH * WIND Internet +* zimmer7 GmbH How to Get Involved =================== diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index d294092e09..af725e2872 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -4,8 +4,8 @@ [general] project = Apache Solr for TYPO3 -version = 11.5.0 -release = 11.5.0 +version = 11.5.1 +release = 11.5.1 copyright = since 2009 by dkd & contributors [html_theme_options] diff --git a/ext_emconf.php b/ext_emconf.php index f65d033492..f9e045a6a2 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', + 'version' => '11.5.1', 'state' => 'stable', 'category' => 'plugin', 'author' => 'Ingo Renner, Timo Hund, Markus Friedrich',