Skip to content

feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.100.0 ) - #331

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

feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.100.0 )#331
parsec-renovate[bot] wants to merge 1 commit into
mainfrom
renovate/aqua-cli-cli-2.x

Conversation

@parsec-renovate

@parsec-renovate parsec-renovate Bot commented May 27, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
aqua:cli/cli tools minor 2.92.02.100.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

cli/cli (aqua:cli/cli)

v2.100.0: GitHub CLI 2.100.0

Compare Source

Experimental: Route GitHub API traffic through a custom host

Organizations can now route a GitHub host's API traffic through a gateway using the new per-host api_host configuration:

# Route API traffic for github.com through a gateway
gh config set api_host gh-gateway.example.com --host github.com

# Read the configured API host
gh config get api_host --host github.com

The original host remains in use for authentication, Git remotes, and browser URLs.

[!NOTE]
api_host is experimental and is not a security boundary. Requests may still reach the original host.

What's Changed

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

Full Changelog: cli/cli@v2.99.0...v2.100.0

v2.99.0: GitHub CLI 2.99.0

Compare Source

Attach images and videos to issues and pull requests

The repeatable --attach flag uploads local images and videos and adds them to issue, pull request, or comment bodies. If a body already references the local path, gh replaces it with the uploaded URL; otherwise it appends the attachment:

# Attach files when creating or editing an issue
gh issue create --attach './repro.png#The error state'
gh issue edit 123 --attach ./walkthrough.mp4

# Attach files when creating or editing a pull request
gh pr create --attach ./before.png
gh pr edit 456 --attach ./after.png

# Attach files to comments
gh issue comment 123 --attach ./repro.png
gh pr comment 456 --attach ./result.mp4

Repeat the flag to attach multiple files in a single invocation. Attachments are available on GitHub.com and GitHub Enterprise Cloud.

For more information see https://gh.io/gh-attach and https://github.blog/changelog/2026-09-01-github-cli-media-in-issues-pull-requests-and-comments/

Worktree support extended to gh issue develop

gh issue develop can now create a linked branch and check it out in a new Git worktree, leaving your current working copy unchanged:

# Create a linked branch for an issue and check it out in a worktree
gh issue develop 123 --checkout --worktree /path/to/wt-feature

What's Changed

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

New Contributors

Full Changelog: cli/cli@v2.98.0...v2.99.0

v2.98.0: GitHub CLI 2.98.0

Compare Source

Security

A security vulnerability has been identified, and fixed, that binds the local forwarded port to all available network interfaces by default.

Users of gh codespace ports forward are advised to update gh to version v2.98.0 as soon as possible.

For more information see: GHSA-vfhh-p7hm-pxfh

Support worktrees in pr checkout

Users can now checkout a pull request into a git worktree by using the new --worktree PATH flag in gh pr checkout:

gh pr checkout 12 --worktree ../wt-feature

Add semantic search to search issues

The gh search issues command now supports semantic search for issues. Users can select the search type by passing the --search-type flag:

gh search issues --search-type semantic ...

gh search issues --search-type hybrid ...

For more information about semantic search see: "Improved Search for github issues is now generally available".

What's Changed

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

New Contributors

Full Changelog: cli/cli@v2.97.0...v2.98.0

v2.97.0: GitHub CLI 2.97.0

Compare Source

Security

Four security vulnerabilities have been identified, and fixed, in this release. Users are advised to update gh to version v2.97.0 as soon as possible.

Several commands (including gh gist view, gh api, gh pr diff, gh release download --output -, gh codespace logs, gh skills preview, and gh agent-task view/create) printed externally controlled content without neutralizing terminal escape sequences, allowing escape sequence injection into a user's terminal.

See GHSA-3m3g-3wcr-px46 for more information.

Some request URLs were built without escaping their variable path components, so a value containing URL path metacharacters could alter the request path and cause gh to address a different resource than intended.

See GHSA-4fjg-2h4q-fwg3 for more information.

gh auth status (without --show-token) could print a portion of the authentication token in plaintext for token types whose format contains an underscore after the prefix, such as github_pat_*, ghs_*, and ghu_*.

See GHSA-cg6r-mpgc-h9mm for more information.

gh attestation verify built the certificate matcher from --signer-repo and --signer-workflow without escaping regex metacharacters, so a lookalike repository or workflow name could satisfy a matcher intended for a trusted signer and bypass attestation verification.

See GHSA-mm27-mwq9-fr5g for more information.

Address project fields and items by name in gh project

gh project item-edit and gh project item-list can now reference project fields and single-select options by name:

# Set an item's field by name
gh project item-edit 1 --owner monalisa --url <url> --field "Status" --value "In Progress"

# Show named fields as extra columns
gh project item-list 1 --owner "@me" --field "Status" --field "Priority"

What's Changed

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

New Contributors

Full Changelog: cli/cli@v2.96.0...v2.97.0

v2.96.0: GitHub CLI 2.96.0

Compare Source

Security

