From 3356b59b34589307c30cc3a620b8834d4738b4c3 Mon Sep 17 00:00:00 2001 From: Basil Suter Date: Wed, 9 Aug 2023 09:18:28 +0000 Subject: [PATCH] changelog --- .github/workflows/tests.yml | 10 +++++----- CHANGELOG.md | 4 ++++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3e74704..e135241 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] + php: ['7.4', '8.0', '8.1', '8.2', '8.3'] steps: ## checkout the repoistory @@ -33,12 +33,12 @@ jobs: ## run unit tests - name: PHP Unit tests for PHP run: vendor/bin/phpunit --verbose --configuration actions.phpunit.xml - if: matrix.php == '8.2' || matrix.php == '8.1' || matrix.php == '8.0' || matrix.php == '7.4' || matrix.php == '7.3' || matrix.php == '7.2' || matrix.php == '7.0' + if: matrix.php == '8.3' || matrix.php == '8.2' || matrix.php == '8.1' || matrix.php == '7.4' ## unit test with coverage - - name: PHP Unit tests for PHP 7.1 + - name: PHP Unit tests for PHP 8.0 run: vendor/bin/phpunit --verbose --coverage-clover=clover.xml --configuration actions.phpunit.xml - if: matrix.php == '7.1' + if: matrix.php == '8.0' ## coverage - name: Code coverage @@ -46,5 +46,5 @@ jobs: curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter chmod +x ./cc-test-reporter ./cc-test-reporter after-build -t clover - if: matrix.php == '7.1' + if: matrix.php == '8.0' continue-on-error: true # if is fork diff --git a/CHANGELOG.md b/CHANGELOG.md index 575cbc7..1b0fcec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). In order to read more about upgrading and BC breaks have a look at the [UPGRADE Document](UPGRADE.md). +## 1.7.3 (9. August 2023) + ++ Enhance the handling of empty attribute name values to ensure that the input is hidden gracefully instead of triggering an error when no attribute name is provided. Additionally, empty arrays for select and checkbox inputs no longer result in exceptions. Instead, an empty array is now the default, ensuring that nothing is displayed and the process proceeds smoothly. + ## 1.7.2 (5. April 2023) + [#31](https://github.com/luyadev/luya-module-forms/pull/31) Added PT Translations