-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependency cli/cli to v2.67.0 #1193
Open
renovate
wants to merge
1
commit into
v2
Choose a base branch
from
renovate/cli-cli-2.x
base: v2
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
cb75b07
to
65db3a0
Compare
65db3a0
to
0b3e8eb
Compare
0b3e8eb
to
d4271cf
Compare
d4271cf
to
3631860
Compare
3631860
to
6b5f802
Compare
6b5f802
to
d84bce0
Compare
d84bce0
to
4c8cf05
Compare
4c8cf05
to
2a6c3b6
Compare
2a6c3b6
to
bf9764b
Compare
bf9764b
to
ba10ce3
Compare
ba10ce3
to
7651471
Compare
7651471
to
ca6636f
Compare
ca6636f
to
4542248
Compare
4542248
to
d385568
Compare
d385568
to
e1b00a2
Compare
e1b00a2
to
87ec29b
Compare
Access |
1 similar comment
1 similar comment
87ec29b
to
3db3156
Compare
3db3156
to
0c30567
Compare
0c30567
to
d567ca3
Compare
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.
This PR contains the following updates:
v2.52.0
->v2.67.0
Release Notes
cli/cli (cli/cli)
v2.67.0
: GitHub CLI 2.67.0Compare Source
gh pr checkout
now supports interactively selecting a pull requestSimilar to commands like
gh workflow run
which prompts for a workflow to run, nowgh pr checkout
will prompt for a pull request to checkout. The list is currently limited to the most recent 10 pull requests in the repository.393797385-499b5dfb-3103-42b8-876a-3a2d4d7173c8.mov
Big thank you to @nilvng for implementing this 🙌
Contributing guidelines updated
We've updated our
CONTRIBUTING.md
guidelines to give more clarity around oldhelp wanted
issues.TLDR:
@cli/code-reviewers
when an issue you want to work on does not have clear Acceptance CriteriaNote: Acceptance Criteria is posted as an issue comment by a core maintainer.
See https://github.com/cli/cli/pull/10381 and https://github.com/cli/cli/pull/10395 for more information.
❓ Have feedback on anything? We'd love to hear from you in a discussion post ❤️
What's Changed
✨ Features
gh repo rename
is used with a new repo name that contains an owner by @timrogers in https://github.com/cli/cli/pull/10364iterationId
field in ProjectV2ItemFieldIterationValue by @iamazeem in https://github.com/cli/cli/pull/10329🐛 Fixes
--slurp
flag by @iamazeem in https://github.com/cli/cli/pull/10332--ref
flag by @iamazeem in https://github.com/cli/cli/pull/10328📚 Docs & Chores
help wanted
issues and pull requests by @BagToad in https://github.com/cli/cli/pull/10381gh pr checks
in theLong
section by @iamazeem in https://github.com/cli/cli/pull/10389Full Changelog: cli/cli@v2.66.1...v2.67.0
v2.66.1
: GitHub CLI 2.66.1Compare Source
Hotfix:
gh pr view
fails with provided URLThis addresses a regression in
gh pr view
was reported in #10352. This regression was due to a change inv2.66.0
that no longer allowedgh pr
subcommands to execute properly outside of a git repo.What's Changed
gh pr view
fails with provided URL by @jtmcg in https://github.com/cli/cli/pull/10354Full Changelog: cli/cli@v2.66.0...v2.66.1
v2.66.0
: GitHub CLI 2.66.0Compare Source
gh pr view
andgh pr status
now respect common triangular workflow configurationsPreviously,
gh pr view
andgh pr status
would fail for pull request's (PR) open in triangular workflows. This was due togh
being unable to identify the PR's corresponding remote and branch refs on GitHub.Now,
gh pr view
andgh pr status
should successfully identify the PR's refs when the following common git configurations are used:branch.<branchName>.pushremote
is setremote.pushDefault
is setBranch specific configuration, the former, supersedes repo specific configuration, the latter.
Additionally, if the
@{push}
revision syntax for git resolves for a branch,gh pr view
andgh pr status
should work regardless of additional config settings.For more information, see
gh secret list
,gh secret set
, andgh secret delete
now require repository selection when multiplegit
remotes are presentPreviously,
gh secret list
,gh secret set
, andgh secret delete
would determine which remote to target for interacting with GitHub Actions secrets. Remotes marked as default usinggh repo set-default
or through othergh
commands had higher priority when figuring out which repository to interact with. This could have unexpected outcomes when usinggh secret
commands with forked repositories as the upstream repository would generally be selected.Now,
gh secret
commands require users to disambiguate which repository should be the target if multiple remotes are present and the-R, --repo
flag is not provided.For more information, see https://github.com/cli/cli/issues/4688
Extension update notices now notify once every 24 hours per extension and can be disabled
Previously, the GitHub CLI would notify users about newer versions every time an extension was executed. This did not match GitHub CLI notices, which only notified users once every 24 hours and could be disabled through an environment variable.
Now, extension update notices will behave similar to GitHub CLI notices. To disable extension update notices, set the
GH_NO_EXTENSION_UPDATE_NOTIFIER
environment variable.For more information, see https://github.com/cli/cli/issues/9925
What's Changed
✨ Features
gh attestation
attestation bundle fetching logic by @malancas in https://github.com/cli/cli/pull/10185gh attestation verify
table output by @malancas in https://github.com/cli/cli/pull/10104@{push}
by @Frederick888 in https://github.com/cli/cli/pull/9208gh attestation
bundle fetching logic by @malancas in https://github.com/cli/cli/pull/10339🐛 Fixes
gh gist view
andgh gist edit
prompts with no TTY by @mateusmarquezini in https://github.com/cli/cli/pull/10048ReadBranchConfig
andprSelectorForCurrentBranch
by @jtmcg in https://github.com/cli/cli/pull/10197--workflow
flag by @iamazeem in https://github.com/cli/cli/pull/10323📚 Docs & Chores
gh issue create
by @andyfeller in https://github.com/cli/cli/pull/10208gh attestation verify
integration tests by @malancas in https://github.com/cli/cli/pull/10102New Contributors
Big thank you to our many new and longtime contributors making this release happen!! ❤️ ✨
Full Changelog: cli/cli@v2.65.0...v2.66.0
v2.65.0
: GitHub CLI 2.65.0Compare Source
What's Changed
gh pr create
by @cmbrose in https://github.com/cli/cli/pull/10177New Contributors
Full Changelog: cli/cli@v2.64.0...v2.65.0
v2.64.0
: GitHub CLI 2.64.0Compare Source
What's Changed
gh attestation verify
when thebundle-from-oci
flag is specified by @malancas in https://github.com/cli/cli/pull/10020gh repo rename
help text clarifies new repo name should not include owner by @BagToad in https://github.com/cli/cli/pull/10044gh run
andgh codespace
by @uday-rana in https://github.com/cli/cli/pull/10043gh pr merge --delete-branch
exits with error when merge requested via merge queue by @BagToad in https://github.com/cli/cli/pull/10074gh at inspect
improvements by @phillmv in https://github.com/cli/cli/pull/9954pr view
for intra-org forks by @williammartin in https://github.com/cli/cli/pull/10078gh attestation download
by @malancas in https://github.com/cli/cli/pull/10051gh attestation verify
policy options configuration in thenewEnforcementCriteria()
function by @malancas in https://github.com/cli/cli/pull/10012New Contributors
Full Changelog: cli/cli@v2.63.2...v2.64.0
v2.63.2
: GitHub CLI 2.63.2Compare Source
What's Changed
Full Changelog: cli/cli@v2.63.1...v2.63.2
v2.63.1
: GitHub CLI 2.63.1Compare Source
What's Changed
git/client_test.go
comments for linter by @BagToad in https://github.com/cli/cli/pull/9969gh repo fork
, log the change by @timrogers in https://github.com/cli/cli/pull/9983Security
A security vulnerability has been identified in GitHub CLI that could create or overwrite files in unintended directories when users download a malicious GitHub Actions workflow artifact through
gh run download
.For more information, see GHSA-2m9h-r57g-45pj
Full Changelog: cli/cli@v2.63.0...v2.63.1
v2.63.0
: GitHub CLI 2.63.0Compare Source
What's Changed
getAttestations
functions by @malancas in https://github.com/cli/cli/pull/9892baseRefOid
inpr view
by @daliusd in https://github.com/cli/cli/pull/9938heredoc
strings by @BagToad in https://github.com/cli/cli/pull/9948release create
fails due to missingworkflow
OAuth scope by @BagToad in https://github.com/cli/cli/pull/9791Full Changelog: cli/cli@v2.62.0...v2.63.0
Security
A security vulnerability has been identified in the GitHub CLI that could leak authentication tokens when cloning repositories containing git submodules hosted outside of GitHub.com and ghe.com.
For more information, see GHSA-jwcm-9g39-pmcw
New Contributors
v2.62.0
: GitHub CLI 2.62.0Compare Source
What's Changed
Full Changelog: cli/cli@v2.61.0...v2.62.0
Security
A security vulnerability has been identified in GitHub CLI that could allow remote code execution (RCE) when users connect to a malicious Codespace SSH server and use the
gh codespace ssh
orgh codespace logs
commands.For more information, see GHSA-p2h2-3vg9-4p87
GitHub CLI notifies users about latest extension upgrades
Similar to the notification of latest
gh
releases, thev2.62.0
version of GitHub CLI will notify users about latest extension upgrades when the extension is used:Why does this matter?
This removes a common pain point of extension authors as they have had to reverse engineer and implement a similar mechanism within their extensions directly.
With this quality of life improvement, there are 2 big benefits:
What do you need to do?
Extension authors should review their extensions and consider removing any custom logic previously implemented to notify users of new releases.
v2.61.0
: GitHub CLI 2.61.0Compare Source
Ensure users understand consequences before making repository visibility changes
In
v2.61.0
,gh repo edit
command has been enhanced to inform users about consequences of changing visibility and ensure users are intentional before making irreversible changes:gh repo edit
visibility change requires confirmation when changing frompublic
,private
, orinternal
gh repo edit --visibility
change requires new--accept-visibility-change-consequences
flag to confirmgh repo edit
experienceWhat's Changed
project
command by @jtmcg in https://github.com/cli/cli/pull/9816gh ruleset
by @andyfeller in https://github.com/cli/cli/pull/9815gh repo edit
by @andyfeller in https://github.com/cli/cli/pull/9845gh attestation verify
by @malancas in https://github.com/cli/cli/pull/9838gh attestation verify
should only verify provenance attestations by default by @malancas in https://github.com/cli/cli/pull/9825dnf5
commands as default by @its-miroma in https://github.com/cli/cli/pull/9844gh attestation verify
policy enforcement refactor by @malancas in https://github.com/cli/cli/pull/9848gh attestation verify
by @malancas in https://github.com/cli/cli/pull/9877gh cache list
when--json
is provided by @williammartin in https://github.com/cli/cli/pull/9883gh pr create -w
ignore template flag by @nilvng in https://github.com/cli/cli/pull/9863New Contributors
Full Changelog: cli/cli@v2.60.1...v2.61.0
v2.60.1
: GitHub CLI 2.60.1Compare Source
This is a small patch release to fix installing
gh
viago install
which was broken with v2.60.0.What's Changed
Full Changelog: cli/cli@v2.60.0...v2.60.1
v2.60.0
: GitHub CLI 2.60.0Compare Source
What's Changed
LiveSigstoreVerifier.Verify
should error if no attestations are present by @phillmv in https://github.com/cli/cli/pull/9742gh at verify
retries fetching attestations if it receives a 5xx by @phillmv in https://github.com/cli/cli/pull/9797working-with-us.md
by @BagToad in https://github.com/cli/cli/pull/9800gh
is supported on GitHub Enterprise Cloud by @BagToad in https://github.com/cli/cli/pull/9805Acceptance Test Changes
workflow
,run
, andcache
commands by @BagToad in https://github.com/cli/cli/pull/9766api
acceptance tests by @BagToad in https://github.com/cli/cli/pull/9770release
commands by @BagToad in https://github.com/cli/cli/pull/9771org
andssh-key
commands by @BagToad in https://github.com/cli/cli/pull/9812gh auth
commands by @jtmcg in https://github.com/cli/cli/pull/9787repo
commands by @jtmcg in https://github.com/cli/cli/pull/9783search
command by @BagToad in https://github.com/cli/cli/pull/9786variable
commands by @andyfeller in https://github.com/cli/cli/pull/978secret
commands by @andyfeller in https://github.com/cli/cli/pull/9782New Contributors
Full Changelog: cli/cli@v2.59.0...v2.60.0
v2.59.0
: GitHub CLI 2.59.0Compare Source
What's Changed
SECURITY.md
with expectations for privately reported vulnerabilities by @BagToad in https://github.com/cli/cli/pull/9687darwin-amd64
binary on an Apple Silicon macOS device by @timrogers in https://github.com/cli/cli/pull/9650repo license list/view
andrepo gitignore list/view
by @BagToad in https://github.com/cli/cli/pull/9721GH_ACCEPTANCE_SCRIPT
env var to target a single script by @williammartin in https://github.com/cli/cli/pull/9756issue
command by @williammartin in https://github.com/cli/cli/pull/9757gist list
by @heaths in https://github.com/cli/cli/pull/9728New Contributors
Full Changelog: cli/cli@v2.58.0...v2.59.0
v2.58.0
: GitHub CLI 2.58.0Compare Source
What's Changed
attestation verify
custom issuer mismatch error by @bdehamer in https://github.com/cli/cli/pull/9616attestation trusted-root
command by @BagToad in https://github.com/cli/cli/pull/9635attestation trusted-root
command by @bdehamer in https://github.com/cli/cli/pull/9610trusted-root
command by @bdehamer in https://github.com/cli/cli/pull/9638dnf5
instructions todocs/install_linux.md
by @its-miroma in https://github.com/cli/cli/pull/9660New Contributors
Full Changelog: cli/cli@v2.57.0...v2.58.0
v2.57.0
: GitHub CLI 2.57.0Compare Source
What's Changed
--active
flag to thegh auth status
command by @velumuruganr in https://github.com/cli/cli/pull/9520gh attestation verify
test for custom OIDC issuers by @bdehamer in https://github.com/cli/cli/pull/9595darwin-arm64
binary, but adarwin-amd64
binary is available by @timrogers in https://github.com/cli/cli/pull/9599gh attestation verify
bundle parsing and validation errors by @malancas in https://github.com/cli/cli/pull/9564attestation verify
output when no TTY present by @bdehamer in https://github.com/cli/cli/pull/9612New Contributors
Full Changelog: cli/cli@v2.56.0...v2.57.0
v2.56.0
: GitHub CLI 2.56.0Compare Source
Important note about renewed GPG key
The Debian and RedHat releases have been signed with a new GPG key. If you are experiencing issues updating your
.deb
or.rpm
packages, please read cli/cli#9569.What's Changed
gh repo sync
stdout by @muzimuzhi in https://github.com/cli/cli/pull/9491Configuration
📅 Schedule: 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.
This PR was generated by Mend Renovate. View the repository job log.