Skip to content

Commit a702162

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.4.0
1 parent f365cc3 commit a702162

3 files changed

Lines changed: 16 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
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.4.0] - 2021-11-22
6+
### Changed:
7+
- Performance improvements around searching for flags and aliases in the code base. Including changing search to use Aho-Corasick algorithm to find flags in file.
8+
- If `--dryRun` is set, extinctions will not be attempted.
9+
10+
### Added:
11+
- `--allowTags` which allows Code Refs to run against a tag instead of the branch.
12+
13+
### Fixed:
14+
- Bug where alias filepattern's were not being validated. This meant `ld-find-code-refs` would run but if that file did not exist no aliases were generated.
15+
516
## [2.3.0] - 2021-11-02
617
### Changed:
718
- Performance improvements around searching for flags and aliases in the code base.

build/package/circleci/orb.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ examples:
99
usage:
1010
version: 2.1
1111
orbs:
12-
launchdarkly: launchdarkly/ld-find-code-refs@2.3.0
12+
launchdarkly: launchdarkly/ld-find-code-refs@2.4.0
1313
workflows:
1414
main:
1515
jobs:
@@ -23,7 +23,7 @@ examples:
2323
usage:
2424
version: 2.1
2525
orbs:
26-
launchdarkly: launchdarkly/ld-find-code-refs@2.3.0
26+
launchdarkly: launchdarkly/ld-find-code-refs@2.4.0
2727
workflows:
2828
main:
2929
jobs:
@@ -38,7 +38,7 @@ examples:
3838
usage:
3939
version: 2.1
4040
orbs:
41-
launchdarkly: launchdarkly/ld-find-code-refs@2.3.0
41+
launchdarkly: launchdarkly/ld-find-code-refs@2.4.0
4242
workflows:
4343
main:
4444
jobs:
@@ -108,7 +108,7 @@ whether a feature flag was removed from code. May be set to 0 to disabled this f
108108
type: integer
109109
default: 10
110110
docker:
111-
- image: launchdarkly/ld-find-code-refs:2.3.0
111+
- image: launchdarkly/ld-find-code-refs:2.4.0
112112
entrypoint: sh
113113
steps:
114114
- checkout:

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package version
22

3-
const Version = "2.3.0"
3+
const Version = "2.4.0"

0 commit comments

Comments
 (0)