Skip to content

chore(deps): update dependency cli/cli to v2.98.0 - #76

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

chore(deps): update dependency cli/cli to v2.98.0#76
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cli-cli-2.x

Conversation

@renovate

@renovate renovate Bot commented Apr 1, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
cli/cli minor v2.45.0v2.98.0

Release Notes

cli/cli (cli/cli)

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

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

v2.93.0: GitHub CLI 2.93.0

Compare Source

Security

A security vulnerability has been identified, and fixed, that would incorrectly include authorization header in API requests to TUF repository mirrors via gh attestation, gh release verify, and gh release verify-asset commands.

Users are advised to update gh to version v2.93.0 as soon as possible.

For more information see: GHSA-8xvp-7hj6-mcj9

Support agents in gh secret command set

The gh secret command set can now set agent secrets. For more information, see "Configuring secrets and variables for Copilot cloud agent".

What's Changed

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

New Contributors

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

v2.92.0: GitHub CLI 2.92.0

Compare Source

Security

A security vulnerability has been identified, and fixed, that could allow terminal escape sequence injection when users view GitHub Actions workflow logs using gh run view --log or gh run view --log-failed.

Users are advised to update gh to version v2.92.0 as soon as possible.

For more information see: GHSA-crc3-h8v6-qh57

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 `

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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 6e57ec3 to a3d5234 Compare April 1, 2024 09:25
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.46.0 chore(deps): update dependency cli/cli to v2.47.0 Apr 3, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from a3d5234 to c3e53a4 Compare April 3, 2024 18:59
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch 2 times, most recently from 26dd3b2 to 6dde279 Compare April 17, 2024 10:19
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.47.0 chore(deps): update dependency cli/cli to v2.48.0 Apr 17, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 6dde279 to f7fc515 Compare April 21, 2024 13:30
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from f7fc515 to 20b8d15 Compare April 30, 2024 13:48
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.48.0 chore(deps): update dependency cli/cli to v2.49.0 Apr 30, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch 3 times, most recently from dceb619 to b652c86 Compare May 8, 2024 16:17
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.49.0 chore(deps): update dependency cli/cli to v2.49.1 May 8, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch 2 times, most recently from 86b7db9 to 0d5e560 Compare May 13, 2024 21:31
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.49.1 chore(deps): update dependency cli/cli to v2.49.2 May 13, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch 2 times, most recently from c676351 to b11afae Compare May 23, 2024 02:02
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from b11afae to c262bbe Compare May 29, 2024 19:49
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.49.2 chore(deps): update dependency cli/cli to v2.50.0 May 29, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from c262bbe to cbf89f5 Compare June 13, 2024 13:44
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.50.0 chore(deps): update dependency cli/cli to v2.51.0 Jun 13, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from cbf89f5 to a25b261 Compare June 24, 2024 19:32
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.51.0 chore(deps): update dependency cli/cli to v2.52.0 Jun 24, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch 2 times, most recently from 4a8ce15 to b5ae403 Compare July 7, 2024 13:38
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from b5ae403 to da5d0cd Compare July 17, 2024 20:10
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.52.0 chore(deps): update dependency cli/cli to v2.53.0 Jul 17, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from da5d0cd to a661602 Compare July 28, 2024 07:14
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from a9f3afc to ade5f3d Compare September 16, 2024 17:27
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.56.0 chore(deps): update dependency cli/cli to v2.57.0 Sep 16, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from ade5f3d to 05e18ba Compare October 1, 2024 21:20
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.57.0 chore(deps): update dependency cli/cli to v2.58.0 Oct 1, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 05e18ba to 0e6e38c Compare October 16, 2024 14:16
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.58.0 chore(deps): update dependency cli/cli to v2.59.0 Oct 16, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 0e6e38c to 554b3d6 Compare October 24, 2024 19:48
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.59.0 chore(deps): update dependency cli/cli to v2.60.0 Oct 24, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 554b3d6 to ce79360 Compare October 25, 2024 19:09
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.60.0 chore(deps): update dependency cli/cli to v2.60.1 Oct 25, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from ce79360 to 1e74d52 Compare November 7, 2024 14:29
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.60.1 chore(deps): update dependency cli/cli to v2.61.0 Nov 7, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 1e74d52 to b13773c Compare November 14, 2024 19:07
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.61.0 chore(deps): update dependency cli/cli to v2.62.0 Nov 14, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from b13773c to 91b0a96 Compare November 28, 2024 01:58
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.62.0 chore(deps): update dependency cli/cli to v2.63.0 Nov 28, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 91b0a96 to ba46721 Compare December 4, 2024 01:57
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.63.0 chore(deps): update dependency cli/cli to v2.63.1 Dec 4, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from ba46721 to 7fe3105 Compare December 5, 2024 19:06
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.63.1 chore(deps): update dependency cli/cli to v2.63.2 Dec 5, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 7fe3105 to 51d0aea Compare December 20, 2024 19:04
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.63.2 chore(deps): update dependency cli/cli to v2.64.0 Dec 20, 2024
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 51d0aea to ca40005 Compare December 20, 2024 23:37
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.64.0 chore(deps): update dependency cli/cli to v2.65.0 Jan 6, 2025
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from ca40005 to 2aca17d Compare January 6, 2025 21:08
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 2aca17d to 3e0b9bb Compare January 30, 2025 21:49
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.65.0 chore(deps): update dependency cli/cli to v2.66.0 Jan 30, 2025
@renovate
renovate Bot force-pushed the renovate/cli-cli-2.x branch from 3e0b9bb to 5f49fcc Compare February 1, 2025 01:00
@renovate renovate Bot changed the title chore(deps): update dependency cli/cli to v2.66.0 chore(deps): update dependency cli/cli to v2.66.1 Feb 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants