fix: bump bundled copilot-cli#260
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates waza’s embedded GitHub Copilot CLI bundles to a newer upstream release to resolve sub-agent permission handling hangs, and makes embedded bundle generation reproducible via an environment pin.
Changes:
- Bumped embedded
copilot-clibundles from1.0.2to1.0.49across Windows/Linux/macOS (amd64/arm64), updatinggo:embedfilenames,Version, andCliHash. - Added
COPILOT_CLI_VERSIONsupport to the embedded bundle generator to pass-cli-versionthrough to thebundlertool. - Added an Unreleased changelog entry documenting the fix.
Show a summary per file
| File | Description |
|---|---|
| internal/embedded/zcopilot_windows_arm64.go | Embed + config updated to use 1.0.49 Windows arm64 bundle/hash. |
| internal/embedded/zcopilot_windows_amd64.go | Embed + config updated to use 1.0.49 Windows amd64 bundle/hash. |
| internal/embedded/zcopilot_linux_arm64.go | Embed + config updated to use 1.0.49 Linux arm64 bundle/hash. |
| internal/embedded/zcopilot_linux_amd64.go | Embed + config updated to use 1.0.49 Linux amd64 bundle/hash. |
| internal/embedded/zcopilot_darwin_arm64.go | Embed + config updated to use 1.0.49 macOS arm64 bundle/hash. |
| internal/embedded/zcopilot_darwin_amd64.go | Embed + config updated to use 1.0.49 macOS amd64 bundle/hash. |
| internal/embedded/zcopilot_1.0.49_windows_arm64.exe.zst | New embedded CLI bundle (LFS pointer) for Windows arm64. |
| internal/embedded/zcopilot_1.0.49_windows_arm64.exe.license | New license file for Windows arm64 bundle. |
| internal/embedded/zcopilot_1.0.49_windows_amd64.exe.zst | New embedded CLI bundle (LFS pointer) for Windows amd64. |
| internal/embedded/zcopilot_1.0.49_windows_amd64.exe.license | New license file for Windows amd64 bundle. |
| internal/embedded/zcopilot_1.0.49_linux_arm64.zst | New embedded CLI bundle (LFS pointer) for Linux arm64. |
| internal/embedded/zcopilot_1.0.49_linux_arm64.license | New license file for Linux arm64 bundle. |
| internal/embedded/zcopilot_1.0.49_linux_amd64.zst | New embedded CLI bundle (LFS pointer) for Linux amd64. |
| internal/embedded/zcopilot_1.0.49_linux_amd64.license | New license file for Linux amd64 bundle. |
| internal/embedded/zcopilot_1.0.49_darwin_arm64.zst | New embedded CLI bundle (LFS pointer) for macOS arm64. |
| internal/embedded/zcopilot_1.0.49_darwin_arm64.license | New license file for macOS arm64 bundle. |
| internal/embedded/zcopilot_1.0.49_darwin_amd64.zst | New embedded CLI bundle (LFS pointer) for macOS amd64. |
| internal/embedded/zcopilot_1.0.49_darwin_amd64.license | New license file for macOS amd64 bundle. |
| internal/embedded/zcopilot_1.0.2_windows_arm64.exe.zst | Removed old Windows arm64 bundle (LFS pointer). |
| internal/embedded/zcopilot_1.0.2_windows_amd64.exe.zst | Removed old Windows amd64 bundle (LFS pointer). |
| internal/embedded/zcopilot_1.0.2_linux_arm64.zst | Removed old Linux arm64 bundle (LFS pointer). |
| internal/embedded/zcopilot_1.0.2_linux_amd64.zst | Removed old Linux amd64 bundle (LFS pointer). |
| internal/embedded/zcopilot_1.0.2_darwin_arm64.zst | Removed old macOS arm64 bundle (LFS pointer). |
| internal/embedded/zcopilot_1.0.2_darwin_amd64.zst | Removed old macOS amd64 bundle (LFS pointer). |
| internal/embedded/generate/generate.go | Added COPILOT_CLI_VERSION env var passthrough to bundler invocation. |
| CHANGELOG.md | Documented the bundled copilot-cli bump and hang fix under Unreleased. |
Copilot's findings
Files not reviewed (6)
- internal/embedded/zcopilot_darwin_amd64.go: Language not supported
- internal/embedded/zcopilot_darwin_arm64.go: Language not supported
- internal/embedded/zcopilot_linux_amd64.go: Language not supported
- internal/embedded/zcopilot_linux_arm64.go: Language not supported
- internal/embedded/zcopilot_windows_amd64.go: Language not supported
- internal/embedded/zcopilot_windows_arm64.go: Language not supported
- Files reviewed: 14/26 changed files
- Comments generated: 0
This was referenced May 20, 2026
Merged
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
go:embedfilenames,Version, andCliHashvalues.COPILOT_CLI_VERSIONsupport to the embedded bundle generator for reproducible pinned CLI updates.Closes #244
Validation
go test ./internal/embedded ./internal/embedded/generate ./internal/executiongo test ./...go build -o "$tmpbin" ./cmd/waza && "$tmpbin" --versiongo tool bundler -check-only -cli-version 1.0.49for windows/arm64, windows/amd64, linux/arm64, linux/amd64, darwin/arm64, darwin/amd64make lint(ran; skipped becausegolangci-lintis not installed locally)