Skip to content

Update dependency cli/cli to v2.92.0#1193

Open
renovate[bot] wants to merge 1 commit into
v2from
renovate/cli-cli-2.x
Open

Update dependency cli/cli to v2.92.0#1193
renovate[bot] wants to merge 1 commit into
v2from
renovate/cli-cli-2.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jul 17, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
cli/cli minor v2.52.0v2.92.0

Release Notes

cli/cli (cli/cli)

v2.92.0: GitHub CLI 2.92.0

Compare Source

Support GitHub Enterprise Cloud (GHEC) in skill commandset

Now gh skill subcommands (install, preview, publish, search, update) are able to work with GHEC hosts with data residency.

Add --allow-hidden-dirs flag to skill preview

Following the addition of --allow-hidden-dirs to skill install in the previous release, now the flag is also supported in skill preview, allowing users to preview skills located in hidden (dot-prefixed) directories such as .claude/skills/, .agents/skills/, and .github/skills/.

What's Changed
✨ Features
🐛 Fixes
📚 Docs & Chores
:dependabot: Dependencies
New Contributors

Full Changelog: cli/cli@v2.91.0...v2.92.0

v2.91.0: GitHub CLI 2.91.0

Compare Source

GitHub CLI now collects pseudonymous telemetry

To better understand how features are used in practice, especially as agentic adoption grows, GitHub CLI now sends pseudonymous telemetry.

See Telemetry for more details on what's collected, why, and how to opt out.

Support more agents in gh skill

Thanks to community feedback, gh now supports a large number of agent hosts. Run gh skill install --help for the list of available agents.

Improve skill discovery

gh skill install now adds the --allow-hidden-dirs flag to support discovering skills in hidden (dot-prefixed) directories such as .claude/skills/, .agents/skills/, and .github/skills/.

Detect skills re-published from other sources

GitHut CLI now detects if the skill to be installed is re-published from an upstream source and offers the option to install it from there. The --upstream flag is also added for non-interactive use cases.

What's Changed

✨ Features
🐛 Fixes
📚 Docs & Chores

Full Changelog: cli/cli@v2.90.0...v2.91.0

v2.90.0: GitHub CLI 2.90.0

Compare Source

Manage agent skills with gh skill (Public Preview)

Agent skills are portable sets of instructions, scripts, and resources that teach AI coding agents how to perform specific tasks. The new gh skill command makes it easy to discover, install, manage, and publish agent skills from GitHub repositories - right from the CLI.


# Discover skills
gh skill search copilot

# Preview a skill without installing
gh skill preview github/awesome-copilot documentation-writer

# Install a skill
gh skill install github/awesome-copilot documentation-writer

# Pin to a specific version
gh skill install github/awesome-copilot documentation-writer --pin v1.2.0

# Check installed skills for updates
gh skill update --all

# Validate and publish your own skills
gh skill publish --dry-run

Skills are automatically installed to the correct directory for your agent host. gh skill supports GitHub Copilot, Claude Code, Cursor, Codex, Gemini CLI, and Antigravity. Target a specific agent and scope with --agent and --scope flags.

gh skill publish validates skills against the Agent Skills specification and checks remote settings like tag protection and immutable releases to improve supply chain security.

Read the full announcement on the GitHub Blog.

gh skill is launching in public preview and is subject to change without notice.

Official extension suggestions

When you run a command that matches a known official extension that isn't installed (e.g. gh stack), the CLI now offers to install it instead of showing a generic "unknown command" error.

This feature is available for github/gh-aw and github/gh-stack.

When possible, you'll be prompted to install immediately. When prompting isn't possible, the CLI prints the gh extension install command to run.

gh extension install no longer requires authentication

gh extension install previously required a valid auth token even though it only needs to download a public release asset. The auth check has been removed, so you can install extensions without being logged in.

What's Changed
✨ Features
🐛 Fixes
📚 Docs & Chores
:dependabot: Dependencies
New Contributors

Full Changelog: cli/cli@v2.89.0...v2.90.0

v2.89.0: GitHub CLI 2.89.0

Compare Source

:copilot: gh agent-task now works on ghe.com tenancies

