chore: prepare release 2.16.0 - #608
Merged
Merged
Conversation
Bump the version constant and add the changelog entry for 2.16.0. This is normally done by scripts/release/prepare-release.sh, which commits the same two files and pushes them straight to main. Rulesets forbid that push, so the release is being cut by hand — the same approach taken for 2.14.0 in #563. The changelog notes that 2.15.0 was never released. A release run in January 2026 published its Docker images and then failed on the same push to main, leaving no tag, release, or changelog entry behind. Numbering continues at 2.16.0 rather than reusing 2.15.0, so the published images stay immutable.
These files are the source of truth that gets copied into launchdarkly/find-code-references at release time, so they need to name the image tag and action version being released. publish_gha has been commented out since January 2026, so nothing copies them automatically right now; the downstream repo is being updated by hand to match. Deliberately not touching build/metadata/bitbucket or build/package/circleci: those targets are no longer published either, and bumping them would advertise a pipe and orb version that does not exist.
apucacao
marked this pull request as ready for review
July 28, 2026 19:10
erangeles
approved these changes
Jul 28, 2026
cspath1
approved these changes
Jul 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Prepares the 2.16.0 release by hand. This is the same approach taken for 2.14.0 in #563: the release workflow can publish artifacts but cannot complete a release, so the version bump lands as a normal PR and the tag, GitHub release, and downstream action update are done manually afterward.
Related to #607 — the fix being asked for there is #604. That issue stays open until the release and the downstream action update are actually out.
Why by hand
scripts/release/prepare-release.shcommits the version bump and changelog entry, thenpush-to-origin.shpushes that commit straight tomain. Rulesets reject it:This has now failed the same way three times: August 2025 (worked around manually in #563), January 2026 (#593–#595, which disabled the GHA/Bitbucket/CircleCI publish targets to get a Docker-only release out), and again today. The plan stated in #563 was to move to Release Please so that releasing never pushes to
main. That hasn't happened yet, so this PR follows the manual path again.What changed
internal/version/version.go2.14.0→2.16.0CHANGELOG.mdbuild/metadata/github-actions/Dockerfile2.16.0build/metadata/github-actions/README.mdfind-code-references@v2.16.0Behavior notes
ld-find-code-refs:2.15.0andld-find-code-refs-github-action:2.15.0to Docker Hub before failing, so those tags are already taken. Releasing as 2.16.0 keeps published images immutable.publishbefore failing, so2.16.0andlatestare on Docker Hub, built fromd2b674bwith the version constant patched to 2.16.0.brew install ld-find-code-refsis broken right now. That same run updated the homebrew tap formula to 2.16.0, but its download URLs point at release assets that don't exist yet. Creating the GitHub release fixes it; the shas need regenerating because the assets will come from a local build rather than the CI build.Testing
go build ./...andgo test ./aliases/...pass. Nothing here is executable code beyond the version constant.Provenance
Rebuilt as two narrative commits on
release-2.16.0-clean; the original branch isrelease-2.16.0. Tree hashes verified identical.