Skip to content
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

Fix segfault in error handling of gh repo rename #8888

Merged
merged 1 commit into from
Apr 2, 2024
Merged

Fix segfault in error handling of gh repo rename #8888

merged 1 commit into from
Apr 2, 2024

Conversation

satoqz
Copy link
Contributor

@satoqz satoqz commented Mar 29, 2024

Hi, the updateRemote() function used in the gh repo rename command does not always guarantee the *ghcontext.Remote return value to be != nil as seen below:

func updateRemote(repo ghrepo.Interface, renamed ghrepo.Interface, opts *RenameOptions) (*ghContext.Remote, error) {
cfg, err := opts.Config()
if err != nil {
return nil, err
}
protocol := cfg.GitProtocol(repo.RepoHost())
remotes, err := opts.Remotes()
if err != nil {
return nil, err
}
remote, err := remotes.FindByRepo(repo.RepoOwner(), repo.RepoName())
if err != nil {
return nil, err
}
remoteURL := ghrepo.FormatRemoteURL(renamed, protocol)
err = opts.GitClient.UpdateRemoteURL(context.Background(), remote.Name, remoteURL)
return remote, err
}

However the caller of this function assumes this to be the case and always de-references remote.Name even if the function returns an error:

remote, err := updateRemote(currRepo, newRepo, opts)
if err != nil {
fmt.Fprintf(opts.IO.ErrOut, "%s Warning: unable to update remote %q: %v\n", cs.WarningIcon(), remote.Name, err)
} else if opts.IO.IsStdoutTTY() {
fmt.Fprintf(opts.IO.Out, "%s Updated the %q remote\n", cs.SuccessIcon(), remote.Name)
}

... which then leads to a segfault.

In my case, this edge case was triggered by renaming a repository that had previously been moved between organizations. My local remote was still outdated, which causes remotes.FindByRepo() to return nil.

This fix adds a new error message that handles this case which looks like below:

! Warning: unable to update remote: no matching remote found

@satoqz satoqz requested a review from a team as a code owner March 29, 2024 13:51
@satoqz satoqz requested review from williammartin and removed request for a team March 29, 2024 13:51
@cliAutomation cliAutomation added the external pull request originating outside of the CLI core team label Mar 29, 2024
@cliAutomation
Copy link
Collaborator

Hi! Thanks for the pull request. Please ensure that this change is linked to an issue by mentioning an issue number in the description of the pull request. If this pull request would close the issue, please put the word 'Fixes' before the issue number somewhere in the pull request body. If this is a tiny change like fixing a typo, feel free to ignore this message.

@vvvv666

This comment was marked as spam.

1 similar comment
@vvvv666

This comment was marked as spam.

Copy link
Member

@williammartin williammartin left a comment

Choose a reason for hiding this comment

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

LGTM thanks!

@williammartin williammartin merged commit 96a7513 into cli:trunk Apr 2, 2024
9 checks passed
idodod referenced this pull request in earthly/earthly Apr 3, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [cli/cli](https://togithub.com/cli/cli) | minor | `v2.46.0` ->
`v2.47.0` |

---

### Release Notes

<details>
<summary>cli/cli (cli/cli)</summary>

### [`v2.47.0`](https://togithub.com/cli/cli/releases/tag/v2.47.0):
GitHub CLI 2.47.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.46.0...v2.47.0)

#### What's Changed

