diff --git a/CHANGELOG.md b/CHANGELOG.md index 6435cd2d..709d8a9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to the ld-find-code-refs program will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [2.16.0] - 2026-07-28 +Version 2.15.0 was never released. Its Docker images exist on Docker Hub from an incomplete release run, but there is no 2.15.0 tag, release, or changelog entry. Use 2.16.0 instead. + +### Added: +- debug logging for HTTP response status codes +- auth header for GitHub Action runs + +### Fixed: +- filepattern alias contents are now concatenated once per alias rather than once per flag key, fixing out-of-memory failures on large repositories + +### Changed: +- updated dependencies + ## [2.14.0] - 2025-08-12 ### Added: - `--skipArchivedFlags` option to instruct the tool to ignore any flag keys it finds from archived flags diff --git a/build/metadata/github-actions/Dockerfile b/build/metadata/github-actions/Dockerfile index e3d5f043..b9c75e1a 100644 --- a/build/metadata/github-actions/Dockerfile +++ b/build/metadata/github-actions/Dockerfile @@ -1,4 +1,4 @@ -FROM launchdarkly/ld-find-code-refs-github-action:2.14.0 +FROM launchdarkly/ld-find-code-refs-github-action:2.16.0 LABEL com.github.actions.name="LaunchDarkly Code References" LABEL com.github.actions.description="Find references to feature flags in your code." diff --git a/build/metadata/github-actions/README.md b/build/metadata/github-actions/README.md index 36fe689b..00418555 100644 --- a/build/metadata/github-actions/README.md +++ b/build/metadata/github-actions/README.md @@ -28,7 +28,7 @@ jobs: with: fetch-depth: 11 # This value must be set if the lookback configuration option is not disabled for find-code-references. Read more: https://github.com/launchdarkly/ld-find-code-refs#searching-for-unused-flags-extinctions - name: LaunchDarkly Code References - uses: launchdarkly/find-code-references@v2.14.0 + uses: launchdarkly/find-code-references@v2.16.0 with: accessToken: ${{ secrets.LD_ACCESS_TOKEN }} projKey: LD_PROJECT_KEY @@ -71,7 +71,7 @@ jobs: with: fetch-depth: 11 # This value must be set if the lookback configuration option is not disabled for find-code-references. Read more: https://github.com/launchdarkly/ld-find-code-refs#searching-for-unused-flags-extinctions - name: LaunchDarkly Code References - uses: launchdarkly/find-code-references@v2.14.0 + uses: launchdarkly/find-code-references@v2.16.0 with: accessToken: ${{ secrets.LD_ACCESS_TOKEN }} projKey: LD_PROJECT_KEY diff --git a/internal/version/version.go b/internal/version/version.go index 89c58ec7..6d4449da 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "2.14.0" +const Version = "2.16.0"