diff --git a/CHANGELOG.md b/CHANGELOG.md index 04ff49e4..e429b13d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ 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.11.7] - 2024-01-31 +### Changed: +- Updated docker images to use [alpine 3.19.1](https://www.alpinelinux.org/posts/Alpine-3.19.1-released.html) ([#426](https://github.com/launchdarkly/ld-find-code-refs/pull/426)) + ## [2.11.6] - 2024-01-24 ### Changed: - Dependencies updated diff --git a/build/metadata/bitbucket/README.md b/build/metadata/bitbucket/README.md index 819f692b..46ce1400 100644 --- a/build/metadata/bitbucket/README.md +++ b/build/metadata/bitbucket/README.md @@ -5,7 +5,7 @@ Job for finding and sending feature flag code references to LaunchDarkly Add the following snippet to the script section of your `bitbucket-pipelines.yml` file: ```yaml -- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.6 +- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.7 environment: LD_ACCESS_TOKEN: "" LD_PROJ_KEY: "" # Required unless using 'projects' block in configuration file then it must be omitted. @@ -50,7 +50,7 @@ A LaunchDarkly personal access token with writer-level access, or access to the Minimal configuration: ```yaml script: - - pipe: launchdarkly/ld-find-code-refs-pipe:2.11.6 + - pipe: launchdarkly/ld-find-code-refs-pipe:2.11.7 environment: LD_ACCESS_TOKEN: $LD_ACCESS_TOKEN LD_PROJ_KEY: $LD_PROJ_KEY @@ -59,7 +59,7 @@ script: Configuration sending 3 context lines to LaunchDarkly: ```yaml script: - - pipe: launchdarkly/ld-find-code-refs-pipe:2.11.6 + - pipe: launchdarkly/ld-find-code-refs-pipe:2.11.7 environment: LD_ACCESS_TOKEN: $LD_ACCESS_TOKEN LD_PROJ_KEY: $LD_PROJ_KEY diff --git a/build/metadata/bitbucket/pipe.yml b/build/metadata/bitbucket/pipe.yml index 3f19967c..961f19cc 100644 --- a/build/metadata/bitbucket/pipe.yml +++ b/build/metadata/bitbucket/pipe.yml @@ -1,5 +1,5 @@ name: LaunchDarkly Code References -image: launchdarkly/ld-find-code-refs-bitbucket-pipeline:2.11.6 +image: launchdarkly/ld-find-code-refs-bitbucket-pipeline:2.11.7 category: Feature flagging description: Job for finding and sending feature flag code references to LaunchDarkly repository: https://bitbucket.org/launchdarkly/ld-find-code-refs-pipe diff --git a/build/metadata/github-actions/Dockerfile b/build/metadata/github-actions/Dockerfile index 56b8058a..b4975c12 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.11.6 +FROM launchdarkly/ld-find-code-refs-github-action:2.11.7 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 9ee81dcf..071d02df 100644 --- a/build/metadata/github-actions/README.md +++ b/build/metadata/github-actions/README.md @@ -26,7 +26,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.11.6 + uses: launchdarkly/find-code-references@v2.11.7 with: accessToken: ${{ secrets.LD_ACCESS_TOKEN }} projKey: LD_PROJECT_KEY @@ -61,7 +61,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.11.6 + uses: launchdarkly/find-code-references@v2.11.7 with: accessToken: ${{ secrets.LD_ACCESS_TOKEN }} projKey: LD_PROJECT_KEY diff --git a/build/package/circleci/orb.yml b/build/package/circleci/orb.yml index 2ef63362..b5b98756 100644 --- a/build/package/circleci/orb.yml +++ b/build/package/circleci/orb.yml @@ -9,7 +9,7 @@ examples: usage: version: 2.1 orbs: - launchdarkly: launchdarkly/ld-find-code-refs@2.11.6 + launchdarkly: launchdarkly/ld-find-code-refs@2.11.7 workflows: main: jobs: @@ -23,7 +23,7 @@ examples: usage: version: 2.1 orbs: - launchdarkly: launchdarkly/ld-find-code-refs@2.11.6 + launchdarkly: launchdarkly/ld-find-code-refs@2.11.7 workflows: main: jobs: @@ -38,7 +38,7 @@ examples: usage: version: 2.1 orbs: - launchdarkly: launchdarkly/ld-find-code-refs@2.11.6 + launchdarkly: launchdarkly/ld-find-code-refs@2.11.7 workflows: main: jobs: @@ -107,7 +107,7 @@ jobs: type: integer default: 10 docker: - - image: launchdarkly/ld-find-code-refs:2.11.6 + - image: launchdarkly/ld-find-code-refs:2.11.7 entrypoint: sh steps: - checkout: diff --git a/internal/version/version.go b/internal/version/version.go index f443b973..4689074e 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "2.11.6" +const Version = "2.11.7"