gh agent-task commands previously failed with 401 Unauthorized for users on ghe.com tenancy hosts because the Copilot API URL was hardcoded. The URL is now resolved dynamically per host, so gh agent-task works correctly regardless of your GitHub hosting environment.

Experimental new prompter

A new TUI-based prompter powered by charmbracelet/huh is available behind the GH_EXPERIMENTAL_PROMPTER environment variable. This is an early preview — try it out and share feedback!

export GH_EXPERIMENTAL_PROMPTER=1
gh issue create and gh issue transfer no longer require extra token scopes

gh issue create and gh issue transfer previously fetched repository fields they didn't need, which could require additional token scopes. These commands now fetch only the minimal fields necessary for issue operations.

What's Changed
✨ Features
  • gh pr create, gh issue create, gh issue edit: search-based assignee selection and login-based mutation on github.com by @​BagToad in #​13009
  • Add experimental huh-only prompter gated by GH_EXPERIMENTAL_PROMPTER by @​BagToad in #​12859
🐛 Fixes
📚 Docs & Chores
:dependabot: Dependencies
New Contributors

Full Changelog: v2.88.1...v2.89.0

v2.88.1: GitHub CLI 2.88.1

Compare Source

Fix pr commands failing with read:project scope error

v2.88.0 introduced a regression where pr commands would fail with the error:

error: your authentication token is missing required scopes [read:project]
To request it, run:  gh auth refresh -s read:project

Previously, missing read:project scope was gracefully handled, and project data was silently skipped. A change inadvertently broke the error matching that enabled this graceful degradation. v2.88.1 reverts these changes so that pr commands work correctly without requiring the read:project scope.

What's Changed

Full Changelog: cli/cli@v2.88.0...v2.88.1

v2.88.0: GitHub CLI 2.88.0

Compare Source

:copilot: Request Copilot Code Review from gh

image

gh pr create and gh pr edit now support Copilot Code Review as a reviewer. Request a review with --add-reviewer @​copilot, or select Copilot interactively from the searchable reviewer prompt.

Create a pull request and request review from Copilot:

gh pr create --reviewer @​copilot

Edit a pull request and request review from Copilot:

gh pr edit --add-reviewer @​copilot

Close issues as duplicates with gh issue close --duplicate-of

You can now close issues as duplicates and link to a duplicate issue directly from the CLI. The new --duplicate-of flag accepts an issue number or URL and marks the closed issue as a duplicate of the referenced one. You can also use --reason duplicate to set the close reason without linking a specific issue.


# Close as duplicate, linking to the original issue
gh issue close 123 --duplicate-of 456

# Close with duplicate reason only
gh issue close 123 --reason duplicate

JSON support for gh agent-task

gh agent-task list and gh agent-task view now support --json, --jq, and --template flags, consistent with other gh commands.

gh agent-task list --json id,name,state
gh agent-task view <id> --json state --jq '.state'

What's Changed

✨ Features
🐛 Fixes
📚 Docs & Chores
:dependabot: Dependencies

New Contributors

Full Changelog: cli/cli@v2.87.3...v2.88.0

v2.87.3: GitHub CLI 2.87.3

Compare Source

What's Changed

Full Changelog: cli/cli@v2.87.2...v2.87.3

v2.87.2: GitHub CLI 2.87.2

Compare Source

ℹ️ Note

This release was cut primarily to resolve a publishing issue. We recommend reviewing the v2.87.1 release notes for the complete set of latest features and fixes.

What's Changed

Full Changelog: cli/cli@v2.87.1...v2.87.2

v2.87.1: GitHub CLI 2.87.1

Compare Source

⚠️ Incomplete Release

The v2.87.1 release experienced a failure in our workflow and is not fully published to the designated package managers/repositories. This is resolved in v2.87.2, so we recommend using that release instead.

What's Changed

Full Changelog: cli/cli@v2.87.0...v2.87.1

v2.87.0: GitHub CLI 2.87.0

Compare Source

gh workflow run immediately returns workflow run URL

One of our most requested features - with the latest changes in GitHub API, gh workflow run will immediately print the created workflow run URL.

Improved gh auth login experience in VM/WSL environments

We have observed rare cases of time drift between the wall and monotonic clocks, mostly in WSL or VM environments, causing failures during polling for the OAuth token. This new release implements measures to account for such situations.

