Skip to content

Commit 656b60e

Browse files
authored
#346 Fix type-mismatch (#347)
* #346 Fix type-mismatch * Update supported versions in README.md * Update UPGRADE.md * Adjusted symfony compatibility
1 parent 2e75105 commit 656b60e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
| Release | Supported Pimcore Versions | Supported Symfony Versions | Release Date | Maintained | Branch |
1414
|---------|-----------------------------------|----------------------------|--------------|----------------|------------|
15-
| **4.x** | `10.1` - `10.3` | `5.3` | 13.10.2021 | Feature Branch | master |
15+
| **4.x** | `10.1` - `10.5` | `^5.3` | 13.10.2021 | Feature Branch | master |
1616
| **3.x** | `6.0` - `6.9` | `3.4`, `^4.4` | 17.07.2019 | Bugfix only | [3.x](https://github.com/dachcom-digital/pimcore-formbuilder/tree/3.x) |
1717
| **2.7** | `5.4`, `5.5`, `5.6`, `5.7`, `5.8` | `3.4` | 27.06.2019 | Unsupported | [2.7](https://github.com/dachcom-digital/pimcore-formbuilder/tree/2.7) |
1818
| **1.5** | `4.0` | -- | 18.03.2017 | Unsupported | [pimcore4](https://github.com/dachcom-digital/pimcore-formbuilder/tree/pimcore4) |

UPGRADE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Version 4.1.2
44
- **[BUGFIX]**: Email CSV export: delete unnecessary line to prevent out of memory issues. [#328](https://github.com/dachcom-digital/pimcore-formbuilder/pull/328)
5+
- **[BUGFIX]**: Type mismatch in `FormOptionsResolver` fixed. [#346](https://github.com/dachcom-digital/pimcore-formbuilder/pull/347)
56
- **[ENHANCEMENT]**: Add `role="presentation"` to honeypot. [#333](https://github.com/dachcom-digital/pimcore-formbuilder/issues/333)
67

78
## Version 4.1.1

src/FormBuilderBundle/Resolver/FormOptionsResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class FormOptionsResolver
1010
protected ?string $mainLayout = null;
1111
protected ?string $formTemplate = null;
1212
protected ?string $formBlockTemplate = null;
13-
protected ?int $outputWorkflow = null;
13+
protected int|string|null $outputWorkflow = null;
1414
protected string $preset = 'custom';
1515
protected array $customOptions = [];
1616

0 commit comments

Comments
 (0)