Skip to content

Commit

Permalink
[RELEASE] 11.5.1 - Maintenance Release
Browse files Browse the repository at this point in the history
This is a maintenance release for TYPO3 11.5, containing:

- [BUGFIX] Do not include removed strptime() (TYPO3-Solr#3335)
- [BUGFIX:BP:11.5] Do not handle page updates on new page with uid 0 (TYPO3-Solr#3344)
- [BUGFIX:BP:11.5] Shortcircuit work in SolrRoutingMiddleware (TYPO3-Solr#3341)
- !!![TASK] Use preAddModifyDocuments  hook for pages (TYPO3-Solr#3076)
- [BUGFIX] Fix array key access in ext_getSetup (Backport 11.5) (TYPO3-Solr#3361)
- [TASK:BP:11.5] Indexing configuration icon fallback (TYPO3-Solr#3371)
- [BUGFIX:BP:11.5] Do not index missing fields (TYPO3-Solr#3372)
- [TASK:BP:11.5] Introduce index queue type setting (TYPO3-Solr#3370)
- [TASK:BP:11.5] Do not index language with unconfigured core (TYPO3-Solr#3373)
- [BUGFIX] Make API eID script compatible with TYPO3 v11.5 (TYPO3-Solr#3350)
- [BUGFIX] Type-hinting for SiteUtility::getConnectionProperty() (TYPO3-Solr#3396)
- [TASK:BP:11.5] Introduce generic EXT:solr exception (TYPO3-Solr#3422)
- [BUGFIX:BP:11.5] Fix frontend Solr connection initialization (TYPO3-Solr#3425)
- [ACTIONS:2022.12.22] Use fixed typo3/coding-standards 0.6.x < 0.7.0 for TYPO3 11.5 (TYPO3-Solr#3429)
- [TASK:Security] Update jQuery and its plugin libs (TYPO3-Solr#3428)
- [BUGFIX:P:11.5] Proper check for config.index_enable (TYPO3-Solr#3433)
- [BUGFIX:P:11.5] Typecast $timestamp to int in TimestampToUtcIsoDate (TYPO3-Solr#3434)
- [BUGFIX:P:11.5] prevent undefined array key warning if filter is empty (TYPO3-Solr#3435)
- [FEATURE] Add signal before search in resultsAction (TYPO3-Solr#3392)
- [BUGFIX] Fix php warning undefined array key no_search_sub_entries (TYPO3-Solr#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
  • Loading branch information
dkd-kaehm committed Dec 22, 2022
1 parent bb95516 commit 343c6cd
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Expand Up @@ -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]
Expand Down
54 changes: 52 additions & 2 deletions Documentation/Releases/solr-release-11-5.rst
Expand Up @@ -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
============================
Expand Down Expand Up @@ -308,24 +341,32 @@ 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
* internezzo ag
* Intersim AG
* IW Medien GmbH
* Jochen Weiland
* Kassenärztliche Vereinigung Rheinland-Pfalz
* Kreis Euskirchen
* Landeskriminalamt Thüringen
* L.N. Schaffrath DigitalMedien GmbH
Expand All @@ -338,26 +379,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
===================
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.cfg
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Expand Up @@ -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',
Expand Down

0 comments on commit 343c6cd

Please sign in to comment.