From f64646610af6c4dae30f3d82bf3656a0f2443997 Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Tue, 27 Jan 2026 11:20:48 -0300 Subject: [PATCH 1/2] fix(docs): Update Rector command in `composer.json` to remove unnecessary 'src' argument. --- CHANGELOG.md | 11 ++++++----- composer.json | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e4c80b..0397561 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,17 +2,18 @@ ## 0.3.2 Under development -- Enh #17: Add `php-forge/coding-standard` to development dependencies for code quality checks (@terabytesoftw) +- Enh #22: Add `php-forge/coding-standard` to development dependencies for code quality checks (@terabytesoftw) +- Bug #23:Update Rector command in `composer.json` to remove unnecessary 'src' argument (@terabytesoftw) ## 0.3.1 January 20, 2026 -- Bug #14: Update descriptions in stub classes to clarify purpose (@terabytesoftw) -- Bug #15: Clarify parameter descriptions in `Message::getMessage()` method in `Message` enum (@terabytesoftw) -- Bug #16: Simplify `attributeCases()` method and update normalization logic in `EnumDataProvider` class (@terabytesoftw) +- Bug #19: Update descriptions in stub classes to clarify purpose (@terabytesoftw) +- Bug #20: Clarify parameter descriptions in `Message::getMessage()` method in `Message` enum (@terabytesoftw) +- Bug #21: Simplify `attributeCases()` method and update normalization logic in `EnumDataProvider` class (@terabytesoftw) ## 0.3.0 January 19, 2026 -- Enh #13: Refactor codebase to improve performance (@terabytesoftw) +- Enh #18: Refactor codebase to improve performance (@terabytesoftw) ## 0.2.0 August 18, 2025 diff --git a/composer.json b/composer.json index 407ca12..78d5ba7 100644 --- a/composer.json +++ b/composer.json @@ -49,7 +49,7 @@ "ecs": "./vendor/bin/ecs --fix", "mutation": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100", "mutation-static": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100 --static-analysis-tool=phpstan --static-analysis-tool-options='--memory-limit=-1'", - "rector": "./vendor/bin/rector process src", + "rector": "./vendor/bin/rector process", "static": "./vendor/bin/phpstan --memory-limit=-1", "sync-metadata": [ "curl -fsSL -o .editorconfig https://raw.githubusercontent.com/yii2-extensions/template/main/.editorconfig", From 7934ffba914585dd1d130a476b262211bed8b86b Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Tue, 27 Jan 2026 11:27:57 -0300 Subject: [PATCH 2/2] fix(changelog): Add space after colon in Bug #23 entry for consistency. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0397561..5f39710 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ## 0.3.2 Under development - Enh #22: Add `php-forge/coding-standard` to development dependencies for code quality checks (@terabytesoftw) -- Bug #23:Update Rector command in `composer.json` to remove unnecessary 'src' argument (@terabytesoftw) +- Bug #23: Update Rector command in `composer.json` to remove unnecessary 'src' argument (@terabytesoftw) ## 0.3.1 January 20, 2026