You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Binstall is a tool to fetch and install Rust-based executables as binaries. It aims to be a drop-in replacement for cargo install in most cases. Install it today with cargo install cargo-binstall, from the binaries below, or if you already have it, upgrade with cargo binstall cargo-binstall.
Issue types, sub-issues, and relationships in gh issue
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
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
Add gh discussion command set (list, view, create, edit) as a preview by @babakks and @maxbeizer in #13541
Add gh discussion comment to comment on and reply to discussions by @babakks in #13620
Add Issues 2.0 support: issue types, sub-issues, and relationships by @BagToad in #13057
This is a routine automated dependency update PR from Renovate Bot, bumping a wide range of dependencies across the stack: GitHub Actions (setup-node v6.3.0, mise-action v3.6.3, zizmor-action v0.5.2, codeql-action v4.32.6), Node.js packages (pnpm 10.32.1, vitest/vite 4.1.0/8.0.0 stable releases from beta, oxfmt, oxlint, undici, electron, node-addon-slsa), Rust crates (tempfile 3.27.0), Python tools (ruff, semgrep, pyrefly, zizmor), and various aqua-managed CLI tools (uv, gh, gitleaks, shfmt, nextest). All GitHub Action references continue to be pinned by full commit SHA, which is good practice for this repository.
Most changes are straightforward version bumps with no behavioral impact on the codebase itself.
Several beta versions (vitest, vite) graduate to stable releases — a positive change.
The packageManager field in package.json was updated to pnpm@10.32.1 but the SHA512 integrity hash that was present in the old value was dropped, removing Corepack's ability to verify the pnpm binary on download.
Confidence Score: 4/5
This PR is safe to merge; the only notable finding is a non-critical omission of the Corepack integrity hash for pnpm.
All changes are automated dependency bumps. GitHub Actions remain SHA-pinned, Dockerfile images are digest-pinned, and lock files are fully regenerated. The one notable point is the missing SHA512 hash in the packageManager field, which is a best-practice/supply-chain hygiene issue rather than an active vulnerability. Everything else is routine.
package.json — missing SHA512 hash in the packageManager field.
Important Files Changed
Filename
Overview
package.json
Updated pnpm to 10.32.1 but dropped the SHA512 integrity hash from the packageManager field, removing Corepack's ability to verify the binary's integrity on download.
Dockerfile
Updated docker/dockerfile syntax to 1.22 and manylinux_2_28 base image to a new digest. Both references are pinned by SHA256. No issues found.
Cargo.lock
Updated tempfile from 3.26.0 to 3.27.0 which pulls in getrandom 0.3.4 instead of 0.4.2, and resolves different windows-sys versions for various crates. Standard lock file update.
mise.toml
Updated gitleaks, uv, gh CLI, nextest, and mvdan/sh (shfmt) to newer patch/minor versions. No issues found.
pyproject.toml
Updated pyrefly, ruff, semgrep, and zizmor to newer versions. No issues found.
pnpm-workspace.yaml
Updated catalog versions for @vitest/coverage-istanbul, electron, oxfmt, oxlint, undici, vite, and vitest from beta/older versions to stable releases. No issues found.
The previous packageManager value included a +sha512 integrity hash that Corepack uses to cryptographically verify the pnpm binary on download. The new value omits this hash entirely, so Corepack will skip integrity verification when bootstrapping pnpm from this field.
You can restore supply-chain integrity by running:
corepack use pnpm@10.32.1
This will update package.json with the correct hash for 10.32.1, e.g.:
Consider asking Renovate to preserve the hash when bumping the packageManager field (the pinDigests option may help, or a custom packageRules entry targeting packageManager).
Prompt To Fix With AI
This is a comment left during a code review.
Path: package.json
Line: 202
Comment:
**Missing Corepack integrity hash for pnpm**
The previous `packageManager` value included a `+sha512` integrity hash that Corepack uses to cryptographically verify the pnpm binary on download. The new value omits this hash entirely, so Corepack will skip integrity verification when bootstrapping pnpm from this field.
You can restore supply-chain integrity by running:
```bash
corepack use pnpm@10.32.1
```
This will update `package.json` with the correct hash for 10.32.1, e.g.:
Consider asking Renovate to preserve the hash when bumping the `packageManager` field (the [`pinDigests`](https://docs.renovatebot.com/configuration-options/#pindigests) option may help, or a custom `packageRules` entry targeting `packageManager`).
How can I resolve this? If you propose a fix, please make it concise.
Prompt To Fix All With AI
This is a comment left during a code review.
Path: package.json
Line: 202
Comment:
**Missing Corepack integrity hash for pnpm**
The previous `packageManager` value included a `+sha512` integrity hash that Corepack uses to cryptographically verify the pnpm binary on download. The new value omits this hash entirely, so Corepack will skip integrity verification when bootstrapping pnpm from this field.
You can restore supply-chain integrity by running:
```bash
corepack use pnpm@10.32.1
```
This will update `package.json` with the correct hash for 10.32.1, e.g.:
```suggestion "packageManager": "pnpm@10.32.1+sha512.<hash-for-10.32.1>",```
Consider asking Renovate to preserve the hash when bumping the `packageManager` field (the [`pinDigests`](https://docs.renovatebot.com/configuration-options/#pindigests) option may help, or a custom `packageRules` entry targeting `packageManager`).
How can I resolve this? If you propose a fix, please make it concise.
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
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.
This PR contains the following updates:
5.4.0→5.5.05.6.025.9.1→25.9.34.1.7→4.1.84.1.9v4.15.1→v4.17.5v4.17.6v6.0.2→v6.0.31.44.0→1.45.10.70.0→0.71.00.71.10.11.16→0.11.210.11.221.19.1→1.20.02.92.0→2.94.02.95.01.46.3→1.47.2v6.0.1→v6.0.242.2.0→42.4.042.4.1v4.36.0→v4.36.20.19.7→0.19.80.19.94.53.2→v4.53.30.9.136→0.9.137v2026.5.15→v2026.6.3v2026.6.11(+7)v4.0.1→v4.1.0v4.2.024.15.0→24.16.0v24.17.011.2.2→11.6.011.8.0(+1)0.51.0→0.54.00.55.01.66.0→1.69.01.70.011.2.2+sha512.36e6621fad506178936455e70247b8808ef4ec25797a9f437a93281a020484e2607f6a469a22e982987c3dbb8866e3071514ab10a4a1749e06edcd1ec118436f→11.6.011.8.0(+1)65f13b3→8ee73371.12.3→1.12.4==0.15.14→==0.15.170.15.18nightly-2026-05-24→nightly-2026-06-12nightly-2026-06-19(+6)nightly-2026-05-24→nightly-2026-06-11nightly-2026-06-18(+6)4.22.3→4.22.48.3.0→8.4.18.5.08.3.0→8.4.18.5.08.0.14→8.0.165.0.1→5.0.24.1.7→4.1.84.1.9Release Notes
CodSpeedHQ/codspeed-node (@codspeed/vitest-plugin)
v5.5.0Compare Source
Highlights
We are introducing
@codspeed/playwright, for walltime benchmarking and profiling of end to end browser applications through playwright.Here's an example usage, but head to the docs for more information
Note: this plugin is only compatible with the walltime instrument.
What's Changed
Full Changelog: CodSpeedHQ/codspeed-node@v5.4.0...v5.5.0
vitest-dev/vitest (@vitest/coverage-istanbul)
v4.1.8Compare Source
🐞 Bug Fixes
cdpAPI whenallowWrite/allowExec: false[backport to v4] - by @hi-ogawa and Codex in #10450 (e4067)View changes on GitHub
CodSpeedHQ/action (CodSpeedHQ/action)
v4.17.5Compare Source
Release Notes
This release bundles all runner changes from
4.17.1through4.17.5.🚀 Features
modearg to target setup by @fargito in #397🐛 Bug Fixes
💼 Other
🏗️ Refactor
⚙️ Internals
Install codspeed-runner 4.17.5
Install prebuilt binaries via shell script
Download codspeed-runner 4.17.5
Full Runner Changelog: https://github.com/CodSpeedHQ/codspeed/blob/main/CHANGELOG.md
Full Changelog: CodSpeedHQ/action@v4.17.0...v4.17.5
v4.17.0Compare Source
Release Notes
🚀 Features
🐛 Bug Fixes
💼 Other
🏗️ Refactor
🧪 Testing
⚙️ Internals
Install codspeed-runner 4.17.0
Install prebuilt binaries via shell script
Download codspeed-runner 4.17.0
Full Runner Changelog: https://github.com/CodSpeedHQ/codspeed/blob/main/CHANGELOG.md
Full Changelog: CodSpeedHQ/action@v4.15.1...v4.17.0
actions/checkout (actions/checkout)
v6.0.3Compare Source
anchore/syft (aqua:anchore/syft)
v1.45.1Compare Source
Bug Fixes
(Full Changelog)
v1.45.0Compare Source
Added Features
Bug Fixes
Additional Changes
(Full Changelog)
aquasecurity/trivy (aqua:aquasecurity/trivy)
v0.71.0Compare Source
⚡ Highlights ⚡
👉 https://redirect.github.com/aquasecurity/trivy/discussions/10767
Changelog
https://github.com/aquasecurity/trivy/blob/main/CHANGELOG.md#0710-2026-06-01
astral-sh/uv (aqua:astral-sh/uv)
v0.11.21Compare Source
Released on 2026-06-11.
Python
Preview features
environment.roottouv workspace metadata --sync(#19760)uv upgradeto update a single dependency constraint (#19738)uv workspace metadatapayload inty check(#19763)uv init(#17841)Performance
uv python list(#18684)Bug fixes
uv python listwith path requests (#19774)v0.11.20Compare Source
Released on 2026-06-10.
Enhancements
--emit-index-urland--emit-find-linkstouv export(#18370)--find-linkssupport foruv pip list(#16103)uv python install(#19691)Preview features
uv upgradecommand (#19678)uv upgrade(#19742)Configuration
UV_NO_INSTALL_PROJECT,UV_NO_INSTALL_WORKSPACE,UV_NO_INSTALL_LOCAL(#19323)Performance
Bug fixes
VIRTUAL_ENVthroughcygpathinsidefishon Windows (#19703)Documentation
--find-linkscaching behavior (#19585)v0.11.19Compare Source
Released on 2026-06-03.
Python
Enhancements
Preview features
--isolatedinuv check(#19666)Bug fixes
v0.11.18Compare Source
Released on 2026-06-01.
Performance
Preview
uv checkto runtyfrom uv (#19605)Bug fixes
Other changes
v0.11.17Compare Source
Released on 2026-05-28.
Enhancements
uv addwith standard library modules (#19572)uv workspaceand itslistsubcommand in help output (#19533)ignore-error-codeswhen applicable (#19521)import-namesandimport-namespacessupport touv-build(PEP 794) (#19380)--no-editable-packageflag to various commands (#19584)uv toolinvocations (#19577)Preview features
uv workspace metadata(#19122)uv venv --clearto remove non-virtual environments (#19595)Bug fixes
tool.uv.conflicts(#19538)--env-fileinuv run(#19567)--check-url(#19594)--find-linksparsing (#19537)Documentation
cargo-bins/cargo-binstall (aqua:cargo-bins/cargo-binstall)
v1.20.0Compare Source
Binstall is a tool to fetch and install Rust-based executables as binaries. It aims to be a drop-in replacement for
cargo installin most cases. Install it today withcargo install cargo-binstall, from the binaries below, or if you already have it, upgrade withcargo binstall cargo-binstall.In this release:
os-nametemplate variable forpkg-urlandbin-dir(#2328 #2570)Other changes:
cli/cli (aqua:cli/cli)
v2.94.0: GitHub CLI 2.94.0Compare Source
Issue types, sub-issues, and relationships in
gh issueThis release brings GitHub's advanced issue features to
gh issue create,edit,view, andlist. 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:Issue types and sub-issues are available on GitHub.com and GHES 3.17+; relationships require GHES 3.19+.
Manage discussions with
gh discussionThis release introduces the
discussioncommand set for working with GitHub Discussions ingh:Run
gh discussion --helpfor more information.Equip your agents with new
ghfeaturesTeach your agents how to leverage new GitHub CLI features on release day by installing the
ghskill:What's Changed
✨ Features
gh discussioncommand set (list,view,create,edit) as a preview by @babakks and @maxbeizer in #13541gh discussion commentto comment on and reply to discussions by @babakks in #13620gh skill listto inventory installed agent skills by @tommaso-moro in #13418--allflag togh skill installto install every skill in a repository by @tommaso-moro in #13471gh skill update --allby @tommaso-moro in #13469gh extension uninstalltogh extension removeby @BagToad in #13599🐛 Fixes
📚 Docs & Chores
gh discussionand Issues 2.0 reference to theghskill, plus a README note by @BagToad in #13631