Skip to content

Commit 05f3582

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.11.10
1 parent 04ccef1 commit 05f3582

File tree

7 files changed

+16
-12
lines changed

7 files changed

+16
-12
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
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).
44

5+
## [2.11.10] - 2024-03-14
6+
### Changed:
7+
- Use same http client with rate-limited retries for ld api client calls [#437](https://github.com/launchdarkly/ld-find-code-refs/pull/437)
8+
59
## [2.11.9] - 2024-03-04
610
### Changed:
711
- Respect rate-limit headers during retries [#434](https://github.com/launchdarkly/ld-find-code-refs/pull/434)

build/metadata/bitbucket/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Job for finding and sending feature flag code references to LaunchDarkly
55
Add the following snippet to the script section of your `bitbucket-pipelines.yml` file:
66

77
```yaml
8-
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.9
8+
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.10
99
environment:
1010
LD_ACCESS_TOKEN: "<string>"
1111
LD_PROJ_KEY: "<string>" # 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
5050
Minimal configuration:
5151
```yaml
5252
script:
53-
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.9
53+
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.10
5454
environment:
5555
LD_ACCESS_TOKEN: $LD_ACCESS_TOKEN
5656
LD_PROJ_KEY: $LD_PROJ_KEY
@@ -59,7 +59,7 @@ script:
5959
Configuration sending 3 context lines to LaunchDarkly:
6060
```yaml
6161
script:
62-
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.9
62+
- pipe: launchdarkly/ld-find-code-refs-pipe:2.11.10
6363
environment:
6464
LD_ACCESS_TOKEN: $LD_ACCESS_TOKEN
6565
LD_PROJ_KEY: $LD_PROJ_KEY

build/metadata/bitbucket/pipe.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: LaunchDarkly Code References
2-
image: launchdarkly/ld-find-code-refs-bitbucket-pipeline:2.11.9
2+
image: launchdarkly/ld-find-code-refs-bitbucket-pipeline:2.11.10
33
category: Feature flagging
44
description: Job for finding and sending feature flag code references to LaunchDarkly
55
repository: https://bitbucket.org/launchdarkly/ld-find-code-refs-pipe

build/metadata/github-actions/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM launchdarkly/ld-find-code-refs-github-action:2.11.9
1+
FROM launchdarkly/ld-find-code-refs-github-action:2.11.10
22

33
LABEL com.github.actions.name="LaunchDarkly Code References"
44
LABEL com.github.actions.description="Find references to feature flags in your code."

build/metadata/github-actions/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
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
2828
- name: LaunchDarkly Code References
29-
uses: launchdarkly/[email protected].9
29+
uses: launchdarkly/[email protected].10
3030
with:
3131
accessToken: ${{ secrets.LD_ACCESS_TOKEN }}
3232
projKey: LD_PROJECT_KEY
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
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
6363
- name: LaunchDarkly Code References
64-
uses: launchdarkly/[email protected].9
64+
uses: launchdarkly/[email protected].10
6565
with:
6666
accessToken: ${{ secrets.LD_ACCESS_TOKEN }}
6767
projKey: LD_PROJECT_KEY

build/package/circleci/orb.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ examples:
99
usage:
1010
version: 2.1
1111
orbs:
12-
launchdarkly: launchdarkly/[email protected].9
12+
launchdarkly: launchdarkly/[email protected].10
1313
workflows:
1414
main:
1515
jobs:
@@ -23,7 +23,7 @@ examples:
2323
usage:
2424
version: 2.1
2525
orbs:
26-
launchdarkly: launchdarkly/[email protected].9
26+
launchdarkly: launchdarkly/[email protected].10
2727
workflows:
2828
main:
2929
jobs:
@@ -38,7 +38,7 @@ examples:
3838
usage:
3939
version: 2.1
4040
orbs:
41-
launchdarkly: launchdarkly/[email protected].9
41+
launchdarkly: launchdarkly/[email protected].10
4242
workflows:
4343
main:
4444
jobs:
@@ -107,7 +107,7 @@ jobs:
107107
type: integer
108108
default: 10
109109
docker:
110-
- image: launchdarkly/ld-find-code-refs:2.11.9
110+
- image: launchdarkly/ld-find-code-refs:2.11.10
111111
entrypoint: sh
112112
steps:
113113
- checkout:

internal/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package version
22

3-
const Version = "2.11.9"
3+
const Version = "2.11.10"

0 commit comments

Comments
 (0)