Skip to content

Commit

Permalink
[RELEASE] 11.2.3 -- Bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwemer committed Sep 20, 2024
2 parents 89027ab + 430e93f commit 59bcb42
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .ddev/config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: powermailcond
name: powermailcond-v12
type: php
docroot: .Build/public
php_version: "8.1"
Expand Down
2 changes: 1 addition & 1 deletion .ddev/typo3/config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
base: 'https://powermailcond.ddev.site/'
base: 'https://powermailcond-v12.ddev.site/'
errorHandling: { }
languages:
-
Expand Down
4 changes: 2 additions & 2 deletions Classes/UserFunc/GetPowermailFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct(ConnectionPool $connectionPool)
*/
public function getFormFieldsForCondition(array &$params): void
{
$conditionContainer = $params['row']['conditioncontainer'];
$conditionContainer = $params['row']['conditioncontainer'] ?? '';
if (!MathUtility::canBeInterpretedAsInteger($conditionContainer)) {
return;
}
Expand All @@ -55,7 +55,7 @@ public function getFormFieldsForCondition(array &$params): void
*/
public function getFormFieldsForRule(array &$params): void
{
$conditions = $params['row']['conditions'];
$conditions = $params['row']['conditions'] ?? '';
if (!MathUtility::canBeInterpretedAsInteger($conditions)) {
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ public function __construct(ConnectionPool $connectionPool)
*/
public function filterForms(array &$params): void
{
$currentForm = (int)$params['row']['form'];
$currentForm = (int)($params['row']['form'] ?? 0);
if ($currentForm === 0) {
return;
}
$formsToSkip = [0, $currentForm];

$availableForms = [];
Expand Down
28 changes: 19 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,28 @@
"typo3/cms-core": "^12.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.10",
"helmich/typo3-typoscript-lint": "^3.1",
"mikey179/vfsstream": "^1.6",
"typo3/testing-framework": "dev-main",
"phpmd/phpmd": "^2.8",
"squizlabs/php_codesniffer": "^3.5",
"typo3/cms-extbase": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/cms-felogin": "^12.4",
"typo3/cms-filelist": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-lowlevel": "^12.4",
"typo3/cms-tstemplate": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-info": "^12.4",
"typo3/coding-standards": "^0.7"
"typo3/cms-install": "^12.4",
"typo3/cms-recordlist": "^12.4",
"typo3/cms-rte-ckeditor": "^12.4",
"typo3/cms-scheduler": "^12.4",
"typo3/cms-setup": "^12.4",
"typo3/cms-t3editor": "^12.4",
"typo3/cms-tstemplate": "^12.4",
"typo3/cms-lowlevel": "^12.4",
"helmich/typo3-typoscript-lint": "^3.1",
"mikey179/vfsstream": "^1.6",
"friendsofphp/php-cs-fixer": "^3.10",
"helhum/typo3-console": "^8.0",
"symfony/config": "^6.2",
"typo3/cms-adminpanel": "^12.4",
"typo3/cms-belog": "^12.4"
},
"replace": {
"typo3-ter/powermail-cond": "self.version"
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 @@
'title' => 'Powermail Conditions',
'description' => 'Add conditions (via AJAX) to powermail forms for fields and pages',
'category' => 'plugin',
'version' => '11.2.2',
'version' => '11.2.3',
'state' => 'stable',
'author' => 'Alex Kellner',
'author_email' => '[email protected]',
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ This is the current status of the EAP features:

| Version | Date | State | Description |
|---------|------------|---------|------------------------------------------------------------------------------------------------------|
| 11.2.3 | 2024-09-20 | Bugfix | Some small bugfixes |
| 11.2.2 | 2024-10-16 | TASK | Adjust autodeployment |
| 11.2.1 | 2024-10-16 | Bugfix | Fix autodeployment |
| 11.2.0 | 2024-02-15 | Feature | Move public repository, adjust deployment, fix error in multivalue checkboxes |
Expand Down

0 comments on commit 59bcb42

Please sign in to comment.