Skip to content

Commit 40aa837

Browse files
authored
prepare release
1 parent cc330dd commit 40aa837

File tree

4 files changed

+30
-12
lines changed

4 files changed

+30
-12
lines changed

.github/workflows/codeception.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,19 @@ jobs:
3939
strategy:
4040
matrix:
4141
php: [ 8.0 ]
42-
symfony: [ ^5.3 ]
43-
pimcore: [ ~10.1.0, ~10.2.0, ~10.3.0 ]
42+
symfony: [ ^5.4 ]
43+
pimcore: [ ~10.1.0, ~10.2.0, ~10.3.0, ~10.4.0, ~10.5.0 ]
4444
include:
4545
- pimcore: ~10.1.0
4646
template_tag: v10.1.0
4747
- pimcore: ~10.2.0
4848
template_tag: v10.1.4
4949
- pimcore: ~10.3.0
5050
template_tag: v10.1.9
51+
- pimcore: ~10.4.0
52+
template_tag: v10.1.13
53+
- pimcore: ~10.5.0
54+
template_tag: v10.2.0
5155
steps:
5256
- uses: actions/checkout@v2
5357
with:

.github/workflows/ecs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
strategy:
3939
matrix:
4040
php: [ 8.0 ]
41-
symfony: [ ^5.3 ]
42-
pimcore: [ ~10.1.0 ]
41+
symfony: [ ^5.4 ]
42+
pimcore: [ ~10.5.0 ]
4343
include:
44-
- pimcore: ~10.1.0
45-
template_tag: v10.1.0
44+
- pimcore: ~10.5.0
45+
template_tag: v10.2.0
4646
steps:
4747
- uses: actions/checkout@v2
4848
with:
@@ -114,4 +114,4 @@ jobs:
114114
continue-on-error: true
115115
run: |
116116
bin/console cache:warmup --env=test
117-
vendor/bin/ecs check ${{ github.workspace }}/lib/test-bundle/src/FormBuilderBundle --config ${{ github.workspace }}/lib/test-bundle/ecs.php
117+
vendor/bin/ecs check ${{ github.workspace }}/lib/test-bundle/src/FormBuilderBundle --config ${{ github.workspace }}/lib/test-bundle/ecs.php

.github/workflows/php-stan.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,19 @@ jobs:
3838
strategy:
3939
matrix:
4040
php: [ 8.0 ]
41-
symfony: [ ^5.3 ]
42-
pimcore: [ ~10.1.0 ]
41+
symfony: [ ^5.4 ]
42+
pimcore: [ ~10.1.0, ~10.2.0, ~10.3.0, ~10.4.0, ~10.5.0 ]
4343
include:
4444
- pimcore: ~10.1.0
4545
template_tag: v10.1.0
46+
- pimcore: ~10.2.0
47+
template_tag: v10.1.4
48+
- pimcore: ~10.3.0
49+
template_tag: v10.1.9
50+
- pimcore: ~10.4.0
51+
template_tag: v10.1.13
52+
- pimcore: ~10.5.0
53+
template_tag: v10.2.0
4654
steps:
4755
- uses: actions/checkout@v2
4856
with:
@@ -113,4 +121,4 @@ jobs:
113121
- name: Php Stan
114122
run: |
115123
bin/console cache:warmup --env=test
116-
vendor/bin/phpstan analyse -c${{ github.workspace }}/lib/test-bundle/phpstan.neon -a ${{ github.workspace }}/lib/test-bundle/tests/_phpstan-bootstrap.php ${{ github.workspace }}/lib/test-bundle/src -l 4
124+
vendor/bin/phpstan analyse -c${{ github.workspace }}/lib/test-bundle/phpstan.neon -a ${{ github.workspace }}/lib/test-bundle/tests/_phpstan-bootstrap.php ${{ github.workspace }}/lib/test-bundle/src -l 4

UPGRADE.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Upgrade Notes
22

33
## Version 4.1.2
4-
- **[BUGFIX]**: Email CSV export: delete unnecessary line to prevent out of memory issues. [#328](https://github.com/dachcom-digital/pimcore-formbuilder/pull/328)
4+
- **[BUGFIX]**: Rename overwitten `$translator` property in `MailEditorController` (Pimcore 10.5 compatibility). [@vollborn](https://github.com/dachcom-digital/pimcore-formbuilder/pull/345)
55
- **[BUGFIX]**: Type mismatch in `FormOptionsResolver` fixed. [#346](https://github.com/dachcom-digital/pimcore-formbuilder/pull/347)
6-
- **[ENHANCEMENT]**: Add `role="presentation"` to honeypot. [#333](https://github.com/dachcom-digital/pimcore-formbuilder/issues/333)
6+
- **[BUGFIX]**: Remove dummy csv generation loader [@pascalmoser](https://github.com/dachcom-digital/pimcore-formbuilder/pull/328)
7+
- **[BUGFIX]**: ConditionalLogic: Load form data from container fields [@JHeimbach](https://github.com/dachcom-digital/pimcore-formbuilder/pull/330)
8+
- **[BUGFIX]**: ConditionalLogic: Allow empty Validation field when removeAllValidations action is checked [@JHeimbach](https://github.com/dachcom-digital/pimcore-formbuilder/pull/331)
9+
- **[BUGFIX]**: Fix detectFormRuntimeDataInRequest null return [@dpfaffenbauer](https://github.com/dachcom-digital/pimcore-formbuilder/pull/335)
10+
- **[BUGFIX]**: Consider Pimcore Frontend FullPath for File Output [@dpfaffenbauer](https://github.com/dachcom-digital/pimcore-formbuilder/pull/336)
11+
- **[BUGFIX]**: E-Mail CSV Export contains data of several forms when their Output Workflows share the same title [@anyMOTION-GRAPHICS](https://github.com/dachcom-digital/pimcore-formbuilder/issues/325)
12+
- **[ENHANCEMENT]**: Add `role="presentation"` to honeypot field [#333](https://github.com/dachcom-digital/pimcore-formbuilder/issues/333)
713

814
## Version 4.1.1
915
- **[BUGFIX]**: Fix legacy fine uploader identifier

0 commit comments

Comments
 (0)