Bump command-signatures to 4094b657 (yc CLI completions) - #14767
Merged
Conversation
Updates the warp-command-signatures git dependency to pick up the merged Yandex Cloud CLI (yc) completion spec (command-signatures#303) and the git worktree name autocomplete suggestions (command-signatures#302). Co-Authored-By: Warp <agent@warp.dev>
acarl005
approved these changes
Aug 6, 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
Bumps the
warp-command-signaturesgit dependency inwarpdotdev/warpfrom4990fa1dto4094b657(currentwarpdotdev/command-signatures:main), so the client picks up newly-merged completion specs.Merged completion PRs now included:
yc) — Add completion spec: Yandex Cloud CLI (yc) command-signatures#303This is the app-side half of APP-5201: the
yccompletion spec merged upstream in command-signatures#303, and this PR wires that spec into the app by advancing the embedded-signatures dependency. OnlyCargo.toml(therev) andCargo.lock(the two git-source lines forwarp-command-signatures/warp-completion-metadata) change.The bump was produced by following the command-signatures repo's own
update-command-spec-versionskill (update therev, syncCargo.lock).Verification
Testing-exempt category: dependency/version bump. Per factory-verification, a data-only dependency bump adds no regression test (a test would only assert data presence, not detect a logic defect); the
ycspec itself is validated by command-signatures#303's own CI, which passed before merge.App-side checks (run against the new rev,
CARGO_TARGET_DIRredirected in the sandbox):cargo check --locked -p warp_completer→ success.--lockedprovesCargo.lockis in sync with the new rev; the consuming crate compiles against the updated specs.cargo test --locked -p warp_completer -- signatures::→ 12 passed / 0 failed. These load and validate the embedded command signatures (including the newycspec).cargo test --locked -p warp_completer→ 138 passed / 25 failed. All 25 failures are a pre-existing, environmental test-harness issue unrelated to this change —Tried to check FeatureFlag::CloudEnvironments before feature flags were initialized(crates/warp_features/src/lib.rs) — not caused by the dependency bump.No Rust source files change in this PR, so there is nothing for
./script/formatorclippyto act on beyond the compile above.User-facing note: the
yccompletion menu rendering from this exact spec was already demonstrated in a prior local GUI build against the spec branch; because this PR is a data-only dependency bump (no client code change), the GUI was not rebuilt for it. The rendering behavior is governed entirely by the upstream spec, which is validated by command-signatures#303.CHANGELOG-IMPROVEMENT: Added inline command completions for the Yandex Cloud CLI (
yc) and git worktree name suggestions.Originating thread: https://warpdev.slack.com/archives/C0BDQDW8V5E/p1785974187380919