If you continue to experience gh auth login issues in WSL, please comment in #​9370

:copilot: Request Copilot Code Review from gh + performance improvements

gh pr edit now supports Copilot Code Review as a reviewer. You can request a review from Copilot using the --add-reviewer @&#8203;copilot flag or interactively by selecting reviewers in the prompts.

This release also introduces a new search experience for selecting reviewers and assignees in gh pr edit. Instead of loading all collaborators and teams upfront, results are now fetched based on inputs to a new search option. Initial options are suggestions based on those involved with the pull request already.

? Reviewers  [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]
  [ ]  Search (7472 more)
  [x]  BagToad (Kynan Ware)
> [x]  Copilot (AI)

This experience will follow in gh pr create and gh issue for assignees in a later release.

What's Changed

✨ Features
📚 Docs & Chores
:dependabot: Dependencies

New Contributors

Full Changelog: cli/cli@v2.86.0...v2.87.0

v2.86.0: GitHub CLI 2.86.0

Compare Source

:copilot: Install and run GitHub Copilot CLI directly from gh

Since we deprecated the GitHub Copilot in the CLI extension in favor of the new agentic GitHub Copilot CLI, we want to give developers using gh a simple way to get started using our most powerful terminal assistant.

  • gh copilot will prompt to install, then run Copilot CLI
  • gh copilot <args> will execute the Copilot CLI, forwarding any arguments and flags

For more information and usage options, run gh copilot --help.

What's Changed
✨ Features
📚 Docs & Chores
New Contributors

Full Changelog: cli/cli@v2.85.0...v2.86.0

v2.85.0: GitHub CLI 2.85.0

Compare Source

What's Changed
✨ Features
🐛 Fixes
📚 Docs & Chores
:dependabot: Dependencies
New Contributors

Full Changelog: cli/cli@v2.83.2...v2.85.0

v2.83.2: GitHub CLI 2.83.2

Compare Source

What's Changed
🐛 Fixes
📚 Docs & Chores

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from cb75b07 to 65db3a0 Compare August 1, 2024 18:07
@renovate renovate Bot changed the title Update dependency cli/cli to v2.53.0 Update dependency cli/cli to v2.54.0 Aug 1, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 65db3a0 to 0b3e8eb Compare August 7, 2024 14:44
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 0b3e8eb to d4271cf Compare August 20, 2024 19:22
@renovate renovate Bot changed the title Update dependency cli/cli to v2.54.0 Update dependency cli/cli to v2.55.0 Aug 20, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from d4271cf to 3631860 Compare September 9, 2024 12:45
@renovate renovate Bot changed the title Update dependency cli/cli to v2.55.0 Update dependency cli/cli to v2.56.0 Sep 9, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 3631860 to 6b5f802 Compare September 16, 2024 17:08
@renovate renovate Bot changed the title Update dependency cli/cli to v2.56.0 Update dependency cli/cli to v2.57.0 Sep 16, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 6b5f802 to d84bce0 Compare October 1, 2024 22:23
@renovate renovate Bot changed the title Update dependency cli/cli to v2.57.0 Update dependency cli/cli to v2.58.0 Oct 1, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from d84bce0 to 4c8cf05 Compare October 16, 2024 13:15
@renovate renovate Bot changed the title Update dependency cli/cli to v2.58.0 Update dependency cli/cli to v2.59.0 Oct 16, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 4c8cf05 to 2a6c3b6 Compare October 24, 2024 20:02
@renovate renovate Bot changed the title Update dependency cli/cli to v2.59.0 Update dependency cli/cli to v2.60.0 Oct 24, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 2a6c3b6 to bf9764b Compare October 25, 2024 18:04
@renovate renovate Bot changed the title Update dependency cli/cli to v2.60.0 Update dependency cli/cli to v2.60.1 Oct 25, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from bf9764b to ba10ce3 Compare November 7, 2024 15:58
@renovate renovate Bot changed the title Update dependency cli/cli to v2.60.1 Update dependency cli/cli to v2.61.0 Nov 7, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from ba10ce3 to 7651471 Compare November 14, 2024 18:25
@renovate renovate Bot changed the title Update dependency cli/cli to v2.61.0 Update dependency cli/cli to v2.62.0 Nov 14, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 7651471 to ca6636f Compare November 27, 2024 22:25
@renovate renovate Bot changed the title Update dependency cli/cli to v2.62.0 Update dependency cli/cli to v2.63.0 Nov 27, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from ca6636f to 4542248 Compare December 4, 2024 01:44
@renovate renovate Bot changed the title Update dependency cli/cli to v2.63.0 Update dependency cli/cli to v2.63.1 Dec 4, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 4542248 to d385568 Compare December 5, 2024 18:57
@renovate renovate Bot changed the title Update dependency cli/cli to v2.63.1 Update dependency cli/cli to v2.63.2 Dec 5, 2024
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from d385568 to e1b00a2 Compare December 21, 2024 20:55
@renovate renovate Bot changed the title Update dependency cli/cli to v2.63.2 Update dependency cli/cli to v2.64.0 Dec 21, 2024
- name: charmbracelet/gum@v0.14.1
- name: charmbracelet/vhs@v0.7.2
- name: ClementTsang/bottom@0.9.6
- name: cli/cli@v2.52.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jason

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Much appreciated 👏

