From 6f7240ada38e32ec2cf1ec4fea44063195644ee7 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Mon, 23 Feb 2026 17:07:49 -0500 Subject: [PATCH 1/3] chore: Update fetch-depth comment --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release-please.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1644386..3fc6e20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 # If you only need the current version keep this. + fetch-depth: 0 - uses: ./.github/actions/ci with: @@ -40,7 +40,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 # If you only need the current version keep this. + fetch-depth: 0 - name: Install php support run: choco install -y php --version=${{ matrix.php-version }} --force diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index e7f35ad..26532f8 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v4 if: ${{ steps.release.outputs.releases_created == 'true' }} with: - fetch-depth: 0 # If you only need the current version keep this. + fetch-depth: 0 # Full history is required for proper changelog generation - name: Build and Test if: ${{ steps.release.outputs.releases_created == 'true' }} From b3ae1473b2822857b88e1b15daaf96376ce288c3 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Tue, 24 Feb 2026 09:40:42 -0500 Subject: [PATCH 2/3] chore: Remove fetch-depth from CI workflow --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fc6e20..2eb3419 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,6 @@ jobs: steps: - uses: actions/checkout@v4 - with: - fetch-depth: 0 - uses: ./.github/actions/ci with: @@ -39,8 +37,6 @@ jobs: steps: - uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Install php support run: choco install -y php --version=${{ matrix.php-version }} --force From 8667cc2fa3e1808c1140d9df9f54331a005ad94a Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Tue, 24 Feb 2026 16:21:10 -0500 Subject: [PATCH 3/3] fix test --- tests/ProviderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ProviderTest.php b/tests/ProviderTest.php index ff50f28..9c49eff 100644 --- a/tests/ProviderTest.php +++ b/tests/ProviderTest.php @@ -63,7 +63,7 @@ public function testEvaluationErrorResultsAreConvertedCorrectly(): void /** @var ResolutionError */ $error = $resolutionDetails->getError(); - $this->assertEquals(ErrorCode::GENERAL(), $error->getResolutionErrorCode()); + $this->assertEquals(ErrorCode::FLAG_NOT_FOUND(), $error->getResolutionErrorCode()); } public function testInvalidTypesGenerateTypeMismatchResults(): void