Skip to content

Commit

Permalink
Releasing version 2.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyReleaseBot committed Sep 20, 2023
1 parent 0a1af5a commit 1cd7349
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.3] - 2023-09-20
### Changed:
- Dependencies updated

### Fixed:
- Docker image was not being built with correct alpine version (does not affect github or bitbucket integrations)

## [2.11.2] - 2023-08-21
### Fixed:
- Updates to release process
Expand Down
6 changes: 3 additions & 3 deletions build/metadata/bitbucket/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.3
environment:
LD_ACCESS_TOKEN: "<string>"
LD_PROJ_KEY: "<string>" # Required unless using 'projects' block in configuration file then it must be omitted.
Expand Down Expand Up @@ -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.2
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.3
environment:
LD_ACCESS_TOKEN: $LD_ACCESS_TOKEN
LD_PROJ_KEY: $LD_PROJ_KEY
Expand All @@ -59,7 +59,7 @@ script:
Configuration sending 3 context lines to LaunchDarkly:
```yaml
script:
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.2
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.3
environment:
LD_ACCESS_TOKEN: $LD_ACCESS_TOKEN
LD_PROJ_KEY: $LD_PROJ_KEY
Expand Down
2 changes: 1 addition & 1 deletion build/metadata/bitbucket/pipe.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: LaunchDarkly Code References
image: launchdarkly/ld-find-code-refs-bitbucket-pipeline:2.11.2
image: launchdarkly/ld-find-code-refs-bitbucket-pipeline:2.11.3
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
Expand Down
2 changes: 1 addition & 1 deletion build/metadata/github-actions/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM launchdarkly/ld-find-code-refs-github-action:2.11.2
FROM launchdarkly/ld-find-code-refs-github-action:2.11.3

LABEL com.github.actions.name="LaunchDarkly Code References"
LABEL com.github.actions.description="Find references to feature flags in your code."
Expand Down
4 changes: 2 additions & 2 deletions build/metadata/github-actions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
fetch-depth: 10 # 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/[email protected].2
uses: launchdarkly/[email protected].3
with:
accessToken: ${{ secrets.LD_ACCESS_TOKEN }}
projKey: LD_PROJECT_KEY
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
with:
fetch-depth: 10 # 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/[email protected].2
uses: launchdarkly/[email protected].3
with:
accessToken: ${{ secrets.LD_ACCESS_TOKEN }}
projKey: LD_PROJECT_KEY
Expand Down
8 changes: 4 additions & 4 deletions build/package/circleci/orb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ examples:
usage:
version: 2.1
orbs:
launchdarkly: launchdarkly/[email protected].2
launchdarkly: launchdarkly/[email protected].3
workflows:
main:
jobs:
Expand All @@ -23,7 +23,7 @@ examples:
usage:
version: 2.1
orbs:
launchdarkly: launchdarkly/[email protected].2
launchdarkly: launchdarkly/[email protected].3
workflows:
main:
jobs:
Expand All @@ -38,7 +38,7 @@ examples:
usage:
version: 2.1
orbs:
launchdarkly: launchdarkly/[email protected].2
launchdarkly: launchdarkly/[email protected].3
workflows:
main:
jobs:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
type: integer
default: 10
docker:
- image: launchdarkly/ld-find-code-refs:2.11.2
- image: launchdarkly/ld-find-code-refs:2.11.3
entrypoint: sh
steps:
- checkout:
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "2.11.2"
const Version = "2.11.3"

0 comments on commit 1cd7349

Please sign in to comment.