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 parsing IPv6 remote URLs #8893

Merged
merged 2 commits into from
Apr 5, 2024

Conversation

babakks
Copy link
Contributor

@babakks babakks commented Mar 30, 2024

This PR fixes the panic raised when there's a remote with an IPv6 URL.

Fixes #8703

Problem

I traced the problem, and as @williammartin suspected, the error ignored in the line below was masking the actual problem:

newURL, _ := url.Parse(u.String())

If we set the remotes as suggested by @jcgruenhage in #8703, the URL u (in the above code) will be "ssh:https://git@[/tmp/git-repo", which obviously, is not a valid URL (note the open bracket and the missing IPv6 address). When url.Parse receives this it expects a closing bracket to be there as well, and since it's not, it'll then return an error saying "missing ']' in host".

The malformed URL is created within the ParseURL function (in git/url.go) where the port number is removed from the host (by dropping everything after the first colon):

// (git/url.go:59)
if idx := strings.Index(u.Host, ":"); idx >= 0 {
	u.Host = u.Host[0:idx]
}

This works fine with IPv4 addresses since there's only one colon, if any, in the host part just before the port number. But, IPv6 addresses could have more than one colon. In our example case, u.Host is "[::1]:22" and after (incorrectly) stripping the port number it gets changed to "[", which would later cause the mentioned error in url.Parse.

To fix this, we can trim the port number from the end of the host like this:

// (git/url.go:59)
u.Host = strings.TrimSuffix(u.Host, ":"+u.Port())

This will also handle cases like ssh:https://host:/, where there's no port number after the colon.

With this change, the panic is avoided and we get the following legitimate response:

none of the git remotes configured for this repository point to a known GitHub host. To tell gh about a new GitHub host, please use `gh auth login`

@babakks babakks requested a review from a team as a code owner March 30, 2024 21:55
@babakks babakks requested review from williammartin and removed request for a team March 30, 2024 21:55
@cliAutomation cliAutomation added the external pull request originating outside of the CLI core team label Mar 30, 2024
@cliAutomation cliAutomation added this to Needs review 🤔 in The GitHub CLI Mar 30, 2024
@babakks babakks changed the title 8703 fix parse ipv6 url Fix parsing IPv6 remote URLs Mar 30, 2024
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.

Setup

➜ git remote add ipv6 'ssh:https://git@[::1]:22/tmp/git-repo'
➜ git remote -v
ipv6    ssh:https://git@[::1]:22/tmp/git-repo (fetch)
ipv6    ssh:https://git@[::1]:22/tmp/git-repo (push)
origin  [email protected]:williammartin-test-org/test-repo.git (fetch)
origin  [email protected]:williammartin-test-org/test-repo.git (push)

Before

➜  gh pr create
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x2 addr=0x30 pc=0x10065e64c]

goroutine 1 [running]:
github.com/cli/go-gh/v2/pkg/ssh.(*Translator).Translate(0x140005cc780, 0x14000888000)
        github.com/cli/go-gh/[email protected]/pkg/ssh/ssh.go:43 +0xbc
github.com/cli/cli/v2/context.TranslateRemotes({0x1400036c0d0, 0x2, 0x140006e3a40?}, {0x1022e8380, 0x140005cc780})
        github.com/cli/cli/v2/context/remote.go:109 +0x88
github.com/cli/cli/v2/pkg/cmd/factory.New.remotesFunc.(*remoteResolver).Resolver.func6()
        github.com/cli/cli/v2/pkg/cmd/factory/remote_resolver.go:49 +0xf4
github.com/cli/cli/v2/pkg/cmd/pr/create.getRemotes(0x1400024a900)
        github.com/cli/cli/v2/pkg/cmd/pr/create/create.go:695 +0x28
github.com/cli/cli/v2/pkg/cmd/pr/create.NewCreateContext(0x1400024a900)
        github.com/cli/cli/v2/pkg/cmd/pr/create/create.go:544 +0x78
github.com/cli/cli/v2/pkg/cmd/pr/create.createRun(0x1400024a900)
        github.com/cli/cli/v2/pkg/cmd/pr/create/create.go:243 +0x3c
github.com/cli/cli/v2/pkg/cmd/pr/create.NewCmdCreate.func1(0x140004a4008, {0x102c45880?, 0x4?, 0x10106ecd7?})
        github.com/cli/cli/v2/pkg/cmd/pr/create/create.go:204 +0x8e0
github.com/spf13/cobra.(*Command).execute(0x140004a4008, {0x102c45880, 0x0, 0x0})
        github.com/spf13/[email protected]/command.go:916 +0x654
github.com/spf13/cobra.(*Command).ExecuteC(0x140004ca308)
        github.com/spf13/[email protected]/command.go:1044 +0x320
github.com/spf13/cobra.(*Command).ExecuteContextC(...)
        github.com/spf13/[email protected]/command.go:977
main.mainRun()
        github.com/cli/cli/v2/cmd/gh/main.go:119 +0x4b0
main.main()
        github.com/cli/cli/v2/cmd/gh/main.go:46 +0x1c

After

➜ ~/workspace/cli/bin/gh pr create
must be on a branch named differently than "main"

LGTM thanks for the contribution!

@williammartin williammartin merged commit 47efef6 into cli:trunk Apr 5, 2024
9 checks passed
@babakks babakks deleted the 8703-fix-parse-ipv6-url branch April 5, 2024 10:34
renovate bot added a commit to scottames/dots that referenced this pull request Apr 19, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [aquaproj/aqua-registry](https://togithub.com/aquaproj/aqua-registry)
| minor | `v4.160.0` -> `v4.163.0` |
| [cli/cli](https://togithub.com/cli/cli) | minor | `v2.47.0` ->
`v2.48.0` |
| [eza-community/eza](https://togithub.com/eza-community/eza) | patch |
`v0.18.10` -> `v0.18.11` |
|
[gruntwork-io/terragrunt](https://togithub.com/gruntwork-io/terragrunt)
| minor | `v0.56.5` -> `v0.57.5` |
| [junegunn/fzf](https://togithub.com/junegunn/fzf) | minor | `0.49.0`
-> `0.50.0` |
| [kubernetes/kubectl](https://togithub.com/kubernetes/kubectl) | minor
| `1.29.3` -> `1.30.0` |
| [snyk/cli](https://togithub.com/snyk/cli) | minor | `v1.1288.0` ->
`v1.1290.0` |
| [twpayne/chezmoi](https://togithub.com/twpayne/chezmoi) | patch |
`v2.47.3` -> `v2.47.4` |
| [zellij-org/zellij](https://togithub.com/zellij-org/zellij) | minor |
`v0.39.2` -> `v0.40.0` |

---

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

---

### Release Notes

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

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

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


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

##### 🎉 New Packages


[#&#8203;21951](https://togithub.com/aquaproj/aqua-registry/issues/21951)
[gittuf/gittuf](https://togithub.com/gittuf/gittuf): A security layer
for Git repositories

[#&#8203;21955](https://togithub.com/aquaproj/aqua-registry/issues/21955)
[pipe-cd/pipecd/pipectl](https://pipecd.dev/docs-v0.47.x/user-guide/command-line-tool/):
The command line tool for PipeCD
[@&#8203;ponkio-o](https://togithub.com/ponkio-o)

[#&#8203;21955](https://togithub.com/aquaproj/aqua-registry/issues/21955)
[pipe-cd/pipecd/piped](https://pipecd.dev/docs-v0.47.x/concepts/#piped):
A component of PipeCD that runs inside target environment to execute
deployment and report its state
[@&#8203;ponkio-o](https://togithub.com/ponkio-o)

[#&#8203;21957](https://togithub.com/aquaproj/aqua-registry/issues/21957)
[mashiike/redshift-credentials](https://togithub.com/mashiike/redshift-credentials):
a command line tool for Amazon Redshift temporary authorization with AWS
IAM [@&#8203;mashiike](https://togithub.com/mashiike)

##### 🎉 New Contributors

Thank you for your contribution!

[@&#8203;mashiike](https://togithub.com/mashiike)
[#&#8203;21957](https://togithub.com/aquaproj/aqua-registry/issues/21957)

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

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


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

##### 🎉 New Packages


[#&#8203;21900](https://togithub.com/aquaproj/aqua-registry/issues/21900)
[kubecolor/kubecolor](https://togithub.com/kubecolor/kubecolor):
Colorize your kubectl output

##### Fixes


[#&#8203;21903](https://togithub.com/aquaproj/aqua-registry/issues/21903)
charmbracelet/vhs: Follow up changes of vhs v0.7.2

[#&#8203;21902](https://togithub.com/aquaproj/aqua-registry/issues/21902)
extrawurst/gitui: Follow up changes of gitui v0.26.1

[#&#8203;21892](https://togithub.com/aquaproj/aqua-registry/issues/21892)
mjibson/sqlfmt: Rename the package to maddyblue/sqlfmt

[#&#8203;21846](https://togithub.com/aquaproj/aqua-registry/issues/21846)
vmware/govmomi/govc: Regenerate the setting

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

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


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

##### 🎉 New Packages


[#&#8203;21832](https://togithub.com/aquaproj/aqua-registry/issues/21832)
[tgenv/tgenv](https://togithub.com/tgenv/tgenv): A tool to manage
multiples Terragrunt versions
[@&#8203;bhundven](https://togithub.com/bhundven)

##### Fixes


[#&#8203;21834](https://togithub.com/aquaproj/aqua-registry/issues/21834)
mashiike/prepalert: Follow up changes of prepalert v1.0.2

A checksum file was renamed.


mashiike/prepalert@493b8ae

##### 🎉 New Contributors

Thank you for your contribution!

[@&#8203;bhundven](https://togithub.com/bhundven)
[#&#8203;21832](https://togithub.com/aquaproj/aqua-registry/issues/21832)

</details>

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

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

#### The Rest

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

#### New Contributors

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

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

</details>

<details>
<summary>eza-community/eza (eza-community/eza)</summary>

###
[`v0.18.11`](https://togithub.com/eza-community/eza/releases/tag/v0.18.11):
eza v0.18.11

[Compare
Source](https://togithub.com/eza-community/eza/compare/v0.18.10...v0.18.11)

### Note to BSD users

We recently added support for freebsd, netbsd, and openbsd. However, we
don't seem to have any regular contributors that use these platforms.
Last week, that meant netbsd build being broken (which was later fixed),
this week, it means freebsd is.

If you're a user of any of these, and wanna help us support these
platforms, please consider joining our matrix rooms and introduce
yourself.

### Changelog

#### \[0.18.11] - 2024-04-19

##### Bug Fixes

-   Fix clippy lints
-   Enable the rule only for NetBSD.
-   Build aarch64, arm without libgit2

##### Miscellaneous Tasks

-   Release eza v0.18.11

##### Ci

-   Bump NetBSD version to 10.0

### Checksums

#### sha256sum

0ca2fdbfde90eb209e0e79b26052ed0087f89ab7c4f7a28b7ef28425ac9c2cc5
./target/bin-0.18.11/eza_aarch64-unknown-linux-gnu.tar.gz
53e98fd2fece242206b9b82141c0c8f3d1a1d681aa0be1ce504353ef1e7f9d9e
./target/bin-0.18.11/eza_aarch64-unknown-linux-gnu.zip
312b8424ddd4839f9fd1afbb8d47ab2da5e60d6aa1eef0336d7b5a23cb0f467a
./target/bin-0.18.11/eza_arm-unknown-linux-gnueabihf.tar.gz
3f2387b2d7a5a51d4a592a0ba5e22dcb4181be11ca18964945d00990f9e67f33
./target/bin-0.18.11/eza_arm-unknown-linux-gnueabihf.zip
5f89f4b3a2ac8c5072c9fdbb928546768a67ab1f7ca1de61d25920d9c08eab9e
./target/bin-0.18.11/eza.exe_x86_64-pc-windows-gnu.tar.gz
deb6484d38f5080feb152fb6d6b39fef7e198784fa43abc362160ee4b64a8f0e
./target/bin-0.18.11/eza.exe_x86_64-pc-windows-gnu.zip
223e0b5e1708e83304a4143f6ad18411177f8e377afbf62d7c12f34a24d5e2b9
./target/bin-0.18.11/eza_x86_64-unknown-linux-gnu.tar.gz
49b3e7efb0f35e209324c46eb680c47613fad3de3caf4c039323068a2624d70f
./target/bin-0.18.11/eza_x86_64-unknown-linux-gnu.zip
76897bfeb00e17dffb9d4bc0a72351568461eeccbcb4b490fa1dab7a7941528a
./target/bin-0.18.11/eza_x86_64-unknown-linux-musl.tar.gz
eabae039a540fca6045af4689fff4e9c09e85f257eb96d3bcbd2801a15326a60
./target/bin-0.18.11/eza_x86_64-unknown-linux-musl.zip

#### md5sum

ae10158f7ecc52140fb7ab24d67951e5
./target/bin-0.18.11/eza_aarch64-unknown-linux-gnu.tar.gz
dd1de5d7a97010c748f19b242fedc2e0
./target/bin-0.18.11/eza_aarch64-unknown-linux-gnu.zip
d699373bf1effa3c2b1dcfa8ffc44a3f
./target/bin-0.18.11/eza_arm-unknown-linux-gnueabihf.tar.gz
fdaa9668edfda38d15352da3253d85f8
./target/bin-0.18.11/eza_arm-unknown-linux-gnueabihf.zip
a0ba17f03a48d0f2e38f2737732f11d1
./target/bin-0.18.11/eza.exe_x86_64-pc-windows-gnu.tar.gz
579b7dbe9cde99cf19c81cce23f47cf7
./target/bin-0.18.11/eza.exe_x86_64-pc-windows-gnu.zip
c5cf74787ecd87fcca8e2769d9b21863
./target/bin-0.18.11/eza_x86_64-unknown-linux-gnu.tar.gz
222ed71159ce5bc7dc05d91e08488779
./target/bin-0.18.11/eza_x86_64-unknown-linux-gnu.zip
08953f7054472626a374a542b5707f77
./target/bin-0.18.11/eza_x86_64-unknown-linux-musl.tar.gz
48c7391f0c9ebe327dc86ba36b02fa98
./target/bin-0.18.11/eza_x86_64-unknown-linux-musl.zip

#### blake3sum

1c4895bc928b452a3caaeaaab72c478c255ab745c525ed4c548e8503528112ef
./target/bin-0.18.11/eza_aarch64-unknown-linux-gnu.tar.gz
935bbe1a941f1c31a21b07df35ed3aa0cc87ff5ffbcf265c42d0478edb2170f8
./target/bin-0.18.11/eza_aarch64-unknown-linux-gnu.zip
b73aa561cd9fd8eb777e437a1da6404a3f2e0a75b7c922ea2135957763e0f514
./target/bin-0.18.11/eza_arm-unknown-linux-gnueabihf.tar.gz
4b6a6bf403aac22a3af8223b5df0c4fab72ade869fa41efe96b77e74df0c42db
./target/bin-0.18.11/eza_arm-unknown-linux-gnueabihf.zip
39eddfe74eeab4600c983586f51e8d219d83cbe3aa7da6a1398db04b5d2c9ad3
./target/bin-0.18.11/eza.exe_x86_64-pc-windows-gnu.tar.gz
782b660d795f19012fa62e85e9a6bbc3a85982f83ff8561d859ae48609ee36e7
./target/bin-0.18.11/eza.exe_x86_64-pc-windows-gnu.zip
9962259ad1b89640a7c3b74c9064e332c2af7b27e8656586c8ac8edaa9879d18
./target/bin-0.18.11/eza_x86_64-unknown-linux-gnu.tar.gz
251c7d928cd7e6671a60bbdbf92204738fb16849626c9b51bf3f8fd951fdfb4b
./target/bin-0.18.11/eza_x86_64-unknown-linux-gnu.zip
c109a4d7bd426571e0ff88c40426f5d8c80b5cb9964376fda5a3184abed6a1cc
./target/bin-0.18.11/eza_x86_64-unknown-linux-musl.tar.gz
7a86aeecd2e39b680c01d142480c0af90d7f6dc60fabc8c63f705f87e72041e5
./target/bin-0.18.11/eza_x86_64-unknown-linux-musl.zip

</details>

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

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

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

#### Description

-   Bump `golang.org/x/net` from 0.19.0 to 0.23.0

#### Related links

-
[gruntwork-io/terragrunt#3072

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

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

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

-   `run-all`
-   `--terragrunt-out-dir`

#### Description

- Added `--terragrunt-out-dir` CLI argument to use Terraform plan in
`run-all` commands from a specific directory.

#### Related links

-
[gruntwork-io/terragrunt#3073

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

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

#### Description

-   Fixed getting output from multiple nested dependencies

#### Related links

-
[gruntwork-io/terragrunt#3071

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

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

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

-   `--terragrunt-json-log`
-   `--terragrunt-tf-logs-to-json`

#### Description

-   Fixed handling of dependency outputs when JSON log format is enabled

#### Related links

-
[gruntwork-io/terragrunt#3049

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

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

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

-   `--terragrunt-provider-cache-dir`

#### Description

-   Fixed module request routing with provider caching.
-   Fixed resolving relative provider cache dir path.

#### Related links

-
[gruntwork-io/terragrunt#3057

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

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

#### Description

**Terraform 1.8 support**: We are now testing Terragrunt against
Terraform 1.8 and is confirmed to be working.

NOTE: Although this release is marked as backward incompatible, it is
functionally compatible as nothing has been changed in Terragrunt
internals. The minor version release is useful to mark the change in
Terraform version that is being tested.

#### Related links

-
[gruntwork-io/terragrunt#3052

</details>

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

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

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

- Search performance optimization. You can observe 50%+ improvement in
some scenarios.
        $ rg --line-number --no-heading --smart-case . > $DATA

        $ wc < $DATA
         5520118 26862362 897487793

$ hyperfine -w 1 -L bin fzf-0.49.0,fzf-7ce6452,fzf-a5447b8,fzf '{bin}
--filter "///" < $DATA | head -30'
        Summary
          fzf --filter "///" < $DATA | head -30 ran
1.16 ± 0.03 times faster than fzf-a5447b8 --filter "///" < $DATA | head
-30
1.23 ± 0.03 times faster than fzf-7ce6452 --filter "///" < $DATA | head
-30
1.52 ± 0.03 times faster than fzf-0.49.0 --filter "///" < $DATA | head
-30
- Added `jump` and `jump-cancel` events that are triggered when leaving
`jump` mode
    ```sh
    ```

</details>

<details>
<summary>kubernetes/kubectl (kubernetes/kubectl)</summary>

###
[`v1.30.0`](https://togithub.com/kubernetes/kubectl/compare/kubernetes-1.29.4...kubernetes-1.30.0-rc.2)

[Compare
Source](https://togithub.com/kubernetes/kubectl/compare/kubernetes-1.29.4...kubernetes-1.30.0-rc.2)

###
[`v1.29.4`](https://togithub.com/kubernetes/kubectl/compare/kubernetes-1.29.3...kubernetes-1.29.4)

[Compare
Source](https://togithub.com/kubernetes/kubectl/compare/kubernetes-1.29.3...kubernetes-1.29.4)

</details>

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

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

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

##### Bug Fixes

- **code:** Fix error handling for experimental go native code client
([#&#8203;5170](https://togithub.com/snyk/snyk/issues/5170))
([5400c69](https://togithub.com/snyk/snyk/commit/5400c698a2798672e96c91dd18706c2effebc416))

##### Features

- **code:** introduce human readable formatting for experimental test
mechanism ([#&#8203;5174](https://togithub.com/snyk/snyk/issues/5174))
([34bbc95](https://togithub.com/snyk/snyk/commit/34bbc955d241d619177dcdbf5f45bf02342e2adc))
- **sbom:** Introduce experimental sbom test command
([#&#8203;5176](https://togithub.com/snyk/snyk/issues/5176))
([ea6293b](https://togithub.com/snyk/snyk/commit/ea6293b3adabd2459bb10a0ae65f78da8cf1311d))
- snyk woof ro language support and tests
([#&#8203;5166](https://togithub.com/snyk/snyk/issues/5166))
([ed2e754](https://togithub.com/snyk/snyk/commit/ed2e754bace7a37f10a86564d5cf662f69e58daf))

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

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

##### Bug Fixes

- **ls:** Trigger re-analysis after fixing interfile issues
([#&#8203;5163](https://togithub.com/snyk/snyk/issues/5163))
([05cb9f5](https://togithub.com/snyk/snyk/commit/05cb9f5ba9284999269368d1a0a98c8562f4badd))

##### Features

- **code:** Integrate experimental go native code client \[CLI-224]
([#&#8203;5164](https://togithub.com/snyk/snyk/issues/5164))
([5bd898e](https://togithub.com/snyk/snyk/commit/5bd898e708dfb8caaa758debbf7d21998e9f2693))
- include additional policy properties, when provided, in plain text
output ([#&#8203;5142](https://togithub.com/snyk/snyk/issues/5142))
([a8be764](https://togithub.com/snyk/snyk/commit/a8be76486bfc17dda643d18a6fa9475744ddbd5c))
- use workflow data to determine exit code errors
([51c717b](https://togithub.com/snyk/snyk/commit/51c717b20c7eb8de1d2bca48c4d78ed530890b7c))

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

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

##### Bug Fixes

- **iac:** Fix Issue Path in human readable and json output \[IAC-2935]
([#&#8203;5159](https://togithub.com/snyk/snyk/issues/5159))
([5fc3d59](https://togithub.com/snyk/snyk/commit/5fc3d591fefbcf0c5e7615bf4d9899a3a17c7990))

</details>

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

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

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

#### Changelog

##### Fixes

- [`d6ad485`](https://togithub.com/twpayne/chezmoi/commit/d6ad485c8)
fix: Fix potential panic when textconv interpreter is empty
- [`b4df44d`](https://togithub.com/twpayne/chezmoi/commit/b4df44dc6)
fix: Fix panic on empty external

##### Documentation updates

- [`872c584`](https://togithub.com/twpayne/chezmoi/commit/872c58479)
docs: Add troubleshooting entry on missing /bin/bash on Nix
- [`8b2a435`](https://togithub.com/twpayne/chezmoi/commit/8b2a4352e)
docs: Add install.doctor to related software
- [`3a3dd13`](https://togithub.com/twpayne/chezmoi/commit/3a3dd1387)
docs: Add links to articles

</details>

<details>
<summary>zellij-org/zellij (zellij-org/zellij)</summary>

###
[`v0.40.0`](https://togithub.com/zellij-org/zellij/releases/tag/v0.40.0)

[Compare
Source](https://togithub.com/zellij-org/zellij/compare/v0.39.2...v0.40.0)

### Release notes

This release includes exciting new features as well as some long awaited
and requested improvements.

#### Some highlights

-   A new welcome screen
-   A new filepicker
-   Pipes
-   Open floating panes at specific coordinates
-   Rearrange tabs
-   Disconnect other clients
-   Plugin aliases
-   New possible keys to bind
-   Start session in the background
-   Performance improvements

Check out the [official
announcement](https://zellij.dev/news/welcome-screen-pipes-filepicker)

Also check out the two new screencasts/tutorials about [session
management](https://zellij.dev/tutorials/session-management/) and [the
new filepicker](https://zellij.dev/tutorials/filepicker/).

#### Are you upgrading from an older version using a custom config file?

In order to take advantage of some of the new features (eg. the
welcome-screen and filepicker), you'll need to swap the `plugins`
section in your [configuration
file](https://zellij.dev/documentation/configuration) with the one from
the [default
file](https://togithub.com/zellij-org/zellij/blob/main/zellij-utils/assets/config/default.kdl#L188-L200).

#### Do you like Zellij? ❤️

Me too! So much so that I spend 100% of my time developing and
maintaining it and have no other income.

Zellij will always be free and open-source. Zellij will never contain
ads or collect your data.

So if the tool gives you value and you are able, please consider [a
recurring monthly donation](https://togithub.com/sponsors/imsnif) of
5-10$ to help me pay my bills. There are Zellij stickers in it for you!

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMwMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

---------

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>
alexcb pushed a commit to earthly/earthly that referenced this pull request Apr 22, 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.47.0` ->
`v2.48.0` |

---

### Release Notes

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

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

#### The Rest

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

#### New Contributors

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

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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 4pm on monday" (UTC), 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to DelineaXPM/github-workflows that referenced this pull request 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
[cli/cli#9128
- Add GH_DEBUG to issue template by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[cli/cli#9167
- Fetch variable selected repo relationship when required by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#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
[cli/cli#9250
- Alternate gh attestation trusted-root subcommand by
[@&#8203;steiza](https://togithub.com/steiza) in
[cli/cli#9206
- fix: indentation in 'gh release create --help' by
[@&#8203;cchristous](https://togithub.com/cchristous) in
[cli/cli#9296
- build(deps): bump actions/attest-build-provenance from 1.3.2 to 1.3.3
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#9305
- docs: Update documentation for `gh repo create` to clarify owner by
[@&#8203;jessehouwing](https://togithub.com/jessehouwing) in
[cli/cli#9309
- Fix panic when calling `gh pr view --json stateReason` by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#9307
- Add `issue create --editor` by
[@&#8203;notomo](https://togithub.com/notomo) in
[cli/cli#7193
- Add `pr update-branch` command by
[@&#8203;babakks](https://togithub.com/babakks) in
[cli/cli#8953

#### New Contributors

- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[cli/cli#9167
- [@&#8203;cchristous](https://togithub.com/cchristous) made their first
contribution in
[cli/cli#9296
- [@&#8203;jessehouwing](https://togithub.com/jessehouwing) made their
first contribution in
[cli/cli#9309
- [@&#8203;notomo](https://togithub.com/notomo) made their first
contribution in
[cli/cli#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
[cli/cli#9162
- Attestation Verification - Buffer Fix by
[@&#8203;Forrin](https://togithub.com/Forrin) in
[cli/cli#9198
- build(deps): bump actions/attest-build-provenance from 1.2.0 to 1.3.2
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#9222
- build(deps): bump github.com/gorilla/websocket from 1.5.2 to 1.5.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#9211
- build(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#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
[cli/cli#9217
- Remove `gh at verify` public beta note by
[@&#8203;phillmv](https://togithub.com/phillmv) in
[cli/cli#9243

#### New Contributors

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

#### New Contributors

- [@&#8203;hbenali](https://togithub.com/hbenali) made their first
contribution in
[cli/cli#9151
- [@&#8203;AlanD20](https://togithub.com/AlanD20) made their first
contribution in
[cli/cli#9179
- [@&#8203;wingleung](https://togithub.com/wingleung) made their first
contribution in
[cli/cli#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
[cli/cli#9089
- feat: add json output for `gh pr checks` by
[@&#8203;nobe4](https://togithub.com/nobe4) in
[cli/cli#9079
- Rework first auth tests with new gitcredential abstractions by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#9095
- list the various alias permutations for the command and subcommands,
via '--help' and 'gh reference' by
[@&#8203;gabemontero](https://togithub.com/gabemontero) in
[cli/cli#8824
- Removed tty message when checking for extension upgrades by
[@&#8203;leevic31](https://togithub.com/leevic31) in
[cli/cli#9088
- Fix doc bug for gh run watch by
[@&#8203;jasonodonnell](https://togithub.com/jasonodonnell) in
[cli/cli#9052
- feat: add support for stateReason in `gh pr view` by
[@&#8203;nobe4](https://togithub.com/nobe4) in
[cli/cli#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
[cli/cli#8905
- Update regex in changedFilesNames to handle quoted paths by
[@&#8203;anda3](https://togithub.com/anda3) in
[cli/cli#9115
- Add a `gh variable get FOO` command by
[@&#8203;arnested](https://togithub.com/arnested) in
[cli/cli#9106
- Add macOS pkg installer to deployment
([#&#8203;7554](https://togithub.com/cli/cli/issues/7554)) by
[@&#8203;paulober](https://togithub.com/paulober) in
[cli/cli#7555
- Add integration tests for `gh attestation verify` shared workflow use
case by [@&#8203;malancas](https://togithub.com/malancas) in
[cli/cli#9107
- Add build provenance for gh CLI releases by
[@&#8203;malancas](https://togithub.com/malancas) in
[cli/cli#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
[cli/cli#9124
- Build completions during release on macos by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#9136
- Clarify Mac OS Installer packages are unsigned by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[cli/cli#9140

#### New Contributors

- [@&#8203;gabemontero](https://togithub.com/gabemontero) made their
first contribution in
[cli/cli#8824
- [@&#8203;jasonodonnell](https://togithub.com/jasonodonnell) made their
first contribution in
[cli/cli#9052
- [@&#8203;anda3](https://togithub.com/anda3) made their first
contribution in
[cli/cli#9115
- [@&#8203;arnested](https://togithub.com/arnested) made their first
contribution in
[cli/cli#9106
- [@&#8203;paulober](https://togithub.com/paulober) made their first
contribution in
[cli/cli#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
[cli/cli#8934
- Fix typos by [@&#8203;szepeviktor](https://togithub.com/szepeviktor)
in
[cli/cli#9068
- Move config interfaces into gh package by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#9060
- Creating doc to capture Codespace usage guidance by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[cli/cli#9066
- Fix repo fork regression by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#9063
- Add --latest=false to `gh release create` docs by
[@&#8203;kuzdogan](https://togithub.com/kuzdogan) in
[cli/cli#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
[cli/cli#9075

#### New Contributors

- [@&#8203;szepeviktor](https://togithub.com/szepeviktor) made their
first contribution in
[cli/cli#9068
- [@&#8203;kuzdogan](https://togithub.com/kuzdogan) made their first
contribution in
[cli/cli#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
[cli/cli#9033
- Document relationship between host and active account by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#9032
- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#9034
- Run `attestation` command set integration tests separately by
[@&#8203;malancas](https://togithub.com/malancas) in
[cli/cli#9035
- Added support for jobs with long filenames by
[@&#8203;shayn-orca](https://togithub.com/shayn-orca) in
[cli/cli#8684
- Fix unused params across project by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#9059
- Fix `attestation verify` source repository check bug by
[@&#8203;malancas](https://togithub.com/malancas) in
[cli/cli#9053

#### New Contributors

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

#### New Contributors

- [@&#8203;sochotnicky](https://togithub.com/sochotnicky) made their
first contribution in
[cli/cli#8969
- [@&#8203;NeroBlackstone](https://togithub.com/NeroBlackstone) made
their first contribution in
[cli/cli#9004
- [@&#8203;phillmv](https://togithub.com/phillmv) made their first
contribution in
[cli/cli#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
[cli/cli#8620
- Added `--skip-ssh-key` option to `gh auth login` command by
[@&#8203;babakks](https://togithub.com/babakks) in
[cli/cli#8935
- Added `numSelectedRepos` to JSON output of `gh secret list` by
[@&#8203;babakks](https://togithub.com/babakks) in
[cli/cli#8899
- Added support for multiple items in `gh api` nested array by
[@&#8203;Ebonsignori](https://togithub.com/Ebonsignori) in
[cli/cli#8762
- Fixed panic when running `gh repo rename` by
[@&#8203;babakks](https://togithub.com/babakks) in
[cli/cli#8906
- Fixed panic when parsing IPv6 remote URLs by
[@&#8203;babakks](https://togithub.com/babakks) in
[cli/cli#8893
- Fixed `gh pr lock/unlock` not working when URL is passed by
[@&#8203;t4kamura](https://togithub.com/t4kamura) in
[cli/cli#8837
- Fixed viewing run logs with filenames that the regex didn't handle
[@&#8203;zdrve](https://togithub.com/zdrve) in
[cli/cli#8882

#### The Rest

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

#### New Contributors

- [@&#8203;babakks](https://togithub.com/babakks) made their first
contribution in
[cli/cli#8906
- [@&#8203;t4kamura](https://togithub.com/t4kamura) made their first
contribution in
[cli/cli#8837
- [@&#8203;zdrve](https://togithub.com/zdrve) made their first
contribution in
[cli/cli#8882
- [@&#8203;Ebonsignori](https://togithub.com/Ebonsignori) made their
first contribution in
[cli/cli#8762
- [@&#8203;matthewhughes934](https://togithub.com/matthewhughes934) made
their first contribution in
[cli/cli#8958
- [@&#8203;richterdavid](https://togithub.com/richterdavid) made their
first contribution in
[cli/cli#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
[cli/cli#8870
- Bump go-gh to 2.7.0 by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#8884
- gh-attestation cmd integration by
[@&#8203;malancas](https://togithub.com/malancas) in
[cli/cli#8698
- Upgrade to Go 1.22 by [@&#8203;yanskun](https://togithub.com/yanskun)
in
[cli/cli#8836
- Rely on go.mod go version in all workflows by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#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
[cli/cli#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
[cli/cli#8903
- Fix segfault in error handling of `gh repo rename` by
[@&#8203;satoqz](https://togithub.com/satoqz) in
[cli/cli#8888
- build(deps): bump google.golang.org/grpc from 1.61.0 to 1.61.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#8912
- build(deps): bump github.com/gorilla/websocket from 1.5.0 to 1.5.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#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
[cli/cli#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
[cli/cli#8923
- Bump glamour to v0.7.0 and go mod tidy by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#8920

#### New Contributors

- [@&#8203;ihommani](https://togithub.com/ihommani) made their first
contribution in
[cli/cli#8870
- [@&#8203;malancas](https://togithub.com/malancas) made their first
contribution in
[cli/cli#8698
- [@&#8203;satoqz](https://togithub.com/satoqz) made their first
contribution in
[cli/cli#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
[cli/cli#8754
- New `--dry-run` option for `pr create` by
[@&#8203;v1v](https://togithub.com/v1v) in
[cli/cli#8376
- Bump go-keyring to fix race condition by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#8833
- PR numbers are prefixed with owner/repo for context by
[@&#8203;nobe4](https://togithub.com/nobe4) in
[cli/cli#8778
- Extra word removed in `codespaces` code comments by
[@&#8203;cuinix](https://togithub.com/cuinix) in
[cli/cli#8795
- Clarified description of the `-u`, `--user` option for `gh auth token`
by [@&#8203;gregsmi](https://togithub.com/gregsmi) in
[cli/cli#8797
- Fixed formatting for the description of `release upload` by
[@&#8203;malor](https://togithub.com/malor) in
[cli/cli#8834
- Clarified the usage of `auth status` to list all authenticated
accounts by [@&#8203;jsoref](https://togithub.com/jsoref) in
[cli/cli#8838
- Document auth switch behavior for two or more accounts by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#8839
- Document run watch and view not supporting fine grained PATs by
[@&#8203;williammartin](https://togithub.com/williammartin) in
[cli/cli#8843
- build(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#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
[cli/cli#8844

#### New Contributors

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

#### New Contributors

- [@&#8203;dean-tate](https://togithub.com/dean-tate) made their first
contribution in
[cli/cli#8715
- [@&#8203;bartekpacia](https://togithub.com/bartekpacia) made their
first contribution in
[cli/cli#8756
- [@&#8203;stuart-leitch](https://togithub.com/stuart-leitch) made their
first contribution in
[cli/cli#8738
- [@&#8203;hongquan](https://togithub.com/hongquan) made their first
contribution in
[cli/cli#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
[cli/cli#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
[cli/cli#8632
- autofill with body by
[@&#8203;guerinoni](https://togithub.com/guerinoni) in
[cli/cli#8423
- Add default values to web manual and man pages by
[@&#8203;zsloane](https://togithub.com/zsloane) in
[cli/cli#8395
- build(deps): bump microsoft/setup-msbuild from 1.3.2 to 2.0.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#8648
- Documentation for built-in aliases by
[@&#8203;Rebeccasun31](https://togithub.com/Rebeccasun31) in
[cli/cli#8367
- Add more detail to fork failure message by
[@&#8203;chrisroat](https://togithub.com/chrisroat) in
[cli/cli#8614
- feat: Add cache key option to `gh cache list` by
[@&#8203;toshimaru](https://togithub.com/toshimaru) in
[cli/cli#8667

#### New Contributors

- [@&#8203;zsloane](https://togithub.com/zsloane) made their first
contribution in
[cli/cli#8395
- [@&#8203;Rebeccasun31](https://togithub.com/Rebeccasun31) made their
first contribution in
[cli/cli#8367
- [@&#8203;chrisroat](https://togithub.com/chrisroat) made their first
contribution in
[cli/cli#8614
- [@&#8203;toshimaru](https://togithub.com/toshimaru) made their first
contribution in
[cli/cli#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
[cli/cli#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
[cli/cli#8541
- build(deps): bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#8467
- build(deps): bump actions/download-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#8466
- Add option --json for gh variable list by
[@&#8203;w1mvy](https://togithub.com/w1mvy) in
[cli/cli#8516
- Add `--json` export flag for release list by
[@&#8203;v1v](https://togithub.com/v1v) in
[cli/cli#8474
- 📝 (search/repos) add usage tips for --archived=false by
[@&#8203;shion1305](https://togithub.com/shion1305) in
[cli/cli#8391
- fix: Prevent nil dereference in `pr view`. by
[@&#8203;octo](https://togithub.com/octo) in
[cli/cli#8566
- Fix some typos raised by codespell by
[@&#8203;fpistm](https://togithub.com/fpistm) in
[cli/cli#8589
- Add force flag to setup-git command by
[@&#8203;rajhawaldar](https://togithub.com/rajhawaldar) in
[cli/cli#8552
- build(deps): bump actions/cache from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#8594
- Feature: output URL for newly created repo by
[@&#8203;leevic31](https://togithub.com/leevic31) in
[cli/cli#8574
- Update Arch repo to \[extra] by
[@&#8203;Xeonacid](https://togithub.com/Xeonacid) in
[cli/cli#8607
- build(deps): bump microsoft/setup-msbuild from 1.3.1 to 1.3.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[cli/cli#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
[cli/cli#8618
- Send activity signals during non-interactive codespace SSH command by
[@&#8203;dmgardiner25](https://togithub.com/dmgardiner25) in
[cli/cli#8639
- Upgrade cli/go-gh to v2.5.0 for home-manager fix by
[@&#8203;andyfeller](https://togithub.com/andyfeller) in
[cli/cli#8647

#### New Contributors

- [@&#8203;w1mvy](https://togithub.com/w1mvy) made their first
contribution in
[cli/cli#8516
- [@&#8203;v1v](https://togithub.com/v1v) made their first contribution
in
[cli/cli#8474
- [@&#8203;octo](https://togithub.com/octo) made their first
contribution in
[cli/cli#8566
- [@&#8203;fpistm](https://togithub.com/fpistm) made their first
contribution in
[cli/cli#8589
- [@&#8203;leevic31](https://togithub.com/leevic31) made their first
contribution in
[cli/cli#8574
- [@&#8203;Xeonacid](https://togithub.com/Xeonacid) made their first
contribution in
[cli/cli#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
No open projects
The GitHub CLI
  
Needs review 🤔
Development

Successfully merging this pull request may close these issues.

IPv6 literals in remotes triggers SIGSEGV
3 participants