- Fix typo in auth switch help example by
[@&#8203;ihommani](https://togithub.com/ihommani) in
[https://github.com/cli/cli/pull/8870](https://togithub.com/cli/cli/pull/8870)
- Bump go-gh to 2.7.0 by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8884](https://togithub.com/cli/cli/pull/8884)
- gh-attestation cmd integration by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8698](https://togithub.com/cli/cli/pull/8698)
- Upgrade to Go 1.22 by [@&#8203;yanskun](https://togithub.com/yanskun)
in
[https://github.com/cli/cli/pull/8836](https://togithub.com/cli/cli/pull/8836)
- Rely on go.mod go version in all workflows by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8911](https://togithub.com/cli/cli/pull/8911)
- build(deps): bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8902](https://togithub.com/cli/cli/pull/8902)
- build(deps): bump github.com/docker/docker from 24.0.7+incompatible to
24.0.9+incompatible by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8903](https://togithub.com/cli/cli/pull/8903)
- Fix segfault in error handling of `gh repo rename` by
[@&#8203;satoqz](https://togithub.com/satoqz) in
[https://github.com/cli/cli/pull/8888](https://togithub.com/cli/cli/pull/8888)
- build(deps): bump google.golang.org/grpc from 1.61.0 to 1.61.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8912](https://togithub.com/cli/cli/pull/8912)
- build(deps): bump github.com/gorilla/websocket from 1.5.0 to 1.5.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8913](https://togithub.com/cli/cli/pull/8913)
- build(deps): bump github.com/google/go-containerregistry from 0.19.0
to 0.19.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8914](https://togithub.com/cli/cli/pull/8914)
- build(deps): bump github.com/sigstore/protobuf-specs from 0.3.0 to
0.3.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8923](https://togithub.com/cli/cli/pull/8923)
- Bump glamour to v0.7.0 and go mod tidy by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8920](https://togithub.com/cli/cli/pull/8920)

#### New Contributors

- [@&#8203;ihommani](https://togithub.com/ihommani) made their first
contribution in
[https://github.com/cli/cli/pull/8870](https://togithub.com/cli/cli/pull/8870)
- [@&#8203;malancas](https://togithub.com/malancas) made their first
contribution in
[https://github.com/cli/cli/pull/8698](https://togithub.com/cli/cli/pull/8698)
- [@&#8203;satoqz](https://togithub.com/satoqz) made their first
contribution in
[https://github.com/cli/cli/pull/8888](https://togithub.com/cli/cli/pull/8888)

**Full Changelog**: cli/cli@v2.46.0...v2.47.0

</details>

---

### Configuration

📅 **Schedule**: 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/earthly/earthly).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
scottames referenced this pull request in scottames/dots Apr 5, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[GoogleContainerTools/skaffold](https://togithub.com/GoogleContainerTools/skaffold)
| minor | `v2.10.1` -> `v2.11.0` |
| [aquaproj/aqua-registry](https://togithub.com/aquaproj/aqua-registry)
| minor | `v4.155.1` -> `v4.158.0` |
|
[bitnami-labs/sealed-secrets](https://togithub.com/bitnami-labs/sealed-secrets)
| patch | `v0.26.1` -> `v0.26.2` |
| [cli/cli](https://togithub.com/cli/cli) | minor | `v2.46.0` ->
`v2.47.0` |
| [cue-lang/cue](https://togithub.com/cue-lang/cue) | patch | `v0.8.0`
-> `v0.8.1` |
| [dprint/dprint](https://togithub.com/dprint/dprint) | patch | `0.45.0`
-> `0.45.1` |
|
[gruntwork-io/terragrunt](https://togithub.com/gruntwork-io/terragrunt)
| minor | `v0.55.20` -> `v0.56.2` |
| [junegunn/fzf](https://togithub.com/junegunn/fzf) | minor | `0.48.1`
-> `0.49.0` |
|
[kubernetes-sigs/kustomize](https://togithub.com/kubernetes-sigs/kustomize)
| minor | `v5.3.0` -> `v5.4.1` |
| [nektos/act](https://togithub.com/nektos/act) | patch | `v0.2.60` ->
`v0.2.61` |
| [rhysd/hgrep](https://togithub.com/rhysd/hgrep) | patch | `v0.3.4` ->
`v0.3.5` |
| [simulot/immich-go](https://togithub.com/simulot/immich-go) | patch |
`0.13.1` -> `0.13.2` |
| [snyk/cli](https://togithub.com/snyk/cli) | minor | `v1.1286.1` ->
`v1.1287.0` |
| [starship/starship](https://togithub.com/starship/starship) | patch |
`v1.18.1` -> `v1.18.2` |
| [twpayne/chezmoi](https://togithub.com/twpayne/chezmoi) | patch |
`v2.47.2` -> `v2.47.3` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>GoogleContainerTools/skaffold
(GoogleContainerTools/skaffold)</summary>

###
[`v2.11.0`](https://togithub.com/GoogleContainerTools/skaffold/blob/HEAD/CHANGELOG.md#v2110-Release---04022024)

[Compare
Source](https://togithub.com/GoogleContainerTools/skaffold/compare/v2.10.1...v2.11.0)

**Linux amd64**
`curl -Lo skaffold
https://storage.googleapis.com/skaffold/releases/v2.11.0/skaffold-linux-amd64
&& chmod +x skaffold && sudo mv skaffold /usr/local/bin`

**Linux arm64**
`curl -Lo skaffold
https://storage.googleapis.com/skaffold/releases/v2.11.0/skaffold-linux-arm64
&& chmod +x skaffold && sudo mv skaffold /usr/local/bin`

**macOS amd64**
`curl -Lo skaffold
https://storage.googleapis.com/skaffold/releases/v2.11.0/skaffold-darwin-amd64
&& chmod +x skaffold && sudo mv skaffold /usr/local/bin`

**macOS arm64**
`curl -Lo skaffold
https://storage.googleapis.com/skaffold/releases/v2.11.0/skaffold-darwin-arm64
&& chmod +x skaffold && sudo mv skaffold /usr/local/bin`

**Windows**

https://storage.googleapis.com/skaffold/releases/v2.11.0/skaffold-windows-amd64.exe

**Docker image**
`gcr.io/k8s-skaffold/skaffold:v2.11.0`

Note: This release comes with a new config version, `v4beta10`. To
upgrade your skaffold.yaml, use `skaffold fix`. If you choose not to
upgrade, skaffold will auto-upgrade as best as it can.

Highlights:

New Features and Additions:

- feat: Support Bazel platform mappings
[#&#8203;9300](https://togithub.com/GoogleContainerTools/skaffold/pull/9300)
- feat: new repo resolver logic to fetch info from a gcbrepov2
[#&#8203;9283](https://togithub.com/GoogleContainerTools/skaffold/pull/9283)
- feat: extracted kaniko copyTimeout and copyMaxRetries into config
[#&#8203;9267](https://togithub.com/GoogleContainerTools/skaffold/pull/9267)
- feat(tar): added logs to CreateTar func
[#&#8203;9271](https://togithub.com/GoogleContainerTools/skaffold/pull/9271)

Fixes:

- fix: revert cache lookup changes
[#&#8203;9313](https://togithub.com/GoogleContainerTools/skaffold/pull/9313)
- fix(lookupRemote): fixed lookup.go lookupRemote to compare remote and
cached digests
[#&#8203;9278](https://togithub.com/GoogleContainerTools/skaffold/pull/9278)
- fix(helm): use secrets helm plugin to render when useHelmSecrets is
true
[#&#8203;9295](https://togithub.com/GoogleContainerTools/skaffold/pull/9295)

Updates and Refactors:

- chore: upgrade cosign from 2.0.3-0.20230523133326-0544abd8fc8a to
2.2.1
[#&#8203;9369](https://togithub.com/GoogleContainerTools/skaffold/pull/9369)
- chore: bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3
[#&#8203;9333](https://togithub.com/GoogleContainerTools/skaffold/pull/9333)
- chore: bump github.com/cloudflare/circl from 1.3.3 to 1.3.7
[#&#8203;9242](https://togithub.com/GoogleContainerTools/skaffold/pull/9242)
- chore: bump flask from 3.0.1 to 3.0.2 in /integration/examples
[#&#8203;9297](https://togithub.com/GoogleContainerTools/skaffold/pull/9297)
- chore: bump rack from 2.2.6.4 to 2.2.8.1 in /examples/ruby/backend
[#&#8203;9328](https://togithub.com/GoogleContainerTools/skaffold/pull/9328)
- chore: bump rack from 2.2.6.4 to 2.2.8.1 in
/integration/examples/ruby/backend
[#&#8203;9329](https://togithub.com/GoogleContainerTools/skaffold/pull/9329)
- chore: bump github/codeql-action from 3.24.8 to 3.24.9
[#&#8203;9354](https://togithub.com/GoogleContainerTools/skaffold/pull/9354)
- chore: bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in
/integration/examples/grpc-e2e-tests/cloud-spanner-bootstrap
[#&#8203;9339](https://togithub.com/GoogleContainerTools/skaffold/pull/9339)
- chore: bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in
/examples/grpc-e2e-tests/cloud-spanner-bootstrap
[#&#8203;9341](https://togithub.com/GoogleContainerTools/skaffold/pull/9341)
- chore: bump github.com/docker/docker from 25.0.3+incompatible to
25.0.5+incompatible
[#&#8203;9366](https://togithub.com/GoogleContainerTools/skaffold/pull/9366)
- chore: bump moby/buildkit and opencontainers/runc versions, upgrade go
to 1.22
[#&#8203;9364](https://togithub.com/GoogleContainerTools/skaffold/pull/9364)
- chore: updating google api and opentelemetry version
[#&#8203;9352](https://togithub.com/GoogleContainerTools/skaffold/pull/9352)
- feat: extend `skaffold inspect config-dependencies add` to support GCB
Repo v2
[#&#8203;9349](https://togithub.com/GoogleContainerTools/skaffold/pull/9349)
- chore: bump github/codeql-action from 3.24.0 to 3.24.8
[#&#8203;9348](https://togithub.com/GoogleContainerTools/skaffold/pull/9348)
- chore: bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in
/integration/examples/grpc-e2e-tests/service
[#&#8203;9342](https://togithub.com/GoogleContainerTools/skaffold/pull/9342)
- chore: new googleCloudBuildRepoV2 field to configure a remote
dependency
[#&#8203;9293](https://togithub.com/GoogleContainerTools/skaffold/pull/9293)
- chore: upgrade go to v1.21.6 due to vuls
[#&#8203;9303](https://togithub.com/GoogleContainerTools/skaffold/pull/9303)
- chore: bump github.com/opencontainers/runc from 1.1.7 to 1.1.12
[#&#8203;9290](https://togithub.com/GoogleContainerTools/skaffold/pull/9290)
- chore: bump flask from 3.0.1 to 3.0.2 in /examples
[#&#8203;9298](https://togithub.com/GoogleContainerTools/skaffold/pull/9298)
- chore: bump actions/upload-artifact from 4.3.0 to 4.3.1
[#&#8203;9299](https://togithub.com/GoogleContainerTools/skaffold/pull/9299)
- chore: bump github/codeql-action from 3.23.1 to 3.24.0
[#&#8203;9296](https://togithub.com/GoogleContainerTools/skaffold/pull/9296)
- chore: generate schema v4beta9
[#&#8203;9287](https://togithub.com/GoogleContainerTools/skaffold/pull/9287)

Docs, Test, and Release Updates:

Huge thanks goes out to all of our contributors for this release:

-   Angel Montero
-   Aran Donohue
-   Benjamin Kaplan
-   Renzo Rojas
-   dependabot\[bot]
-   ericzzzzzzz
-   idsulik

</details>

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

###
[`v4.158.0`](https://togithub.com/aquaproj/aqua-registry/releases/tag/v4.158.0)

[Compare
Source](https://togithub.com/aquaproj/aqua-registry/compare/v4.157.0...v4.158.0)


[Issues](https://togithub.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.158.0)
| [Pull
Requests](https://togithub.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.158.0)
| aquaproj/aqua-registry@v4.157.0...v4.158.0

#### 🎉 New Packages


[#&#8203;21584](https://togithub.com/aquaproj/aqua-registry/issues/21584)
[getporter/porter/porter](https://togithub.com/getporter/porter): Porter
enables you to package your application artifact, client tools,
configuration and deployment logic together as an installer that you can
distribute, and install with a single command
[@&#8203;air-hand](https://togithub.com/air-hand)

[#&#8203;21576](https://togithub.com/aquaproj/aqua-registry/issues/21576)
[termkit/gama](https://togithub.com/termkit/gama): Manage your GitHub
Actions from Terminal with great UI
[@&#8203;ponkio-o](https://togithub.com/ponkio-o)

[#&#8203;21531](https://togithub.com/aquaproj/aqua-registry/issues/21531)
[watchexec/cargo-watch](https://togithub.com/watchexec/cargo-watch):
Watches over your Cargo project's source
[@&#8203;ryoppippi](https://togithub.com/ryoppippi)

#### Fixes


[#&#8203;21558](https://togithub.com/aquaproj/aqua-registry/issues/21558)
exoscale/cli: Regenerate the setting

[#&#8203;21620](https://togithub.com/aquaproj/aqua-registry/issues/21620)
golang/tools/guru

guru was deleted at v0.20.0

-
golang/tools@1f580da
-
[https://github.com/golang/go/issues/65880](https://togithub.com/golang/go/issues/65880)

> RIP guru, Go's LSP server before LSP was invented.

###
[`v4.157.0`](https://togithub.com/aquaproj/aqua-registry/releases/tag/v4.157.0)

[Compare
Source](https://togithub.com/aquaproj/aqua-registry/compare/v4.156.0...v4.157.0)


[Issues](https://togithub.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.157.0)
| [Pull
Requests](https://togithub.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.157.0)
| aquaproj/aqua-registry@v4.156.0...v4.157.0

#### 🎉 New Packages


[#&#8203;21505](https://togithub.com/aquaproj/aqua-registry/issues/21505)
[kyoshidajp/dep-doctor](https://togithub.com/kyoshidajp/dep-doctor):
Diagnose whether your software dependency libraries are maintained
[@&#8203;chaspy](https://togithub.com/chaspy)

[#&#8203;21500](https://togithub.com/aquaproj/aqua-registry/issues/21500)
[moby/buildkit](https://togithub.com/moby/buildkit): concurrent,
cache-efficient, and Dockerfile-agnostic builder toolkit
[@&#8203;ponkio-o](https://togithub.com/ponkio-o)

###
[`v4.156.0`](https://togithub.com/aquaproj/aqua-registry/releases/tag/v4.156.0)

[Compare
Source](https://togithub.com/aquaproj/aqua-registry/compare/v4.155.1...v4.156.0)


[Issues](https://togithub.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.156.0)
| [Pull
Requests](https://togithub.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.156.0)
| aquaproj/aqua-registry@v4.155.1...v4.156.0

#### 🎉 New Packages


[#&#8203;21293](https://togithub.com/aquaproj/aqua-registry/issues/21293)
[#&#8203;21301](https://togithub.com/aquaproj/aqua-registry/issues/21301)
[charmbracelet/freeze](https://togithub.com/charmbracelet/freeze):
Generate images of code and terminal output

[#&#8203;21486](https://togithub.com/aquaproj/aqua-registry/issues/21486)
[fe3dback/go-arch-lint](https://togithub.com/fe3dback/go-arch-lint):
GoLang architecture linter (checker) tool. Will check all project import
path and compare with arch rules defined in yml file. Useful for
hexagonal / onion / ddd / mvc and other architectural patterns. Tool can
by used in your CI

#### Bug Fixes


[#&#8203;21287](https://togithub.com/aquaproj/aqua-registry/issues/21287)
lxc/incus: Fix the bug that the different binary (incus-migrate) is
installed on linux

#### Fixes


[#&#8203;21410](https://togithub.com/aquaproj/aqua-registry/issues/21410)
commercialhaskell/stack: Regenerate the setting

</details>

<details>
<summary>bitnami-labs/sealed-secrets
(bitnami-labs/sealed-secrets)</summary>

###
[`v0.26.2`](https://togithub.com/bitnami-labs/sealed-secrets/blob/HEAD/RELEASE-NOTES.md#v0262)

[Compare
Source](https://togithub.com/bitnami-labs/sealed-secrets/compare/v0.26.1...v0.26.2)

##### Changelog

- fix: update dependencies and version for CVE-2023-45288
([#&#8203;1501](https://togithub.com/bitnami-labs/sealed-secrets/pull/1501))
- fix(helm): role binding annotations
([#&#8203;1494](https://togithub.com/bitnami-labs/sealed-secrets/pull/1494))
- chore: update cosign version
([#&#8203;1495](https://togithub.com/bitnami-labs/sealed-secrets/pull/1495))
- chore: Bump github.com/onsi/ginkgo/v2 from 2.16.0 to 2.17.1
([#&#8203;1497](https://togithub.com/bitnami-labs/sealed-secrets/pull/1497))
- chore: Bump k8s.io/client-go from 0.29.2 to 0.29.3
([#&#8203;1486](https://togithub.com/bitnami-labs/sealed-secrets/pull/1486))
- chore: Bump k8s.io/code-generator from 0.29.2 to 0.29.3
([#&#8203;1488](https://togithub.com/bitnami-labs/sealed-secrets/pull/1488))
- chore: Bump github.com/onsi/gomega from 1.31.1 to 1.32.0
([#&#8203;1489](https://togithub.com/bitnami-labs/sealed-secrets/pull/1489))
- chore: Bump k8s.io/apimachinery from 0.29.2 to 0.29.3
([#&#8203;1490](https://togithub.com/bitnami-labs/sealed-secrets/pull/1490))
- chore: Update security contact and other references DL to the new team
one
([#&#8203;1500](https://togithub.com/bitnami-labs/sealed-secrets/pull/1500))

</details>

<details>
<summary>cli/cli (cli/cli)</summary>

### [`v2.47.0`](https://togithub.com/cli/cli/releases/tag/v2.47.0):
GitHub CLI 2.47.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.46.0...v2.47.0)

#### What's Changed

- Fix typo in auth switch help example by
[@&#8203;ihommani](https://togithub.com/ihommani) in
[https://github.com/cli/cli/pull/8870](https://togithub.com/cli/cli/pull/8870)
- Bump go-gh to 2.7.0 by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8884](https://togithub.com/cli/cli/pull/8884)
- gh-attestation cmd integration by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8698](https://togithub.com/cli/cli/pull/8698)
- Upgrade to Go 1.22 by [@&#8203;yanskun](https://togithub.com/yanskun)
in
[https://github.com/cli/cli/pull/8836](https://togithub.com/cli/cli/pull/8836)
- Rely on go.mod go version in all workflows by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8911](https://togithub.com/cli/cli/pull/8911)
- build(deps): bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8902](https://togithub.com/cli/cli/pull/8902)
- build(deps): bump github.com/docker/docker from 24.0.7+incompatible to
24.0.9+incompatible by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8903](https://togithub.com/cli/cli/pull/8903)
- Fix segfault in error handling of `gh repo rename` by
[@&#8203;satoqz](https://togithub.com/satoqz) in
[https://github.com/cli/cli/pull/8888](https://togithub.com/cli/cli/pull/8888)
- build(deps): bump google.golang.org/grpc from 1.61.0 to 1.61.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8912](https://togithub.com/cli/cli/pull/8912)
- build(deps): bump github.com/gorilla/websocket from 1.5.0 to 1.5.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8913](https://togithub.com/cli/cli/pull/8913)
- build(deps): bump github.com/google/go-containerregistry from 0.19.0
to 0.19.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8914](https://togithub.com/cli/cli/pull/8914)
- build(deps): bump github.com/sigstore/protobuf-specs from 0.3.0 to
0.3.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8923](https://togithub.com/cli/cli/pull/8923)
- Bump glamour to v0.7.0 and go mod tidy by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8920](https://togithub.com/cli/cli/pull/8920)

#### New Contributors

- [@&#8203;ihommani](https://togithub.com/ihommani) made their first
contribution in
[https://github.com/cli/cli/pull/8870](https://togithub.com/cli/cli/pull/8870)
- [@&#8203;malancas](https://togithub.com/malancas) made their first
contribution in
[https://github.com/cli/cli/pull/8698](https://togithub.com/cli/cli/pull/8698)
- [@&#8203;satoqz](https://togithub.com/satoqz) made their first
contribution in
[https://github.com/cli/cli/pull/8888](https://togithub.com/cli/cli/pull/8888)

**Full Changelog**: cli/cli@v2.46.0...v2.47.0

</details>

<details>
<summary>cue-lang/cue (cue-lang/cue)</summary>

### [`v0.8.1`](https://togithub.com/cue-lang/cue/releases/tag/v0.8.1)

[Compare
Source](https://togithub.com/cue-lang/cue/compare/v0.8.0...v0.8.1)

This release includes a number of fixes detailed below:

[CL 1186144](https://cuelang.org/cl/1186144) fixes a number of evaluator
panics which could be triggered by calling the `cue.Value.Expr` method,
which also happened when using the OpenAPI encoder.

[CL 1173100](https://cuelang.org/cl/1173100) fixes `cue get go` panics
which might occur when any Go packages are vendored or use imported
alias declarations.

[CL 1185281](https://cuelang.org/cl/1185281) fixes a regression
introduced in `v0.8.0` which led to some incorrect failures in
`tools/flow` and `cue cmd`.

<details>

<summary><b>Full list of changes since v0.8.0</b></summary>

- internal/cueversion: bump for v0.8.1 by
[@&#8203;mvdan](https://togithub.com/mvdan) in
[`95bed3d`](https://togithub.com/cue-lang/cue/commit/95bed3d42cda04c2e5a43c408195781adddce51e)
- cue: adjust Environment for comprehensions by
[@&#8203;mpvl](https://togithub.com/mpvl) in
[`4cdb317`](https://togithub.com/cue-lang/cue/commit/4cdb3175b889b0ce9d198b26e0699d313d4156ab)
- Revert "tools/flow: check and return errors from task values" by
[@&#8203;rogpeppe](https://togithub.com/rogpeppe) in
[`0630a37`](https://togithub.com/cue-lang/cue/commit/0630a37c42b56133b247d31c100cb145a5244699)
- cmd/cue: find packages by canonical path in get go by
[@&#8203;uhthomas](https://togithub.com/uhthomas) in
[`773ab2d`](https://togithub.com/cue-lang/cue/commit/773ab2d76c513381d6c732397c866d16e4219776)

</details>

</details>

<details>
<summary>dprint/dprint (dprint/dprint)</summary>

### [`v0.45.1`](https://togithub.com/dprint/dprint/releases/tag/0.45.1)

[Compare
Source](https://togithub.com/dprint/dprint/compare/0.45.0...0.45.1)

#### Changes

- perf: lazily create ureq agents
([#&#8203;836](https://togithub.com/dprint/dprint/issues/836))

dprint on Mac now starts up faster.

Before:

    % dprint -v
    0.45.0
    % time dprint check --incremental=false ./data/package-template.json
    0.173s total

After:

    % dprint -v
    0.45.1
    % time dprint --incremental=false ./data/package-template.json
    0.023s total

#### Install

Run `dprint upgrade` or see https://dprint.dev/install/

#### Checksums

|Artifact|SHA-256 Checksum|
|:--|:--|

|dprint-x86\_64-apple-darwin.zip|83cce6b82d8674dbdddaf911bc117f1c866aaa4712aa381e54ab9466526026aa|

|dprint-aarch64-apple-darwin.zip|be6e4bcf9aafeb4ef34f27385717004cc0dfd06f8bce8e67b18937b53285d436|

|dprint-x86\_64-pc-windows-msvc.zip|71fef42ad86017a50bee977836dfd387d8584d6a9c4c03354d62977eaa1f135b|

|dprint-x86\_64-pc-windows-msvc-installer.exe|6db6148387b9e2e0434d0eaef3624bc1a401c85175e4863c220143d6151857a0|

|dprint-x86\_64-unknown-linux-gnu.zip|4e0c1d4f0f9f41efc08d929616c9f73abea7e57b9658a8f5f478a26e165c331c|

|dprint-x86\_64-unknown-linux-musl.zip|eaf2690b7414d11bc33fb2a81898f285748a7a6a7983f965b569e536fb67b815|

|dprint-aarch64-unknown-linux-gnu.zip|828133ac7a7591a2d9e63d5f10a70751f558152b20653383ae32ce76199662ad|

|dprint-aarch64-unknown-linux-musl.zip|c05d839d1f187d68d55effc60add4e66afb373015a1d1126c310b5c8669a8563|

</details>

<details>
<summary>gruntwork-io/terragrunt (gruntwork-io/terragrunt)</summary>

###
[`v0.56.2`](https://togithub.com/gruntwork-io/terragrunt/releases/tag/v0.56.2)

[Compare
Source](https://togithub.com/gruntwork-io/terragrunt/compare/v0.56.1...v0.56.2)

#### Updated CLI args, config attributes and blocks

-   `json-render`
-   `remote_state`

#### Description

-   Adjusted logging level for S3 bucket encryption warnings
- Added CLI flag `--terragrunt-json-disable-dependent-modules` to
disable identification of root modules during `render-json`

#### Special thanks

Special thanks to
[@&#8203;kaden-l-nelson](https://togithub.com/kaden-l-nelson) for their
contribution!

#### Related links

-
[https://github.com/gruntwork-io/terragrunt/pull/2918](https://togithub.com/gruntwork-io/terragrunt/pull/2918)
-
[https://github.com/gruntwork-io/terragrunt/pull/2878](https://togithub.com/gruntwork-io/terragrunt/pull/2878)

###
[`v0.56.1`](https://togithub.com/gruntwork-io/terragrunt/releases/tag/v0.56.1)

[Compare
Source](https://togithub.com/gruntwork-io/terragrunt/compare/v0.56.0...v0.56.1)

#### Updated CLI args, config attributes and blocks

-   `terragrunt-info`

#### Description

- Updated `terragrunt-info` to return parsed info data in case of error.

#### Related links

-
[https://github.com/gruntwork-io/terragrunt/pull/2901](https://togithub.com/gruntwork-io/terragrunt/pull/2901)

###
[`v0.56.0`](https://togithub.com/gruntwork-io/terragrunt/releases/tag/v0.56.0)

[Compare
Source](https://togithub.com/gruntwork-io/terragrunt/compare/v0.55.21...v0.56.0)

#### Description

-   Updated officially supported versions of OpenTofu and Terraform
- Updated CICD tests to run integration tests using Terraform 1.5 and
latest Terraform (1.7.x)

#### Related links

-
[https://github.com/gruntwork-io/terragrunt/pull/2754](https://togithub.com/gruntwork-io/terragrunt/pull/2754)
-
[https://github.com/gruntwork-io/terragrunt/pull/3035](https://togithub.com/gruntwork-io/terragrunt/pull/3035)

###
[`v0.55.21`](https://togithub.com/gruntwork-io/terragrunt/releases/tag/v0.55.21)

[Compare
Source](https://togithub.com/gruntwork-io/terragrunt/compare/v0.55.20...v0.55.21)

#### Updated CLI args, config attributes and blocks

-   `remote_state`

#### Description

-   Updated remote state creation/update errors to include bucket name.

#### Related links

-
[https://github.com/gruntwork-io/terragrunt/pull/3032](https://togithub.com/gruntwork-io/terragrunt/pull/3032)

</details>

<details>
<summary>junegunn/fzf (junegunn/fzf)</summary>

###
[`v0.49.0`](https://togithub.com/junegunn/fzf/blob/HEAD/CHANGELOG.md#0490)

[Compare
Source](https://togithub.com/junegunn/fzf/compare/0.48.1...0.49.0)

- Ingestion performance improved by around 40% (more or less depending
on options)
- `--info=hidden` and `--info=inline-right` will no longer hide the
horizontal separator by default. This gives you more flexibility in
customizing the layout.
    ```sh
    fzf --border --info=inline-right
    fzf --border --info=inline-right --separator ═
    fzf --border --info=inline-right --no-separator
    fzf --border --info=hidden
    fzf --border --info=hidden --separator ━
    fzf --border --info=hidden --no-separator
    ```
-   Added two environment variables exported to the child processes
    -   `FZF_PREVIEW_LABEL`
    -   `FZF_BORDER_LABEL`
    ```sh
    ```

### Use the current value of $FZF_PREVIEW_LABEL to determine which
actions to perform

    git ls-files |
      fzf --header 'Press CTRL-P to change preview mode' \
          --bind='ctrl-p:transform:[[ $FZF_PREVIEW_LABEL =~ cat ]] \
&& echo "change-preview(git log --color=always
\{})+change-preview-label([[ log ]])" \
|| echo "change-preview(bat --color=always \{})+change-preview-label([[
cat ]])"'
    ```

- Renamed `track` action to `track-current` to highlight the difference
between the global tracking state set by `--track` and a one-off
tracking action
    -   `track` is still available as an alias
-   Added `untrack-current` and `toggle-track-current` actions
- `*-current` actions are no-op when the global tracking state is set
-   Bug fixes and minor improvements

</details>

<details>
<summary>kubernetes-sigs/kustomize (kubernetes-sigs/kustomize)</summary>

###
[`v5.4.1`](https://togithub.com/kubernetes-sigs/kustomize/releases/tag/kustomize/v5.4.1)

[Compare
Source](https://togithub.com/kubernetes-sigs/kustomize/compare/kustomize/v5.4.0...kustomize/v5.4.1)

This is a patch of kustomize v5.4.0 and should fix the `kustomize
version` subcommand issues in its assets.

### kustomize v5.4.1


[https://github.com/kubernetes-sigs/kustomize/pull/5644](https://togithub.com/kubernetes-sigs/kustomize/pull/5644):
fix version subcommand is not working after release build

### kustomize v5.4.0

#### Breaking changes


[https://github.com/kubernetes-sigs/kustomize/pull/5519](https://togithub.com/kubernetes-sigs/kustomize/pull/5519):
Fix null YAML values being replaced by "null"

#### Features


[#&#8203;5411](https://togithub.com/kubernetes-sigs/kustomize/issues/5411):
Add --load-restrictor completion

[#&#8203;5467](https://togithub.com/kubernetes-sigs/kustomize/issues/5467):
feat: edit set secret

##### More better error handling

-
[https://github.com/kubernetes-sigs/kustomize/pull/5539](https://togithub.com/kubernetes-sigs/kustomize/pull/5539):
Include exec plugin stderr with wrapped error
-
[https://github.com/kubernetes-sigs/kustomize/pull/5542](https://togithub.com/kubernetes-sigs/kustomize/pull/5542):
fix: improve accumulation failure message
-
[https://github.com/kubernetes-sigs/kustomize/pull/5550](https://togithub.com/kubernetes-sigs/kustomize/pull/5550):
use Strict unmarshal when read TransformerConfig

#### Bug fixes/performance improvements


[#&#8203;5234](https://togithub.com/kubernetes-sigs/kustomize/issues/5234):
fix edit set image to parse both tag and digest

[#&#8203;5621](https://togithub.com/kubernetes-sigs/kustomize/issues/5621):
Use require for Error and NoError

#### Dependencies


[#&#8203;5479](https://togithub.com/kubernetes-sigs/kustomize/issues/5479):
Revert "Switch to json-patch v5"

[#&#8203;5541](https://togithub.com/kubernetes-sigs/kustomize/issues/5541):
Use canonical json-patch v4 import

[#&#8203;5615](https://togithub.com/kubernetes-sigs/kustomize/issues/5615):
update dependencies google.golang.org/protobuf@v1.33.0

##### update internal Dependencies


[#&#8203;5639](https://togithub.com/kubernetes-sigs/kustomize/issues/5639):
Update kyaml to v0.17.0

[#&#8203;5640](https://togithub.com/kubernetes-sigs/kustomize/issues/5640):
Update cmd/config to v0.14.0

[#&#8203;5641](https://togithub.com/kubernetes-sigs/kustomize/issues/5641):
Update api to v0.17.0

##### cleanup Dependencies


[#&#8203;5044](https://togithub.com/kubernetes-sigs/kustomize/issues/5044):
Remove non-essential dependency `imdario/mergo`

[#&#8203;5567](https://togithub.com/kubernetes-sigs/kustomize/issues/5567):
fix 'golang.org/x/exp/slices' dependencies

[#&#8203;5627](https://togithub.com/kubernetes-sigs/kustomize/issues/5627):
Remove klog/v1 dependencies

#### chore


[#&#8203;5495](https://togithub.com/kubernetes-sigs/kustomize/issues/5495):
chore: move removetest.go to the internal package

[#&#8203;5518](https://togithub.com/kubernetes-sigs/kustomize/issues/5518):
Update owners file

[#&#8203;5622](https://togithub.com/kubernetes-sigs/kustomize/issues/5622):
Pin tool versions with hack/go.mod

###
[`v5.4.0`](https://togithub.com/kubernetes-sigs/kustomize/releases/tag/kustomize/v5.4.0)

[Compare
Source](https://togithub.com/kubernetes-sigs/kustomize/compare/kustomize/v5.3.0...kustomize/v5.4.0)

#### Breaking changes


[https://github.com/kubernetes-sigs/kustomize/pull/5519](https://togithub.com/kubernetes-sigs/kustomize/pull/5519):
Fix null YAML values being replaced by "null"

#### Features


[#&#8203;5411](https://togithub.com/kubernetes-sigs/kustomize/issues/5411):
Add --load-restrictor completion

[#&#8203;5467](https://togithub.com/kubernetes-sigs/kustomize/issues/5467):
feat: edit set secret

##### More better error handling

-
[https://github.com/kubernetes-sigs/kustomize/pull/5539](https://togithub.com/kubernetes-sigs/kustomize/pull/5539):
Include exec plugin stderr with wrapped error
-
[https://github.com/kubernetes-sigs/kustomize/pull/5542](https://togithub.com/kubernetes-sigs/kustomize/pull/5542):
fix: improve accumulation failure message
-
[https://github.com/kubernetes-sigs/kustomize/pull/5550](https://togithub.com/kubernetes-sigs/kustomize/pull/5550):
use Strict unmarshal when read TransformerConfig

#### Bug fixes/performance improvements


[#&#8203;5234](https://togithub.com/kubernetes-sigs/kustomize/issues/5234):
fix edit set image to parse both tag and digest

[#&#8203;5621](https://togithub.com/kubernetes-sigs/kustomize/issues/5621):
Use require for Error and NoError

#### Dependencies


[#&#8203;5479](https://togithub.com/kubernetes-sigs/kustomize/issues/5479):
Revert "Switch to json-patch v5"

[#&#8203;5541](https://togithub.com/kubernetes-sigs/kustomize/issues/5541):
Use canonical json-patch v4 import

[#&#8203;5615](https://togithub.com/kubernetes-sigs/kustomize/issues/5615):
update dependencies google.golang.org/protobuf@v1.33.0

##### update internal Dependencies


[#&#8203;5639](https://togithub.com/kubernetes-sigs/kustomize/issues/5639):
Update kyaml to v0.17.0

[#&#8203;5640](https://togithub.com/kubernetes-sigs/kustomize/issues/5640):
Update cmd/config to v0.14.0

[#&#8203;5641](https://togithub.com/kubernetes-sigs/kustomize/issues/5641):
Update api to v0.17.0

##### cleanup Dependencies


[#&#8203;5044](https://togithub.com/kubernetes-sigs/kustomize/issues/5044):
Remove non-essential dependency `imdario/mergo`

[#&#8203;5567](https://togithub.com/kubernetes-sigs/kustomize/issues/5567):
fix 'golang.org/x/exp/slices' dependencies

[#&#8203;5627](https://togithub.com/kubernetes-sigs/kustomize/issues/5627):
Remove klog/v1 dependencies

#### chore


[#&#8203;5495](https://togithub.com/kubernetes-sigs/kustomize/issues/5495):
chore: move removetest.go to the internal package

[#&#8203;5518](https://togithub.com/kubernetes-sigs/kustomize/issues/5518):
Update owners file

[#&#8203;5622](https://togithub.com/kubernetes-sigs/kustomize/issues/5622):
Pin tool versions with hack/go.mod

</details>

<details>
<summary>nektos/act (nektos/act)</summary>

### [`v0.2.61`](https://togithub.com/nektos/act/releases/tag/v0.2.61)

[Compare
Source](https://togithub.com/nektos/act/compare/v0.2.60...v0.2.61)

#### Changelog

##### Bug fixes

- [`f825e42`](https://togithub.com/nektos/act/commit/f825e42) fix: cache
adjust restore order of exact key matches
([#&#8203;2267](https://togithub.com/nektos/act/issues/2267))
- [`119ceb8`](https://togithub.com/nektos/act/commit/119ceb8) fix:
rootless permission bits (new actions cache)
([#&#8203;2242](https://togithub.com/nektos/act/issues/2242))
- [`75e4ad9`](https://togithub.com/nektos/act/commit/75e4ad9) fix:
docker buildx cache restore not working
([#&#8203;2236](https://togithub.com/nektos/act/issues/2236))

##### Other

- [`361b7e9`](https://togithub.com/nektos/act/commit/361b7e9) chore:
bump VERSION to 0.2.61
- [`d9a19c8`](https://togithub.com/nektos/act/commit/d9a19c8) Trivial:
reduce log spam.
([#&#8203;2256](https://togithub.com/nektos/act/issues/2256))
- [`3949d74`](https://togithub.com/nektos/act/commit/3949d74) chore:
remove repetitive words
([#&#8203;2259](https://togithub.com/nektos/act/issues/2259))
- [`b9382a2`](https://togithub.com/nektos/act/commit/b9382a2) Support
overwriting caches
([#&#8203;2265](https://togithub.com/nektos/act/issues/2265))
- [`f56dd65`](https://togithub.com/nektos/act/commit/f56dd65) test: use
ping to improve network test
([#&#8203;2266](https://togithub.com/nektos/act/issues/2266))
- [`069720a`](https://togithub.com/nektos/act/commit/069720a)
build(deps): bump github.com/docker/docker
([#&#8203;2252](https://togithub.com/nektos/act/issues/2252))
- [`8c83d57`](https://togithub.com/nektos/act/commit/8c83d57)
build(deps): bump golang.org/x/term from 0.17.0 to 0.18.0
([#&#8203;2244](https://togithub.com/nektos/act/issues/2244))
- [`352ad41`](https://togithub.com/nektos/act/commit/352ad41) fix
function name in comment
([#&#8203;2240](https://togithub.com/nektos/act/issues/2240))
- [`934b13a`](https://togithub.com/nektos/act/commit/934b13a)
build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0
([#&#8203;2235](https://togithub.com/nektos/act/issues/2235))

</details>

<details>
<summary>rhysd/hgrep (rhysd/hgrep)</summary>

###
[`v0.3.5`](https://togithub.com/rhysd/hgrep/blob/HEAD/CHANGELOG.md#v035---31-Mar-2024)

[Compare
Source](https://togithub.com/rhysd/hgrep/compare/v0.3.4...v0.3.5)

- Add `HGREP_DEFAULT_OPTS` environment variable to set the default
command line options. For example, the following configuration enables
`ayu-dark` theme and background colors by default. See [the
document](https://togithub.com/rhysd/hgrep?tab=readme-ov-file#set-default-command-options)
for more details.
    ```sh
    export HGREP_DEFAULT_OPTS='--theme ayu-dark --background'
    ```
- Detect the terminal color support from `TERM` environment variable in
addition to `COLORTERM` environment variable. For example,
`xterm-256color` enables 256 colors support. See [the
document](https://togithub.com/rhysd/hgrep?tab=readme-ov-file#terminal-color-support-detection)
to know the logic of the color support detection.
-   Update the themes bundle to the latest.
-   Update cargo dependencies including syntect v5.2.

\[Changes]\[v0.3.5]

</details>

<details>
<summary>simulot/immich-go (simulot/immich-go)</summary>

###
[`v0.13.2`](https://togithub.com/simulot/immich-go/releases/tag/0.13.2)

[Compare
Source](https://togithub.com/simulot/immich-go/compare/0.13.1...0.13.2)

#### Changelog

- [`6634a2a`](https://togithub.com/simulot/immich-go/commit/6634a2a)
Simulot/issue205
([#&#8203;206](https://togithub.com/simulot/immich-go/issues/206))
- [`9c62473`](https://togithub.com/simulot/immich-go/commit/9c62473)
Version 0.13.0 not working as expected
([#&#8203;200](https://togithub.com/simulot/immich-go/issues/200))
- [`159e381`](https://togithub.com/simulot/immich-go/commit/159e381)
immich-go appears to retain/cache an API key Fixes
[#&#8203;211](https://togithub.com/simulot/immich-go/issues/211)

</details>

<details>
<summary>snyk/cli (snyk/cli)</summary>

### [`v1.1287.0`](https://togithub.com/snyk/cli/releases/tag/v1.1287.0)

[Compare
Source](https://togithub.com/snyk/cli/compare/v1.1286.4...v1.1287.0)

##### Features

- upgrade snyk-iac-test to v0.51.3
([#&#8203;5127](https://togithub.com/snyk/snyk/issues/5127))
([0fd8fa6](https://togithub.com/snyk/snyk/commit/0fd8fa6063f35f208c36fdcbd04c8c4732d32af4))

### [`v1.1286.4`](https://togithub.com/snyk/cli/releases/tag/v1.1286.4)

[Compare
Source](https://togithub.com/snyk/cli/compare/v1.1286.3...v1.1286.4)

##### Bug Fixes

- upgrade iac custom rules extension to address vulns \[IAC-2921]
([#&#8203;5149](https://togithub.com/snyk/snyk/issues/5149))
([6b96473](https://togithub.com/snyk/snyk/commit/6b96473e3c07a93fdc5da2f10bb39ea6f5a222d7))

### [`v1.1286.3`](https://togithub.com/snyk/cli/releases/tag/v1.1286.3)

[Compare
Source](https://togithub.com/snyk/cli/compare/v1.1286.2...v1.1286.3)

##### Bug Fixes

- always finish progress when auto-fixing in language server
([#&#8203;5145](https://togithub.com/snyk/snyk/issues/5145))
([f645bbe](https://togithub.com/snyk/snyk/commit/f645bbe4b439a9523fcd16cc9857786bd25898b4))
- avoid potentially outputting very large JSON objects
([#&#8203;5147](https://togithub.com/snyk/snyk/issues/5147))
([84b5e8b](https://togithub.com/snyk/snyk/commit/84b5e8bf390d4e68665c79efa57a4a7ed7cb3600))

### [`v1.1286.2`](https://togithub.com/snyk/cli/releases/tag/v1.1286.2)

[Compare
Source](https://togithub.com/snyk/cli/compare/v1.1286.1...v1.1286.2)

##### Bug Fixes

- enhance sbt output width, fixing false positives vulns
([#&#8203;5130](https://togithub.com/snyk/snyk/issues/5130))
([2011b90](https://togithub.com/snyk/snyk/commit/2011b90704582654560d6d64819fe8d3cdfc91fd))

</details>

<details>
<summary>starship/starship (starship/starship)</summary>

###
[`v1.18.2`](https://togithub.com/starship/starship/releases/tag/v1.18.2)

[Compare
Source](https://togithub.com/starship/starship/compare/v1.18.1...v1.18.2)

##### Bug Fixes

- replace unmaintained crates `yaml-rust`, `dirs-next`
([#&#8203;5887](https://togithub.com/starship/starship/issues/5887))
([796a411](https://togithub.com/starship/starship/commit/796a411602c9ca4e5103c54247440f4efe892918))

##### Reverts

- "build(deps): update rust crate gix to 0.61.1"
([#&#8203;5878](https://togithub.com/starship/starship/issues/5878))
([eb80dba](https://togithub.com/starship/starship/commit/eb80dbab99e38b5018aa3fb70b06ae9e4d793b24))

</details>

<details>
<summary>twpayne/chezmoi (twpayne/chezmoi)</summary>

###
[`v2.47.3`](https://togithub.com/twpayne/chezmoi/releases/tag/v2.47.3)

[Compare
Source](https://togithub.com/twpayne/chezmoi/compare/v2.47.2...v2.47.3)

#### Changelog

##### Fixes

- [`2e4236c`](https://togithub.com/twpayne/chezmoi/commit/2e4236c71)
fix: Don't traverse into ignored directories when adding files
- [`8a83dcc`](https://togithub.com/twpayne/chezmoi/commit/8a83dcc1d)
fix: Skip adding entries in external dirs instead of erroring
- [`b366d0e`](https://togithub.com/twpayne/chezmoi/commit/b366d0e1c)
fix: Fix panic when adding children in exact\_ dirs
- [`ad77158`](https://togithub.com/twpayne/chezmoi/commit/ad771580c)
fix: Increase range of types accepted by promptChoice template function

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 4pm on thursday" in timezone
America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/scottames/dots).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: scottames-github-bot[bot] <162828115+scottames-github-bot[bot]@users.noreply.github.com>
renovate bot referenced this pull request in DelineaXPM/github-workflows Jul 18, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [cli/cli](https://togithub.com/cli/cli) | minor | `v2.42.1` ->
`v2.53.0` |

---

### Release Notes

<details>
<summary>cli/cli (cli/cli)</summary>

### [`v2.53.0`](https://togithub.com/cli/cli/releases/tag/v2.53.0):
GitHub CLI 2.53.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.52.0...v2.53.0)

#### What's Changed

- Add `--json` option to `variable get` command by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/9128](https://togithub.com/cli/cli/pull/9128)
- Add GH_DEBUG to issue template by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[https://github.com/cli/cli/pull/9167](https://togithub.com/cli/cli/pull/9167)
- Fetch variable selected repo relationship when required by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9256](https://togithub.com/cli/cli/pull/9256)
- build(deps): bump github.com/hashicorp/go-retryablehttp from 0.7.5 to
0.7.7 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9250](https://togithub.com/cli/cli/pull/9250)
- Alternate gh attestation trusted-root subcommand by
[@&#8203;steiza](https://togithub.com/steiza) in
[https://github.com/cli/cli/pull/9206](https://togithub.com/cli/cli/pull/9206)
- fix: indentation in 'gh release create --help' by
[@&#8203;cchristous](https://togithub.com/cchristous) in
[https://github.com/cli/cli/pull/9296](https://togithub.com/cli/cli/pull/9296)
- build(deps): bump actions/attest-build-provenance from 1.3.2 to 1.3.3
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9305](https://togithub.com/cli/cli/pull/9305)
- docs: Update documentation for `gh repo create` to clarify owner by
[@&#8203;jessehouwing](https://togithub.com/jessehouwing) in
[https://github.com/cli/cli/pull/9309](https://togithub.com/cli/cli/pull/9309)
- Fix panic when calling `gh pr view --json stateReason` by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9307](https://togithub.com/cli/cli/pull/9307)
- Add `issue create --editor` by
[@&#8203;notomo](https://togithub.com/notomo) in
[https://github.com/cli/cli/pull/7193](https://togithub.com/cli/cli/pull/7193)
- Add `pr update-branch` command by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/8953](https://togithub.com/cli/cli/pull/8953)

#### New Contributors

- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[https://github.com/cli/cli/pull/9167](https://togithub.com/cli/cli/pull/9167)
- [@&#8203;cchristous](https://togithub.com/cchristous) made their first
contribution in
[https://github.com/cli/cli/pull/9296](https://togithub.com/cli/cli/pull/9296)
- [@&#8203;jessehouwing](https://togithub.com/jessehouwing) made their
first contribution in
[https://github.com/cli/cli/pull/9309](https://togithub.com/cli/cli/pull/9309)
- [@&#8203;notomo](https://togithub.com/notomo) made their first
contribution in
[https://github.com/cli/cli/pull/7193](https://togithub.com/cli/cli/pull/7193)

**Full Changelog**: cli/cli@v2.52.0...v2.53.0

### [`v2.52.0`](https://togithub.com/cli/cli/releases/tag/v2.52.0):
GitHub CLI 2.52.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.51.0...v2.52.0)

#### What's Changed

- feat: add `-a` flag to `gh run list` by
[@&#8203;joshuajtward](https://togithub.com/joshuajtward) in
[https://github.com/cli/cli/pull/9162](https://togithub.com/cli/cli/pull/9162)
- Attestation Verification - Buffer Fix by
[@&#8203;Forrin](https://togithub.com/Forrin) in
[https://github.com/cli/cli/pull/9198](https://togithub.com/cli/cli/pull/9198)
- build(deps): bump actions/attest-build-provenance from 1.2.0 to 1.3.2
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9222](https://togithub.com/cli/cli/pull/9222)
- build(deps): bump github.com/gorilla/websocket from 1.5.2 to 1.5.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9211](https://togithub.com/cli/cli/pull/9211)
- build(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9218](https://togithub.com/cli/cli/pull/9218)
- build(deps): bump github.com/google/go-containerregistry from 0.19.1
to 0.19.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9217](https://togithub.com/cli/cli/pull/9217)
- Remove `gh at verify` public beta note by
[@&#8203;phillmv](https://togithub.com/phillmv) in
[https://github.com/cli/cli/pull/9243](https://togithub.com/cli/cli/pull/9243)

#### New Contributors

- [@&#8203;joshuajtward](https://togithub.com/joshuajtward) made their
first contribution in
[https://github.com/cli/cli/pull/9162](https://togithub.com/cli/cli/pull/9162)
- [@&#8203;Forrin](https://togithub.com/Forrin) made their first
contribution in
[https://github.com/cli/cli/pull/9198](https://togithub.com/cli/cli/pull/9198)

**Full Changelog**: cli/cli@v2.51.0...v2.52.0

### [`v2.51.0`](https://togithub.com/cli/cli/releases/tag/v2.51.0):
GitHub CLI 2.51.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.50.0...v2.51.0)

#### What's Changed

- Ensure signed RPMs have attestations by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[https://github.com/cli/cli/pull/9143](https://togithub.com/cli/cli/pull/9143)
- Add `signer-repo` and `signer-workflow` flags to `gh attestation
verify` by [@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/9137](https://togithub.com/cli/cli/pull/9137)
- Docs: Specify rpm repository to avoid conflicts with community
repositories by [@&#8203;hbenali](https://togithub.com/hbenali) in
[https://github.com/cli/cli/pull/9151](https://togithub.com/cli/cli/pull/9151)
- Replace `--json-result` flag with `--format=json` in the attestation
cmd by [@&#8203;phillmv](https://togithub.com/phillmv) in
[https://github.com/cli/cli/pull/9172](https://togithub.com/cli/cli/pull/9172)
- Bump go-keyring to fix keepassxc prompt confirmation by
[@&#8203;AlanD20](https://togithub.com/AlanD20) in
[https://github.com/cli/cli/pull/9179](https://togithub.com/cli/cli/pull/9179)
- build(deps): bump actions/attest-build-provenance from 1.1.2 to 1.2.0
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9169](https://togithub.com/cli/cli/pull/9169)
- build(deps): bump goreleaser/goreleaser-action from 5 to 6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9175](https://togithub.com/cli/cli/pull/9175)
- build(deps): bump github.com/gorilla/websocket from 1.5.1 to 1.5.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9192](https://togithub.com/cli/cli/pull/9192)
- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9197](https://togithub.com/cli/cli/pull/9197)
- watch - handle annotation errors gracefully by
[@&#8203;wingleung](https://togithub.com/wingleung) in
[https://github.com/cli/cli/pull/9113](https://togithub.com/cli/cli/pull/9113)

#### New Contributors

- [@&#8203;hbenali](https://togithub.com/hbenali) made their first
contribution in
[https://github.com/cli/cli/pull/9151](https://togithub.com/cli/cli/pull/9151)
- [@&#8203;AlanD20](https://togithub.com/AlanD20) made their first
contribution in
[https://github.com/cli/cli/pull/9179](https://togithub.com/cli/cli/pull/9179)
- [@&#8203;wingleung](https://togithub.com/wingleung) made their first
contribution in
[https://github.com/cli/cli/pull/9113](https://togithub.com/cli/cli/pull/9113)

**Full Changelog**: cli/cli@v2.50.0...v2.51.0

### [`v2.50.0`](https://togithub.com/cli/cli/releases/tag/v2.50.0):
GitHub CLI 2.50.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.49.2...v2.50.0)

#### What's Changed

- Refactor git credential flow code by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9089](https://togithub.com/cli/cli/pull/9089)
- feat: add json output for `gh pr checks` by
[@&#8203;nobe4](https://togithub.com/nobe4) in
[https://github.com/cli/cli/pull/9079](https://togithub.com/cli/cli/pull/9079)
- Rework first auth tests with new gitcredential abstractions by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9095](https://togithub.com/cli/cli/pull/9095)
- list the various alias permutations for the command and subcommands,
via '--help' and 'gh reference' by
[@&#8203;gabemontero](https://togithub.com/gabemontero) in
[https://github.com/cli/cli/pull/8824](https://togithub.com/cli/cli/pull/8824)
- Removed tty message when checking for extension upgrades by
[@&#8203;leevic31](https://togithub.com/leevic31) in
[https://github.com/cli/cli/pull/9088](https://togithub.com/cli/cli/pull/9088)
- Fix doc bug for gh run watch by
[@&#8203;jasonodonnell](https://togithub.com/jasonodonnell) in
[https://github.com/cli/cli/pull/9052](https://togithub.com/cli/cli/pull/9052)
- feat: add support for stateReason in `gh pr view` by
[@&#8203;nobe4](https://togithub.com/nobe4) in
[https://github.com/cli/cli/pull/9080](https://togithub.com/cli/cli/pull/9080)
- fix: rename the `Attempts` field to `Attempt`; expose in `gh run view`
and `gh run ls` by [@&#8203;cawfeecake](https://togithub.com/cawfeecake)
in
[https://github.com/cli/cli/pull/8905](https://togithub.com/cli/cli/pull/8905)
- Update regex in changedFilesNames to handle quoted paths by
[@&#8203;anda3](https://togithub.com/anda3) in
[https://github.com/cli/cli/pull/9115](https://togithub.com/cli/cli/pull/9115)
- Add a `gh variable get FOO` command by
[@&#8203;arnested](https://togithub.com/arnested) in
[https://github.com/cli/cli/pull/9106](https://togithub.com/cli/cli/pull/9106)
- Add macOS pkg installer to deployment
([#&#8203;7554](https://togithub.com/cli/cli/issues/7554)) by
[@&#8203;paulober](https://togithub.com/paulober) in
[https://github.com/cli/cli/pull/7555](https://togithub.com/cli/cli/pull/7555)
- Add integration tests for `gh attestation verify` shared workflow use
case by [@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/9107](https://togithub.com/cli/cli/pull/9107)
- Add build provenance for gh CLI releases by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/9087](https://togithub.com/cli/cli/pull/9087)
- build(deps): bump github.com/gabriel-vasile/mimetype from 1.4.3 to
1.4.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9124](https://togithub.com/cli/cli/pull/9124)
- Build completions during release on macos by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9136](https://togithub.com/cli/cli/pull/9136)
- Clarify Mac OS Installer packages are unsigned by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[https://github.com/cli/cli/pull/9140](https://togithub.com/cli/cli/pull/9140)

#### New Contributors

- [@&#8203;gabemontero](https://togithub.com/gabemontero) made their
first contribution in
[https://github.com/cli/cli/pull/8824](https://togithub.com/cli/cli/pull/8824)
- [@&#8203;jasonodonnell](https://togithub.com/jasonodonnell) made their
first contribution in
[https://github.com/cli/cli/pull/9052](https://togithub.com/cli/cli/pull/9052)
- [@&#8203;anda3](https://togithub.com/anda3) made their first
contribution in
[https://github.com/cli/cli/pull/9115](https://togithub.com/cli/cli/pull/9115)
- [@&#8203;arnested](https://togithub.com/arnested) made their first
contribution in
[https://github.com/cli/cli/pull/9106](https://togithub.com/cli/cli/pull/9106)
- [@&#8203;paulober](https://togithub.com/paulober) made their first
contribution in
[https://github.com/cli/cli/pull/7555](https://togithub.com/cli/cli/pull/7555)

**Full Changelog**: cli/cli@v2.49.2...v2.50.0

### [`v2.49.2`](https://togithub.com/cli/cli/releases/tag/v2.49.2):
GitHub CLI 2.49.2

[Compare Source](https://togithub.com/cli/cli/compare/v2.49.1...v2.49.2)

#### What's Changed

- Improve `run list` doc with available `--json` fields by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/8934](https://togithub.com/cli/cli/pull/8934)
- Fix typos by [@&#8203;szepeviktor](https://togithub.com/szepeviktor)
in
[https://github.com/cli/cli/pull/9068](https://togithub.com/cli/cli/pull/9068)
- Move config interfaces into gh package by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9060](https://togithub.com/cli/cli/pull/9060)
- Creating doc to capture Codespace usage guidance by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[https://github.com/cli/cli/pull/9066](https://togithub.com/cli/cli/pull/9066)
- Fix repo fork regression by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9063](https://togithub.com/cli/cli/pull/9063)
- Add --latest=false to `gh release create` docs by
[@&#8203;kuzdogan](https://togithub.com/kuzdogan) in
[https://github.com/cli/cli/pull/8987](https://togithub.com/cli/cli/pull/8987)
- build(deps): bump github.com/sigstore/protobuf-specs from 0.3.1 to
0.3.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9075](https://togithub.com/cli/cli/pull/9075)

#### New Contributors

- [@&#8203;szepeviktor](https://togithub.com/szepeviktor) made their
first contribution in
[https://github.com/cli/cli/pull/9068](https://togithub.com/cli/cli/pull/9068)
- [@&#8203;kuzdogan](https://togithub.com/kuzdogan) made their first
contribution in
[https://github.com/cli/cli/pull/8987](https://togithub.com/cli/cli/pull/8987)

**Full Changelog**: cli/cli@v2.49.1...v2.49.2

### [`v2.49.1`](https://togithub.com/cli/cli/releases/tag/v2.49.1):
GitHub CLI 2.49.1

[Compare Source](https://togithub.com/cli/cli/compare/v2.49.0...v2.49.1)

#### What's Changed

- Do not mutate headers when initialising tableprinter by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9033](https://togithub.com/cli/cli/pull/9033)
- Document relationship between host and active account by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9032](https://togithub.com/cli/cli/pull/9032)
- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/9034](https://togithub.com/cli/cli/pull/9034)
- Run `attestation` command set integration tests separately by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/9035](https://togithub.com/cli/cli/pull/9035)
- Added support for jobs with long filenames by
[@&#8203;shayn-orca](https://togithub.com/shayn-orca) in
[https://github.com/cli/cli/pull/8684](https://togithub.com/cli/cli/pull/8684)
- Fix unused params across project by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9059](https://togithub.com/cli/cli/pull/9059)
- Fix `attestation verify` source repository check bug by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/9053](https://togithub.com/cli/cli/pull/9053)

#### New Contributors

- [@&#8203;shayn-orca](https://togithub.com/shayn-orca) made their first
contribution in
[https://github.com/cli/cli/pull/8684](https://togithub.com/cli/cli/pull/8684)

**Full Changelog**: cli/cli@v2.49.0...v2.49.1

### [`v2.49.0`](https://togithub.com/cli/cli/releases/tag/v2.49.0):
GitHub CLI 2.49.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.48.0...v2.49.0)

#### Support for GitHub Artifact Attestations

`v2.49.0` release introduces the `attestation` command set for
downloading and verifying attestations about artifacts built in GitHub
Actions! This is part of the larger Artifact Attestations initiative. An
artifact attestation is a piece of cryptographically signed metadata
that is generated as part of your artifact build process. These
attestations bind artifacts to the details of the workflow run that
produced them, and allow you to guarantee the integrity and provenance
of any artifact built in GitHub Actions.

```shell

### Verify a local artifact
gh attestation verify artifact.bin -o <your org>

### Verify a local artifact against a local artifact attestation
gh attestation verify artifact.bin -b ./artifact-v0.0.1-bundle.json -o <your org>

### Verify an OCI image
gh attestation verify oci://ghcr.io/foo/bar:latest -o <your org>

### Download artifact attestations
gh attestation download artifact.bin -o <your org>
```

To get started, check out gh help attestation. You can also use the `gh
at <command>` alias for short.

#### What's Changed

- Improve gh run rerun docs by
[@&#8203;sochotnicky](https://togithub.com/sochotnicky) in
[https://github.com/cli/cli/pull/8969](https://togithub.com/cli/cli/pull/8969)
- build(deps): bump golang.org/x/net from 0.21.0 to 0.23.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8981](https://togithub.com/cli/cli/pull/8981)
- Update `sigstore-go` dependency to v0.3.0 by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8977](https://togithub.com/cli/cli/pull/8977)
- `gh attestation tuf-root-verify` offline test fix by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8975](https://togithub.com/cli/cli/pull/8975)
- Update `gh attestation verify` output by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8991](https://togithub.com/cli/cli/pull/8991)
- build(deps): bump google.golang.org/grpc from 1.62.1 to 1.62.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8989](https://togithub.com/cli/cli/pull/8989)
- Remove `Hidden` flag from `gh attestation` command by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8998](https://togithub.com/cli/cli/pull/8998)
- Add colon for `gh secret set` by
[@&#8203;NeroBlackstone](https://togithub.com/NeroBlackstone) in
[https://github.com/cli/cli/pull/9004](https://togithub.com/cli/cli/pull/9004)
- Improve errors when loading bundle locally fails by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8996](https://togithub.com/cli/cli/pull/8996)
- Support offline mode for `gh attestation verify` by
[@&#8203;steiza](https://togithub.com/steiza) in
[https://github.com/cli/cli/pull/8997](https://togithub.com/cli/cli/pull/8997)
- Add `projectsV2` to JSON fields of `gh repo` commands by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/9007](https://togithub.com/cli/cli/pull/9007)
- Support long URLs in `gh repo clone` by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/9008](https://togithub.com/cli/cli/pull/9008)
- Fix issue with closing pager stream by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/9020](https://togithub.com/cli/cli/pull/9020)
- proof of concept for flag-level disable auth check by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[https://github.com/cli/cli/pull/9000](https://togithub.com/cli/cli/pull/9000)
- Be more general with attestation host checks by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9019](https://togithub.com/cli/cli/pull/9019)
- Add beta designation on attestation command set by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[https://github.com/cli/cli/pull/9022](https://togithub.com/cli/cli/pull/9022)
- Tweaked gh attestation help strings to generate nicer cli manual site.
by [@&#8203;phillmv](https://togithub.com/phillmv) in
[https://github.com/cli/cli/pull/9025](https://togithub.com/cli/cli/pull/9025)
- Update cli/go-gh to v2.9.0 by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[https://github.com/cli/cli/pull/9023](https://togithub.com/cli/cli/pull/9023)
- Document repo clone protocol behaviour by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/9030](https://togithub.com/cli/cli/pull/9030)

#### New Contributors

- [@&#8203;sochotnicky](https://togithub.com/sochotnicky) made their
first contribution in
[https://github.com/cli/cli/pull/8969](https://togithub.com/cli/cli/pull/8969)
- [@&#8203;NeroBlackstone](https://togithub.com/NeroBlackstone) made
their first contribution in
[https://github.com/cli/cli/pull/9004](https://togithub.com/cli/cli/pull/9004)
- [@&#8203;phillmv](https://togithub.com/phillmv) made their first
contribution in
[https://github.com/cli/cli/pull/9025](https://togithub.com/cli/cli/pull/9025)

**Full Changelog**: cli/cli@v2.48.0...v2.49.0

### [`v2.48.0`](https://togithub.com/cli/cli/releases/tag/v2.48.0):
GitHub CLI 2.48.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.47.0...v2.48.0)

#### The Big Stuff

- Added support for `--slurp`ing JSON responses in `gh api` by
[@&#8203;heaths](https://togithub.com/heaths) in
[https://github.com/cli/cli/pull/8620](https://togithub.com/cli/cli/pull/8620)
- Added `--skip-ssh-key` option to `gh auth login` command by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/8935](https://togithub.com/cli/cli/pull/8935)
- Added `numSelectedRepos` to JSON output of `gh secret list` by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/8899](https://togithub.com/cli/cli/pull/8899)
- Added support for multiple items in `gh api` nested array by
[@&#8203;Ebonsignori](https://togithub.com/Ebonsignori) in
[https://github.com/cli/cli/pull/8762](https://togithub.com/cli/cli/pull/8762)
- Fixed panic when running `gh repo rename` by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/8906](https://togithub.com/cli/cli/pull/8906)
- Fixed panic when parsing IPv6 remote URLs by
[@&#8203;babakks](https://togithub.com/babakks) in
[https://github.com/cli/cli/pull/8893](https://togithub.com/cli/cli/pull/8893)
- Fixed `gh pr lock/unlock` not working when URL is passed by
[@&#8203;t4kamura](https://togithub.com/t4kamura) in
[https://github.com/cli/cli/pull/8837](https://togithub.com/cli/cli/pull/8837)
- Fixed viewing run logs with filenames that the regex didn't handle
[@&#8203;zdrve](https://togithub.com/zdrve) in
[https://github.com/cli/cli/pull/8882](https://togithub.com/cli/cli/pull/8882)

#### The Rest

- Tidy `go.mod` by
[@&#8203;matthewhughes934](https://togithub.com/matthewhughes934) in
[https://github.com/cli/cli/pull/8958](https://togithub.com/cli/cli/pull/8958)
- Fix cache contention in Go CI jobs by
[@&#8203;matthewhughes934](https://togithub.com/matthewhughes934) in
[https://github.com/cli/cli/pull/8957](https://togithub.com/cli/cli/pull/8957)
- Fix `go` directive in `go.mod` by
[@&#8203;matthewhughes934](https://togithub.com/matthewhughes934) in
[https://github.com/cli/cli/pull/8956](https://togithub.com/cli/cli/pull/8956)
- Update install_linux.md by
[@&#8203;richterdavid](https://togithub.com/richterdavid) in
[https://github.com/cli/cli/pull/8950](https://togithub.com/cli/cli/pull/8950)
- build(deps): bump google.golang.org/grpc from 1.61.1 to 1.61.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8925](https://togithub.com/cli/cli/pull/8925)
- Add codeowners entry for the GitHub TUF root included in the
`attestation` command set by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8919](https://togithub.com/cli/cli/pull/8919)
- Create stronger run log cache abstraction by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8931](https://togithub.com/cli/cli/pull/8931)
- Remove naked returns from git ParseURL by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8929](https://togithub.com/cli/cli/pull/8929)
- Fix api cache test by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8932](https://togithub.com/cli/cli/pull/8932)
- Ensure run log cache creates cache dir if it doesn't exist by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8944](https://togithub.com/cli/cli/pull/8944)
- Close zip file in run view tests by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8945](https://togithub.com/cli/cli/pull/8945)
- Fix `attestation` cmd offline unit test failure by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8933](https://togithub.com/cli/cli/pull/8933)
- Add support to `attestation` command for more predicate types. by
[@&#8203;steiza](https://togithub.com/steiza) in
[https://github.com/cli/cli/pull/8949](https://togithub.com/cli/cli/pull/8949)

#### New Contributors

- [@&#8203;babakks](https://togithub.com/babakks) made their first
contribution in
[https://github.com/cli/cli/pull/8906](https://togithub.com/cli/cli/pull/8906)
- [@&#8203;t4kamura](https://togithub.com/t4kamura) made their first
contribution in
[https://github.com/cli/cli/pull/8837](https://togithub.com/cli/cli/pull/8837)
- [@&#8203;zdrve](https://togithub.com/zdrve) made their first
contribution in
[https://github.com/cli/cli/pull/8882](https://togithub.com/cli/cli/pull/8882)
- [@&#8203;Ebonsignori](https://togithub.com/Ebonsignori) made their
first contribution in
[https://github.com/cli/cli/pull/8762](https://togithub.com/cli/cli/pull/8762)
- [@&#8203;matthewhughes934](https://togithub.com/matthewhughes934) made
their first contribution in
[https://github.com/cli/cli/pull/8958](https://togithub.com/cli/cli/pull/8958)
- [@&#8203;richterdavid](https://togithub.com/richterdavid) made their
first contribution in
[https://github.com/cli/cli/pull/8950](https://togithub.com/cli/cli/pull/8950)

**Full Changelog**: cli/cli@v2.47.0...v2.48.0

### [`v2.47.0`](https://togithub.com/cli/cli/releases/tag/v2.47.0):
GitHub CLI 2.47.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.46.0...v2.47.0)

#### What's Changed

- Fix typo in auth switch help example by
[@&#8203;ihommani](https://togithub.com/ihommani) in
[https://github.com/cli/cli/pull/8870](https://togithub.com/cli/cli/pull/8870)
- Bump go-gh to 2.7.0 by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8884](https://togithub.com/cli/cli/pull/8884)
- gh-attestation cmd integration by
[@&#8203;malancas](https://togithub.com/malancas) in
[https://github.com/cli/cli/pull/8698](https://togithub.com/cli/cli/pull/8698)
- Upgrade to Go 1.22 by [@&#8203;yanskun](https://togithub.com/yanskun)
in
[https://github.com/cli/cli/pull/8836](https://togithub.com/cli/cli/pull/8836)
- Rely on go.mod go version in all workflows by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8911](https://togithub.com/cli/cli/pull/8911)
- build(deps): bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8902](https://togithub.com/cli/cli/pull/8902)
- build(deps): bump github.com/docker/docker from 24.0.7+incompatible to
24.0.9+incompatible by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8903](https://togithub.com/cli/cli/pull/8903)
- Fix segfault in error handling of `gh repo rename` by
[@&#8203;satoqz](https://togithub.com/satoqz) in
[https://github.com/cli/cli/pull/8888](https://togithub.com/cli/cli/pull/8888)
- build(deps): bump google.golang.org/grpc from 1.61.0 to 1.61.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8912](https://togithub.com/cli/cli/pull/8912)
- build(deps): bump github.com/gorilla/websocket from 1.5.0 to 1.5.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8913](https://togithub.com/cli/cli/pull/8913)
- build(deps): bump github.com/google/go-containerregistry from 0.19.0
to 0.19.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8914](https://togithub.com/cli/cli/pull/8914)
- build(deps): bump github.com/sigstore/protobuf-specs from 0.3.0 to
0.3.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8923](https://togithub.com/cli/cli/pull/8923)
- Bump glamour to v0.7.0 and go mod tidy by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8920](https://togithub.com/cli/cli/pull/8920)

#### New Contributors

- [@&#8203;ihommani](https://togithub.com/ihommani) made their first
contribution in
[https://github.com/cli/cli/pull/8870](https://togithub.com/cli/cli/pull/8870)
- [@&#8203;malancas](https://togithub.com/malancas) made their first
contribution in
[https://github.com/cli/cli/pull/8698](https://togithub.com/cli/cli/pull/8698)
- [@&#8203;satoqz](https://togithub.com/satoqz) made their first
contribution in
[https://github.com/cli/cli/pull/8888](https://togithub.com/cli/cli/pull/8888)

**Full Changelog**: cli/cli@v2.46.0...v2.47.0

### [`v2.46.0`](https://togithub.com/cli/cli/releases/tag/v2.46.0):
GitHub CLI 2.46.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.45.0...v2.46.0)

#### What's Changed

- Draft issue IDs are included in `project item-list` output by
[@&#8203;yasunori0418](https://togithub.com/yasunori0418) in
[https://github.com/cli/cli/pull/8754](https://togithub.com/cli/cli/pull/8754)
- New `--dry-run` option for `pr create` by
[@&#8203;v1v](https://togithub.com/v1v) in
[https://github.com/cli/cli/pull/8376](https://togithub.com/cli/cli/pull/8376)
- Bump go-keyring to fix race condition by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8833](https://togithub.com/cli/cli/pull/8833)
- PR numbers are prefixed with owner/repo for context by
[@&#8203;nobe4](https://togithub.com/nobe4) in
[https://github.com/cli/cli/pull/8778](https://togithub.com/cli/cli/pull/8778)
- Extra word removed in `codespaces` code comments by
[@&#8203;cuinix](https://togithub.com/cuinix) in
[https://github.com/cli/cli/pull/8795](https://togithub.com/cli/cli/pull/8795)
- Clarified description of the `-u`, `--user` option for `gh auth token`
by [@&#8203;gregsmi](https://togithub.com/gregsmi) in
[https://github.com/cli/cli/pull/8797](https://togithub.com/cli/cli/pull/8797)
- Fixed formatting for the description of `release upload` by
[@&#8203;malor](https://togithub.com/malor) in
[https://github.com/cli/cli/pull/8834](https://togithub.com/cli/cli/pull/8834)
- Clarified the usage of `auth status` to list all authenticated
accounts by [@&#8203;jsoref](https://togithub.com/jsoref) in
[https://github.com/cli/cli/pull/8838](https://togithub.com/cli/cli/pull/8838)
- Document auth switch behavior for two or more accounts by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8839](https://togithub.com/cli/cli/pull/8839)
- Document run watch and view not supporting fine grained PATs by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8843](https://togithub.com/cli/cli/pull/8843)
- build(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8811](https://togithub.com/cli/cli/pull/8811)
- build(deps): bump github.com/cpuguy83/go-md2man/v2 from 2.0.3 to 2.0.4
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8844](https://togithub.com/cli/cli/pull/8844)

#### New Contributors

- [@&#8203;cuinix](https://togithub.com/cuinix) made their first
contribution in
[https://github.com/cli/cli/pull/8795](https://togithub.com/cli/cli/pull/8795)
- [@&#8203;gregsmi](https://togithub.com/gregsmi) made their first
contribution in
[https://github.com/cli/cli/pull/8797](https://togithub.com/cli/cli/pull/8797)
- [@&#8203;nobe4](https://togithub.com/nobe4) made their first
contribution in
[https://github.com/cli/cli/pull/8778](https://togithub.com/cli/cli/pull/8778)
- [@&#8203;malor](https://togithub.com/malor) made their first
contribution in
[https://github.com/cli/cli/pull/8834](https://togithub.com/cli/cli/pull/8834)
- [@&#8203;yasunori0418](https://togithub.com/yasunori0418) made their
first contribution in
[https://github.com/cli/cli/pull/8754](https://togithub.com/cli/cli/pull/8754)

**Full Changelog**: cli/cli@v2.45.0...v2.46.0

### [`v2.45.0`](https://togithub.com/cli/cli/releases/tag/v2.45.0):
GitHub CLI 2.45.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.44.1...v2.45.0)

#### What's Changed

- Resolve go compiler regression by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8716](https://togithub.com/cli/cli/pull/8716)
- bug: fixed the msg returned for patching a repo variable by
[@&#8203;dean-tate](https://togithub.com/dean-tate) in
[https://github.com/cli/cli/pull/8715](https://togithub.com/cli/cli/pull/8715)
- Fix regression around commas in commit titles during `pr create` by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8768](https://togithub.com/cli/cli/pull/8768)
- feat: Add `ref` option to `gh cache list` by
[@&#8203;toshimaru](https://togithub.com/toshimaru) in
[https://github.com/cli/cli/pull/8711](https://togithub.com/cli/cli/pull/8711)
- Make comments in the default config file more informative by
[@&#8203;bartekpacia](https://togithub.com/bartekpacia) in
[https://github.com/cli/cli/pull/8756](https://togithub.com/cli/cli/pull/8756)
- Link Project to Repository or Team Command by
[@&#8203;benebsiny](https://togithub.com/benebsiny) in
[https://github.com/cli/cli/pull/8595](https://togithub.com/cli/cli/pull/8595)
- Clarify helptext for search prs regarding archived repos by
[@&#8203;stuart-leitch](https://togithub.com/stuart-leitch) in
[https://github.com/cli/cli/pull/8738](https://togithub.com/cli/cli/pull/8738)
- Simplify install command for Debian & Ubuntu by
[@&#8203;hongquan](https://togithub.com/hongquan) in
[https://github.com/cli/cli/pull/8693](https://togithub.com/cli/cli/pull/8693)
- Support `project view --web` with TTY by
[@&#8203;harveysanders](https://togithub.com/harveysanders) in
[https://github.com/cli/cli/pull/8773](https://togithub.com/cli/cli/pull/8773)
- Bump cli/go-gh v2.6.0 for tenant using GH_TOKEN by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[https://github.com/cli/cli/pull/8787](https://togithub.com/cli/cli/pull/8787)

#### New Contributors

- [@&#8203;dean-tate](https://togithub.com/dean-tate) made their first
contribution in
[https://github.com/cli/cli/pull/8715](https://togithub.com/cli/cli/pull/8715)
- [@&#8203;bartekpacia](https://togithub.com/bartekpacia) made their
first contribution in
[https://github.com/cli/cli/pull/8756](https://togithub.com/cli/cli/pull/8756)
- [@&#8203;stuart-leitch](https://togithub.com/stuart-leitch) made their
first contribution in
[https://github.com/cli/cli/pull/8738](https://togithub.com/cli/cli/pull/8738)
- [@&#8203;hongquan](https://togithub.com/hongquan) made their first
contribution in
[https://github.com/cli/cli/pull/8693](https://togithub.com/cli/cli/pull/8693)

**Full Changelog**: cli/cli@v2.44.1...v2.45.0

### [`v2.44.1`](https://togithub.com/cli/cli/releases/tag/v2.44.1):
GitHub CLI 2.44.1

[Compare Source](https://togithub.com/cli/cli/compare/v2.44.0...v2.44.1)

#### What's Changed

- Fix PR create regression around title and body when there is only one
commit by [@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8707](https://togithub.com/cli/cli/pull/8707)

**Full Changelog**: cli/cli@v2.44.0...v2.44.1

### [`v2.44.0`](https://togithub.com/cli/cli/releases/tag/v2.44.0):
GitHub CLI 2.44.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.43.1...v2.44.0)

#### What's Changed

- Feature: added Order flag for release list command by
[@&#8203;leevic31](https://togithub.com/leevic31) in
[https://github.com/cli/cli/pull/8632](https://togithub.com/cli/cli/pull/8632)
- autofill with body by
[@&#8203;guerinoni](https://togithub.com/guerinoni) in
[https://github.com/cli/cli/pull/8423](https://togithub.com/cli/cli/pull/8423)
- Add default values to web manual and man pages by
[@&#8203;zsloane](https://togithub.com/zsloane) in
[https://github.com/cli/cli/pull/8395](https://togithub.com/cli/cli/pull/8395)
- build(deps): bump microsoft/setup-msbuild from 1.3.2 to 2.0.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8648](https://togithub.com/cli/cli/pull/8648)
- Documentation for built-in aliases by
[@&#8203;Rebeccasun31](https://togithub.com/Rebeccasun31) in
[https://github.com/cli/cli/pull/8367](https://togithub.com/cli/cli/pull/8367)
- Add more detail to fork failure message by
[@&#8203;chrisroat](https://togithub.com/chrisroat) in
[https://github.com/cli/cli/pull/8614](https://togithub.com/cli/cli/pull/8614)
- feat: Add cache key option to `gh cache list` by
[@&#8203;toshimaru](https://togithub.com/toshimaru) in
[https://github.com/cli/cli/pull/8667](https://togithub.com/cli/cli/pull/8667)

#### New Contributors

- [@&#8203;zsloane](https://togithub.com/zsloane) made their first
contribution in
[https://github.com/cli/cli/pull/8395](https://togithub.com/cli/cli/pull/8395)
- [@&#8203;Rebeccasun31](https://togithub.com/Rebeccasun31) made their
first contribution in
[https://github.com/cli/cli/pull/8367](https://togithub.com/cli/cli/pull/8367)
- [@&#8203;chrisroat](https://togithub.com/chrisroat) made their first
contribution in
[https://github.com/cli/cli/pull/8614](https://togithub.com/cli/cli/pull/8614)
- [@&#8203;toshimaru](https://togithub.com/toshimaru) made their first
contribution in
[https://github.com/cli/cli/pull/8667](https://togithub.com/cli/cli/pull/8667)

**Full Changelog**: cli/cli@v2.43.1...v2.44.0

### [`v2.43.1`](https://togithub.com/cli/cli/releases/tag/v2.43.1):
GitHub CLI 2.43.1

[Compare Source](https://togithub.com/cli/cli/compare/v2.43.0...v2.43.1)

#### What's Changed

- Fix label create regression in v2.43.0 by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[https://github.com/cli/cli/pull/8653](https://togithub.com/cli/cli/pull/8653)

**Full Changelog**: cli/cli@v2.43.0...v2.43.1

### [`v2.43.0`](https://togithub.com/cli/cli/releases/tag/v2.43.0):
GitHub CLI 2.43.0

[Compare Source](https://togithub.com/cli/cli/compare/v2.42.1...v2.43.0)

#### Special note

With this release, the GitHub CLI team sees
[@&#8203;samcoe](https://togithub.com/samcoe) off to new adventures
beyond GitHub! 😿 Sam has been an amazing maintainer and colleague who
has helped so many people adopt `gh` while trying to connect with the
community regarding its needs. There will forever be a Sam-shaped hole
no one can fill but hope he continues to be a part wherever his
whirlwind journey takes him! ❤️

#### What's Changed

- Remove project JSON formatting objects by
[@&#8203;heaths](https://togithub.com/heaths) in
[https://github.com/cli/cli/pull/8541](https://togithub.com/cli/cli/pull/8541)
- build(deps): bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8467](https://togithub.com/cli/cli/pull/8467)
- build(deps): bump actions/download-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8466](https://togithub.com/cli/cli/pull/8466)
- Add option --json for gh variable list by
[@&#8203;w1mvy](https://togithub.com/w1mvy) in
[https://github.com/cli/cli/pull/8516](https://togithub.com/cli/cli/pull/8516)
- Add `--json` export flag for release list by
[@&#8203;v1v](https://togithub.com/v1v) in
[https://github.com/cli/cli/pull/8474](https://togithub.com/cli/cli/pull/8474)
- 📝 (search/repos) add usage tips for --archived=false by
[@&#8203;shion1305](https://togithub.com/shion1305) in
[https://github.com/cli/cli/pull/8391](https://togithub.com/cli/cli/pull/8391)
- fix: Prevent nil dereference in `pr view`. by
[@&#8203;octo](https://togithub.com/octo) in
[https://github.com/cli/cli/pull/8566](https://togithub.com/cli/cli/pull/8566)
- Fix some typos raised by codespell by
[@&#8203;fpistm](https://togithub.com/fpistm) in
[https://github.com/cli/cli/pull/8589](https://togithub.com/cli/cli/pull/8589)
- Add force flag to setup-git command by
[@&#8203;rajhawaldar](https://togithub.com/rajhawaldar) in
[https://github.com/cli/cli/pull/8552](https://togithub.com/cli/cli/pull/8552)
- build(deps): bump actions/cache from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8594](https://togithub.com/cli/cli/pull/8594)
- Feature: output URL for newly created repo by
[@&#8203;leevic31](https://togithub.com/leevic31) in
[https://github.com/cli/cli/pull/8574](https://togithub.com/cli/cli/pull/8574)
- Update Arch repo to \[extra] by
[@&#8203;Xeonacid](https://togithub.com/Xeonacid) in
[https://github.com/cli/cli/pull/8607](https://togithub.com/cli/cli/pull/8607)
- build(deps): bump microsoft/setup-msbuild from 1.3.1 to 1.3.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/cli/cli/pull/8629](https://togithub.com/cli/cli/pull/8629)
- fix(pr create): clarify refspec to push to correct branch in the event
of a conflicting tag by
[@&#8203;arunsathiya](https://togithub.com/arunsathiya) in
[https://github.com/cli/cli/pull/8618](https://togithub.com/cli/cli/pull/8618)
- Send activity signals during non-interactive codespace SSH command by
[@&#8203;dmgardiner25](https://togithub.com/dmgardiner25) in
[https://github.com/cli/cli/pull/8639](https://togithub.com/cli/cli/pull/8639)
- Upgrade cli/go-gh to v2.5.0 for home-manager fix by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[https://github.com/cli/cli/pull/8647](https://togithub.com/cli/cli/pull/8647)

#### New Contributors

- [@&#8203;w1mvy](https://togithub.com/w1mvy) made their first
contribution in
[https://github.com/cli/cli/pull/8516](https://togithub.com/cli/cli/pull/8516)
- [@&#8203;v1v](https://togithub.com/v1v) made their first contribution
in
[https://github.com/cli/cli/pull/8474](https://togithub.com/cli/cli/pull/8474)
- [@&#8203;octo](https://togithub.com/octo) made their first
contribution in
[https://github.com/cli/cli/pull/8566](https://togithub.com/cli/cli/pull/8566)
- [@&#8203;fpistm](https://togithub.com/fpistm) made their first
contribution in
[https://github.com/cli/cli/pull/8589](https://togithub.com/cli/cli/pull/8589)
- [@&#8203;leevic31](https://togithub.com/leevic31) made their first
contribution in
[https://github.com/cli/cli/pull/8574](https://togithub.com/cli/cli/pull/8574)
- [@&#8203;Xeonacid](https://togithub.com/Xeonacid) made their first
contribution in
[https://github.com/cli/cli/pull/8607](https://togithub.com/cli/cli/pull/8607)

**Full Changelog**: cli/cli@v2.42.1...v2.43.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/DelineaXPM/github-workflows).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
external pull request originating outside of the CLI core team
Projects
Status: Needs review 🤔
Development

Successfully merging this pull request may close these issues.

4 participants