Downloads:
644,111
Downloads of v 2.75.0:
1,382
Last Update:
09 Jul 2025
Package Maintainer(s):
Software Author(s):
- GitHub
Tags:
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
GitHub CLI
- 1
- 2
- 3
2.75.0 | Updated: 09 Jul 2025
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
644,111
Downloads of v 2.75.0:
1,382
Maintainer(s):
Software Author(s):
- GitHub
GitHub CLI 2.75.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by GitHub. The inclusion of GitHub trademark(s), if any, upon this webpage is solely to identify GitHub goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install GitHub CLI, run the following command from the command line or from PowerShell:
To upgrade GitHub CLI, run the following command from the command line or from PowerShell:
To uninstall GitHub CLI, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download gh --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade gh -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade gh -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install gh
win_chocolatey:
name: gh
version: '2.75.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'gh' do
action :install
source 'INTERNAL REPO URL'
version '2.75.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller gh
{
Name = "gh"
Version = "2.75.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'gh':
ensure => '2.75.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 09 Jul 2025.
gh is GitHub on the command line. It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code.
Usage
gh pr [status, list, view, checkout, create]
gh issue [status, list, view, create]
gh help
NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.
md5: 0C03943051319EA28BCF96DF2B99D7FD | sha1: A77237F38D58E87CE7A37716DF685D12ACB84A11 | sha256: B81501E53AD1E56739661A85B5883B2341F4F885FC12E39077DE57E4DDCA40FA | sha512: 07BBAB4145ED5C1677557BE248F120203DFAF7999F227477F000524A4FFAC00C05E6F1CE6305B0CB6BB5DDE3F1AD3A629BD1CE7CCAFF133E27A2C2E621670B21
From: https://raw.githubusercontent.com/cli/cli/master/LICENSE
LICENSE
MIT License
Copyright (c) 2019 GitHub Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy.
To verify the files using the project source:
1. Please go to the project source location and download the release matching the package version.
2. Use Get-FileHash -Path <FILE TO VERIFY> to get the file hash value from both the official release file (from step 1 above) and the file from the package and compare them.
x64 URL: https://github.com/cli/cli/releases/download/v2.75.0/gh_2.75.0_windows_amd64.msi
x64 Checksum Type: SHA256
x64 Checksum: B81501E53AD1E56739661A85B5883B2341F4F885FC12E39077DE57E4DDCA40FA
Log in or click on link to see number of positives.
- gh.2.75.0.nupkg (fd9445e900e9) - ## / 56
- gh_2.75.0_windows_amd64.msi (b81501e53ad1) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
GitHub CLI 2.75.0 | 1382 | Wednesday, July 9, 2025 | Approved | |
GitHub CLI 2.74.2 | 12667 | Wednesday, June 18, 2025 | Approved | |
GitHub CLI 2.74.1 | 5613 | Tuesday, June 10, 2025 | Approved | |
GitHub CLI 2.74.0 | 5654 | Friday, May 30, 2025 | Approved | |
GitHub CLI 2.73.0 | 5778 | Tuesday, May 20, 2025 | Approved | |
GitHub CLI 2.72.0 | 8776 | Thursday, May 1, 2025 | Approved | |
GitHub CLI 2.71.2 | 3663 | Thursday, April 24, 2025 | Approved | |
GitHub CLI 2.71.0 | 1062 | Wednesday, April 23, 2025 | Approved | |
GitHub CLI 2.70.0 | 4622 | Tuesday, April 15, 2025 | Approved | |
GitHub CLI 2.69.0 | 11449 | Wednesday, March 19, 2025 | Approved | |
GitHub CLI 2.68.1 | 5603 | Thursday, March 6, 2025 | Approved | |
GitHub CLI 2.68.0 | 225 | Thursday, March 6, 2025 | Approved | |
GitHub CLI 2.67.0 | 9465 | Wednesday, February 12, 2025 | Approved | |
GitHub CLI 2.66.1 | 5788 | Saturday, February 1, 2025 | Approved | |
GitHub CLI 2.66.0 | 273 | Friday, January 31, 2025 | Approved | |
GitHub CLI 2.65.0 | 17832 | Tuesday, January 7, 2025 | Approved | |
GitHub CLI 2.64.0 | 13010 | Friday, December 20, 2024 | Approved | |
GitHub CLI 2.63.2 | 14796 | Friday, December 6, 2024 | Approved | |
GitHub CLI 2.63.1 | 2912 | Wednesday, December 4, 2024 | Approved | |
GitHub CLI 2.63.0 | 6392 | Thursday, November 28, 2024 | Approved | |
GitHub CLI 2.62.0 | 16298 | Thursday, November 14, 2024 | Approved | |
GitHub CLI 2.61.0 | 8180 | Thursday, November 7, 2024 | Approved | |
GitHub CLI 2.60.1 | 15221 | Friday, October 25, 2024 | Approved | |
GitHub CLI 2.60.0 | 1436 | Thursday, October 24, 2024 | Approved | |
GitHub CLI 2.59.0 | 8376 | Wednesday, October 16, 2024 | Approved | |
GitHub CLI 2.58.0 | 14927 | Wednesday, October 2, 2024 | Approved | |
GitHub CLI 2.57.0 | 14676 | Monday, September 16, 2024 | Approved | |
GitHub CLI 2.56.0 | 3395 | Monday, September 9, 2024 | Approved | |
GitHub CLI 2.55.0 | 7397 | Tuesday, August 20, 2024 | Approved | |
GitHub CLI 2.54.0 | 6430 | Thursday, August 1, 2024 | Approved | |
GitHub CLI 2.53.0 | 6309 | Thursday, July 18, 2024 | Approved | |
GitHub CLI 2.52.0 | 8935 | Tuesday, June 25, 2024 | Approved | |
GitHub CLI 2.51.0 | 4349 | Thursday, June 13, 2024 | Approved | |
GitHub CLI 2.50.0 | 5542 | Wednesday, May 29, 2024 | Approved | |
GitHub CLI 2.49.2 | 5878 | Monday, May 13, 2024 | Approved | |
GitHub CLI 2.49.1 | 2367 | Wednesday, May 8, 2024 | Approved | |
GitHub CLI 2.49.0 | 3255 | Tuesday, April 30, 2024 | Approved | |
GitHub CLI 2.48.0 | 4841 | Wednesday, April 17, 2024 | Approved | |
GitHub CLI 2.47.0 | 4988 | Wednesday, April 3, 2024 | Approved | |
GitHub CLI 2.46.0 | 4866 | Thursday, March 21, 2024 | Approved | |
GitHub CLI 2.45.0 | 5554 | Tuesday, March 5, 2024 | Approved | |
GitHub CLI 2.44.1 | 4921 | Friday, February 16, 2024 | Approved | |
GitHub CLI 2.44.0 | 840 | Thursday, February 15, 2024 | Approved | |
GitHub CLI 2.43.1 | 4824 | Thursday, February 1, 2024 | Approved | |
GitHub CLI 2.43.0 | 542 | Wednesday, January 31, 2024 | Approved | |
GitHub CLI 2.42.1 | 5790 | Wednesday, January 17, 2024 | Approved | |
GitHub CLI 2.42.0 | 2459 | Thursday, January 11, 2024 | Approved | |
GitHub CLI 2.41.0 | 1787 | Monday, January 8, 2024 | Approved | |
GitHub CLI 2.40.1 | 6956 | Wednesday, December 13, 2023 | Approved | |
GitHub CLI 2.40.0 | 2598 | Thursday, December 7, 2023 | Approved | |
GitHub CLI 2.39.2 | 3391 | Monday, November 27, 2023 | Approved | |
GitHub CLI 2.39.1 | 4785 | Tuesday, November 14, 2023 | Approved | |
GitHub CLI 2.39.0 | 103 | Tuesday, November 14, 2023 | Approved | |
GitHub CLI 2.38.0 | 4047 | Wednesday, November 1, 2023 | Approved | |
GitHub CLI 2.37.0 | 4780 | Tuesday, October 17, 2023 | Approved | |
GitHub CLI 2.36.0 | 6255 | Tuesday, October 3, 2023 | Approved | |
GitHub CLI 2.35.0 | 6075 | Tuesday, September 19, 2023 | Approved | |
GitHub CLI 2.34.0 | 4589 | Wednesday, September 6, 2023 | Approved | |
GitHub CLI 2.33.0 | 4480 | Monday, August 21, 2023 | Approved | |
GitHub CLI 2.32.1 | 10522 | Tuesday, July 25, 2023 | Approved | |
GitHub CLI 2.32.0 | 6147 | Wednesday, July 12, 2023 | Approved | |
GitHub CLI 2.31.0 | 5160 | Wednesday, June 21, 2023 | Approved | |
GitHub CLI 2.30.0 | 5741 | Tuesday, May 30, 2023 | Approved | |
GitHub CLI 2.29.0 | 5833 | Wednesday, May 10, 2023 | Approved | |
GitHub CLI 2.28.0 | 5111 | Tuesday, April 25, 2023 | Approved | |
GitHub CLI 2.27.0 | 5230 | Saturday, April 8, 2023 | Approved | |
GitHub CLI 2.26.1 | 1663 | Wednesday, April 5, 2023 | Approved | |
GitHub CLI 2.25.1 | 5505 | Tuesday, March 21, 2023 | Approved | |
GitHub CLI 2.25.0 | 777 | Tuesday, March 21, 2023 | Approved | |
GitHub CLI 2.24.3 | 4180 | Thursday, March 9, 2023 | Approved | |
GitHub CLI 2.24.0 | 883 | Wednesday, March 8, 2023 | Approved | |
GitHub CLI 2.23.0 | 7649 | Wednesday, February 8, 2023 | Approved | |
GitHub CLI 2.22.1 | 5268 | Friday, January 27, 2023 | Approved | |
GitHub CLI 2.22.0 | 1601 | Wednesday, January 25, 2023 | Approved | |
GitHub CLI 2.21.2 | 8215 | Wednesday, January 4, 2023 | Approved | |
GitHub CLI 2.21.1 | 2651 | Friday, December 23, 2022 | Approved | |
GitHub CLI 2.21.0 | 453 | Friday, December 23, 2022 | Approved | |
GitHub CLI 2.20.2 | 10910 | Tuesday, November 15, 2022 | Approved | |
GitHub CLI 2.20.0 | 1107 | Sunday, November 13, 2022 | Approved | |
GitHub CLI 2.19.0 | 4705 | Thursday, November 3, 2022 | Approved | |
GitHub CLI 2.18.1 | 4209 | Friday, October 21, 2022 | Approved | |
GitHub CLI 2.18.0 | 1022 | Tuesday, October 18, 2022 | Approved | |
GitHub CLI 2.17.0 | 4455 | Wednesday, October 5, 2022 | Approved | |
GitHub CLI 2.16.1 | 2091 | Friday, September 30, 2022 | Approved | |
GitHub CLI 2.15.0 | 6194 | Tuesday, September 6, 2022 | Approved | |
GitHub CLI 2.14.7 | 3962 | Thursday, August 25, 2022 | Approved | |
GitHub CLI 2.14.6 | 672 | Wednesday, August 24, 2022 | Approved | |
GitHub CLI 2.14.5 | 340 | Wednesday, August 24, 2022 | Approved | |
GitHub CLI 2.14.4 | 3679 | Wednesday, August 10, 2022 | Approved | |
GitHub CLI 2.14.3 | 3857 | Tuesday, July 26, 2022 | Approved | |
GitHub CLI 2.14.2 | 3225 | Thursday, July 14, 2022 | Approved | |
GitHub CLI 2.14.1 | 1273 | Tuesday, July 12, 2022 | Approved | |
GitHub CLI 2.14.0 | 405 | Tuesday, July 12, 2022 | Approved | |
GitHub CLI 2.13.0 | 5604 | Thursday, June 23, 2022 | Approved | |
GitHub CLI 2.12.1 | 4129 | Thursday, June 9, 2022 | Approved | |
GitHub CLI 2.12.0 | 684 | Wednesday, June 8, 2022 | Approved | |
GitHub CLI 2.11.3 | 3707 | Thursday, May 26, 2022 | Approved | |
GitHub CLI 2.11.1 | 1000 | Tuesday, May 24, 2022 | Approved | |
GitHub CLI 2.10.1 | 4091 | Tuesday, May 10, 2022 | Approved | |
GitHub CLI 2.9.0 | 5284 | Tuesday, April 26, 2022 | Approved | |
GitHub CLI 2.8.0 | 3697 | Wednesday, April 13, 2022 | Approved | |
GitHub CLI 2.7.0 | 4040 | Wednesday, March 30, 2022 | Approved | |
GitHub CLI 2.6.0 | 3875 | Tuesday, March 15, 2022 | Approved | |
GitHub CLI 2.5.2 | 4622 | Tuesday, March 1, 2022 | Approved | |
GitHub CLI 2.5.1 | 3785 | Tuesday, February 15, 2022 | Approved | |
GitHub CLI 2.5.0 | 3953 | Tuesday, February 1, 2022 | Approved | |
GitHub CLI 2.4.0 | 8424 | Tuesday, December 21, 2021 | Approved | |
GitHub CLI 2.3.0 | 4324 | Thursday, December 2, 2021 | Approved | |
GitHub CLI 2.2.0 | 7380 | Tuesday, October 26, 2021 | Approved | |
GitHub CLI 2.1.0 | 2679 | Friday, October 15, 2021 | Approved | |
GitHub CLI 2.0.0 | 9058 | Tuesday, August 24, 2021 | Approved | |
GitHub CLI 1.14.0 | 3242 | Thursday, August 5, 2021 | Approved | |
GitHub CLI 1.13.1 | 2737 | Wednesday, July 21, 2021 | Approved | |
GitHub CLI 1.12.1 | 3239 | Thursday, July 1, 2021 | Approved | |
GitHub CLI 1.12.0 | 586 | Wednesday, June 30, 2021 | Approved | |
GitHub CLI 1.11.0 | 4001 | Friday, June 4, 2021 | Approved | |
GitHub CLI 1.10.3 | 2504 | Friday, May 21, 2021 | Approved | |
GitHub CLI 1.10.2 | 825 | Wednesday, May 19, 2021 | Approved | |
GitHub CLI 1.10.1 | 183 | Wednesday, May 19, 2021 | Approved | |
GitHub CLI 1.10.0 | 552 | Tuesday, May 18, 2021 | Approved | |
GitHub CLI 1.9.2 | 4322 | Wednesday, April 21, 2021 | Approved | |
GitHub CLI 1.9.1 | 1525 | Thursday, April 15, 2021 | Approved | |
GitHub CLI 1.9.0 | 563 | Thursday, April 15, 2021 | Approved | |
GitHub CLI 1.8.1 | 2055 | Friday, April 2, 2021 | Approved | |
GitHub CLI 1.8.0 | 554 | Wednesday, March 31, 2021 | Approved | |
GitHub CLI 1.7.0 | 4073 | Friday, March 5, 2021 | Approved | |
GitHub CLI 1.6.2 | 1907 | Tuesday, February 23, 2021 | Approved | |
GitHub CLI 1.6.1 | 1136 | Friday, February 19, 2021 | Approved | |
GitHub CLI 1.6.0 | 514 | Thursday, February 18, 2021 | Approved | |
GitHub CLI 1.5.0 | 3654 | Friday, January 22, 2021 | Approved | |
GitHub CLI 1.4.0 | 4437 | Tuesday, December 15, 2020 | Approved | |
GitHub CLI 1.3.1 | 2051 | Thursday, December 3, 2020 | Approved | |
GitHub CLI 1.3.0 | 1558 | Wednesday, November 25, 2020 | Approved | |
GitHub CLI 1.2.1 | 2106 | Wednesday, November 11, 2020 | Approved | |
GitHub CLI 1.2.0 | 2547 | Tuesday, October 27, 2020 | Approved | |
GitHub CLI 1.1.0 | 3363 | Tuesday, October 6, 2020 | Approved | |
GitHub CLI 1.0.0 | 4491 | Wednesday, September 16, 2020 | Approved | |
GitHub CLI 0.12.0 | 791 | Tuesday, September 8, 2020 | Approved | |
GitHub CLI 0.11.1 | 2143 | Wednesday, July 29, 2020 | Approved | |
GitHub CLI 0.11.0 | 871 | Friday, July 17, 2020 | Approved | |
GitHub CLI 0.10.1 | 1317 | Wednesday, June 24, 2020 | Approved | |
GitHub CLI 0.10.0 | 882 | Friday, June 12, 2020 | Approved | |
GitHub CLI 0.9.0 | 1118 | Tuesday, May 26, 2020 | Approved | |
GitHub CLI 0.8.0 | 881 | Tuesday, May 12, 2020 | Approved | |
GitHub CLI 0.7.0 | 773 | Thursday, April 23, 2020 | Approved | |
GitHub CLI 0.6.4 | 519 | Monday, April 6, 2020 | Approved | |
GitHub CLI 0.6.2 | 196 | Thursday, March 26, 2020 | Approved | |
GitHub CLI 0.6.1 | 608 | Monday, March 9, 2020 | Approved | |
GitHub CLI 0.5.5 | 852 | Friday, February 14, 2020 | Approved |
Copyright 2020 GitHub
What's Changed
✨ Features
- init release verify subcommands by @ejahnGithub in https://github.com/cli/cli/pull/11018
- Embed Windows resources (VERSIONINFO) during build by @babakks in https://github.com/cli/cli/pull/11048
- Support
--no-repos-selected
ongh secret set
by @williammartin in https://github.com/cli/cli/pull/11217
🐛 Fixes
- Fix:
gh pr create
prioritize--title
and--body
over--fill
when--web
is present by @dankrzeminski32 in https://github.com/cli/cli/pull/10547 - fix: get token for active user instead of blank if possible by @anuraaga in https://github.com/cli/cli/pull/11038
- Use Actions API to retrieve job run logs as a fallback mechanism by @babakks in https://github.com/cli/cli/pull/11172
- Fix query object state mutation during pagination by @babakks in https://github.com/cli/cli/pull/11244
- Handle
HTTP 404
when deleting remote branch inpr merge
by @babakks in https://github.com/cli/cli/pull/11234
📚 Docs & Chores
- chore: fix function name by @jinjingroad in https://github.com/cli/cli/pull/11149
- chore: update Go version to 1.24 in devcontainer configuration and docs by @tMinamiii in https://github.com/cli/cli/pull/11158
- Ensure lint workflow checks whether 3rd party license and code is up to date by @andyfeller in https://github.com/cli/cli/pull/11047
- docs: install_linux.md: add Solus linux install instructions by @chax in https://github.com/cli/cli/pull/10823
- Fix missing newline in install_linux.md by @BagToad in https://github.com/cli/cli/pull/11160
- Ensure automation uses pinned go-licenses version by @andyfeller in https://github.com/cli/cli/pull/11161
- Add
workflow_dispatch
support to PR Help Wanted check by @BagToad in https://github.com/cli/cli/pull/11179 - Remove unused
GH_TOKEN
env variable from workflow by @BagToad in https://github.com/cli/cli/pull/11190 - Add workflow to automate go version bumping by @williammartin in https://github.com/cli/cli/pull/11189
- Fix inconsistent use of tabs and spaces by @Stefan-Heimersheim in https://github.com/cli/cli/pull/11194
- Decouple arg parsing from PR finder by @babakks in https://github.com/cli/cli/pull/11192
- docs: consistently use
apt
in installation instructions by @tklauser in https://github.com/cli/cli/pull/11216 - Ensure bump go script has git user configured by @williammartin in https://github.com/cli/cli/pull/11229
- Inject token into bump-go workflow by @williammartin in https://github.com/cli/cli/pull/11233
- Reinstating Primer Style CLI content within
cli/cli
repository by @andyfeller in https://github.com/cli/cli/pull/11060 - Add setup-go to bump-go workflow by @williammartin in https://github.com/cli/cli/pull/11237
- Ensure GoReleaser does not break on Mac OS and Linux when skipping Windows
.rsyso
generation script by @andyfeller in https://github.com/cli/cli/pull/11257
:dependabot: Dependencies
- Bump all dependencies except dev-tunnels by @williammartin in https://github.com/cli/cli/pull/11203
- Update microsoft dev-tunnels to v0.1.13 by @williammartin in https://github.com/cli/cli/pull/11205
- Consume dependabot minor versions for go modules by @williammartin in https://github.com/cli/cli/pull/11213
New Contributors
- @jinjingroad made their first contribution in https://github.com/cli/cli/pull/11149
- @tMinamiii made their first contribution in https://github.com/cli/cli/pull/11158
- @chax made their first contribution in https://github.com/cli/cli/pull/10823
- @dankrzeminski32 made their first contribution in https://github.com/cli/cli/pull/10547
- @anuraaga made their first contribution in https://github.com/cli/cli/pull/11038
- @Stefan-Heimersheim made their first contribution in https://github.com/cli/cli/pull/11194
Full Changelog: https://github.com/cli/cli/compare/v2.74.2...v2.75.0
This package has no dependencies.
Ground Rules:
- This discussion is only about GitHub CLI and the GitHub CLI package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or GitHub CLI, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.