Skip to content

Commit

Permalink
Merge branch 'release/35.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Apr 11, 2024
2 parents 959af2b + c57bdd3 commit a7d0ad2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Classes/Domain/Repository/AbstractRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ public function persistAll(): void
*/
protected function convertIdentifiersToObjects(array $identifiers, string $tableName): array
{
if ($identifiers === []) {
return [];
}
$identifierList = implode(',', $identifiers);
$sql = 'select * from ' . $tableName . ' where uid in (' . $identifierList . ')'
. 'ORDER BY FIELD(uid, ' . $identifierList . ')';
Expand Down
1 change: 1 addition & 0 deletions Documentation/Technical/Changelog/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Double check if you have cleared all caches after installing a new LUX version t

| Version | Date | State | TYPO3 | Description |
|------------|------------|----------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 35.0.1 | 2024-04-11 | Bugfix | `11.5 + 12.4` | Prevent possible exception when opening A/B Testing module on an empty installation, update disallowed mail provider list |
| 35.0.0 !!! | 2024-03-26 | Feature | `11.5 + 12.4` | Support multiclient usage now, small performance improvements, update social media resources, unify filters in backend modules |
| 34.3.3 | 2024-03-04 | Bugfix | `11.5 + 12.4` | Harden curl requests against ip services to prevent exceptions |
| 34.3.2 | 2024-02-20 | Task | `11.5 + 12.4` | Update disallowed mail provider list, small code improvement |
Expand Down
1 change: 1 addition & 0 deletions Resources/Private/Static/DisallowedMailProviders.txt
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ enterto.com
eoopy.com
ephemail.net
ero-tube.org
eryod.com
etranquil.com
etranquil.net
etranquil.org
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
'description' => 'Living User Experience - LUX - the Marketing Automation tool for TYPO3.
Turn your visitors to leads. Identification and profiling of your visitors within your TYPO3 website.',
'category' => 'plugin',
'version' => '35.0.0',
'version' => '35.0.1',
'author' => 'Alex Kellner',
'author_email' => '[email protected]',
'author_company' => 'in2code.de',
Expand Down

0 comments on commit a7d0ad2

Please sign in to comment.