A security vulnerability has been identified, and fixed, that could allow command execution on a user's computer when connecting to a malicious Codespace via gh codespace jupyter.

Users of gh codespace jupyter are advised to update gh to version v2.96.0 as soon as possible.

For more information see: GHSA-8cg3-r6g9-fpg2

Download release assets without authentication

gh release download now works against public repositories without authentication, matching gh extension install. A token is still used when one is present:

# Download assets from a public repository, no login required
gh release download v2.96.0 --repo cli/cli

What's Changed

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

New Contributors

Full Changelog: cli/cli@v2.95.0...v2.96.0

v2.95.0: GitHub CLI 2.95.0

Compare Source

Read repository files and directories with gh repo read-file and gh repo read-dir

Two new preview commands read repository contents without cloning:

# Read a single file to stdout
gh repo read-file README.md --repo cli/cli

# Read from a specific branch, tag, or commit
gh repo read-file go.mod --ref v2.94.0 --repo cli/cli

# Write a file to disk (use --clobber to overwrite)
gh repo read-file README.md --output ./README.md --repo cli/cli

# List the entries in a directory
gh repo read-dir script --repo cli/cli

Both commands default to the repository's default branch, accept --ref to target any branch, tag, or commit, and support --json, --jq, and --template for scripting. This makes it easy for agents and automation to inspect a repo without a full checkout.

[!NOTE]
gh repo read-file and gh repo read-dir are in preview and subject to change without notice.

What's Changed

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

Full Changelog: cli/cli@v2.94.0...v2.95.0

v2.94.0: GitHub CLI 2.94.0

Compare Source

Issue types, sub-issues, and relationships in gh issue

issue-view-monas-cafe-with-frame

This release brings GitHub's advanced issue features to gh issue create, edit, view, and list. You can set and view an issue's type, organize work with sub-issues, and track blocked-by and blocking relationships without leaving the command line:

# Set an issue's type
gh issue create --type Bug
gh issue edit 123 --type Bug

# Organize work with sub-issues
gh issue create --parent 100
gh issue edit 100 --add-sub-issue 123

# Track blocked-by and blocking relationships
gh issue create --blocked-by 200
gh issue edit 123 --add-blocking 300

Issue types and sub-issues are available on GitHub.com and GHES 3.17+; relationships require GHES 3.19+.

Manage discussions with gh discussion

discussion-view-monas-cafe-with-frame

This release introduces the discussion command set for working with GitHub Discussions in gh:

# List discussions
gh discussion list

# View a discussion, its comments, or replies to a comment
gh discussion view 123 --comments

# Create a discussion
gh discussion create

# Edit a discussion
gh discussion edit 123

# Comment on a discussion
gh discussion comment 123

# Reply to a comment using its URL
gh discussion comment <url>

Run gh discussion --help for more information.

[!NOTE]
The discussion command set is in preview and is subject to change without notice.

Equip your agents with new gh features

Teach your agents how to leverage new GitHub CLI features on release day by installing the gh skill:

# Install
gh skill install cli/cli gh --scope user

# Or update
gh skill update gh

What's Changed

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

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/New_York)

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate CLI.

@parsec-renovate
parsec-renovate Bot force-pushed the renovate/aqua-cli-cli-2.x branch from 05a19e8 to 0d23c7e Compare June 10, 2026 22:47
@parsec-renovate parsec-renovate Bot changed the title feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.93.0 ) feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.94.0 ) Jun 10, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/aqua-cli-cli-2.x branch from 0d23c7e to 649d4ce Compare June 17, 2026 20:55
@parsec-renovate parsec-renovate Bot changed the title feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.94.0 ) feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.95.0 ) Jun 17, 2026
@parsec-renovate parsec-renovate Bot changed the title feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.95.0 ) feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.96.0 ) Jul 2, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/aqua-cli-cli-2.x branch from 649d4ce to 0433a14 Compare July 2, 2026 22:34
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/aqua-cli-cli-2.x branch from 0433a14 to 65dcd64 Compare July 31, 2026 03:15
@parsec-renovate parsec-renovate Bot changed the title feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.96.0 ) feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.97.0 ) Jul 31, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/aqua-cli-cli-2.x branch from 65dcd64 to 427cf9b Compare August 20, 2026 23:20
@parsec-renovate parsec-renovate Bot changed the title feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.97.0 ) feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.98.0 ) Aug 20, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/aqua-cli-cli-2.x branch from 427cf9b to 50dd32f Compare September 1, 2026 21:15
@parsec-renovate parsec-renovate Bot changed the title feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.98.0 ) feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.99.0 ) Sep 1, 2026
@parsec-renovate parsec-renovate Bot changed the title feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.99.0 ) feat(deps): update dependency aqua:cli/cli ( 2.92.0 ➔ 2.100.0 ) Sep 3, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/aqua-cli-cli-2.x branch from 50dd32f to 8c5c872 Compare September 3, 2026 16:18
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.

0 participants