@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 1e0fddc to 43c3dea Compare March 19, 2025 20:07
@renovate renovate Bot changed the title Update dependency cli/cli to v2.68.1 Update dependency cli/cli to v2.69.0 Mar 19, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 43c3dea to a5d596f Compare April 15, 2025 11:16
@renovate renovate Bot changed the title Update dependency cli/cli to v2.69.0 Update dependency cli/cli to v2.70.0 Apr 15, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from a5d596f to 93e56c8 Compare April 23, 2025 17:13
@renovate renovate Bot changed the title Update dependency cli/cli to v2.70.0 Update dependency cli/cli to v2.71.0 Apr 23, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 93e56c8 to 387a2e2 Compare April 24, 2025 16:51
@renovate renovate Bot changed the title Update dependency cli/cli to v2.71.0 Update dependency cli/cli to v2.71.1 Apr 24, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 387a2e2 to e32643f Compare April 24, 2025 23:28
@renovate renovate Bot changed the title Update dependency cli/cli to v2.71.1 Update dependency cli/cli to v2.71.2 Apr 24, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from e32643f to 08c9605 Compare April 30, 2025 22:57
@renovate renovate Bot changed the title Update dependency cli/cli to v2.71.2 Update dependency cli/cli to v2.72.0 Apr 30, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 08c9605 to 308a393 Compare May 19, 2025 23:52
@renovate renovate Bot changed the title Update dependency cli/cli to v2.72.0 Update dependency cli/cli to v2.73.0 May 19, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 308a393 to 3765503 Compare May 29, 2025 22:01
@renovate renovate Bot changed the title Update dependency cli/cli to v2.73.0 Update dependency cli/cli to v2.74.0 May 29, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 3765503 to 4ea21c4 Compare June 10, 2025 19:02
@renovate renovate Bot changed the title Update dependency cli/cli to v2.74.0 Update dependency cli/cli to v2.74.1 Jun 10, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 4ea21c4 to 9f6d53a Compare June 18, 2025 21:57
@renovate renovate Bot changed the title Update dependency cli/cli to v2.74.1 Update dependency cli/cli to v2.74.2 Jun 18, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 9f6d53a to eb2aed5 Compare July 9, 2025 16:54
@renovate renovate Bot changed the title Update dependency cli/cli to v2.74.2 Update dependency cli/cli to v2.75.0 Jul 9, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from eb2aed5 to 84de8f3 Compare July 14, 2025 23:05
@renovate renovate Bot changed the title Update dependency cli/cli to v2.75.0 Update dependency cli/cli to v2.75.1 Jul 14, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 84de8f3 to 83fe439 Compare July 17, 2025 22:48
@renovate renovate Bot changed the title Update dependency cli/cli to v2.75.1 Update dependency cli/cli to v2.76.0 Jul 17, 2025
@renovate renovate Bot force-pushed the renovate/cli-cli-2.x branch from 83fe439 to 3754ea7 Compare July 23, 2025 22:56
@renovate renovate Bot changed the title Update dependency cli/cli to v2.76.0 Update dependency cli/cli to v2.76.1 Jul 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant