From ed498c133b83eecff49b56cad3bc08e9dd35981f Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Mon, 23 Feb 2026 17:07:49 -0500 Subject: [PATCH 1/2] chore: Update fetch-depth comment --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 1b27fe8..8ce6818 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -18,7 +18,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 - uses: actions/setup-python@v5 if: ${{ steps.release.outputs.releases_created == 'true' }} From cddb9e0462bc3d23d484c4181fe5cb82b2b554f6 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Wed, 25 Feb 2026 09:52:13 -0500 Subject: [PATCH 2/2] Make .mypy_cache directory --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 65eff8d..7c2e380 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ test: install .PHONY: lint lint: #! Run type analysis and linting checks lint: install + @mkdir -p .mypy_cache @poetry run mypy ld_openfeature tests #