Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

134,636

Downloads of v 5.10.2:

493

Last Update:

01 Jun 2017

Package Maintainer(s):

Software Author(s):

  • Heroku

Tags:

Heroku Command Line Interface (CLI) (Install)

This is not the latest version of Heroku Command Line Interface (CLI) (Install) available.

  • 1
  • 2
  • 3

5.10.2 | Updated: 01 Jun 2017

Downloads:

134,636

Downloads of v 5.10.2:

493

Maintainer(s):

Software Author(s):

  • Heroku

Heroku Command Line Interface (CLI) (Install) 5.10.2

This is not the latest version of Heroku Command Line Interface (CLI) (Install) available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Heroku. The inclusion of Heroku trademark(s), if any, upon this webpage is solely to identify Heroku goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Heroku Command Line Interface (CLI) (Install), run the following command from the command line or from PowerShell:

>

To upgrade Heroku Command Line Interface (CLI) (Install), run the following command from the command line or from PowerShell:

>

To uninstall Heroku Command Line Interface (CLI) (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade heroku-cli -y --source="'INTERNAL REPO URL'" --version="'5.10.2'" [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 heroku-cli -y --source="'INTERNAL REPO URL'" --version="'5.10.2'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install heroku-cli
  win_chocolatey:
    name: heroku-cli
    version: '5.10.2'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'heroku-cli' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '5.10.2'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller heroku-cli
{
    Name     = "heroku-cli"
    Version  = "5.10.2"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'heroku-cli':
  ensure   => '5.10.2',
  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.

Package Approved

This package was approved as a trusted package on 01 Jun 2017.

Description

This software requires a Heroku account in order to work.

Heroku lets you deploy, run and manage applications written in Ruby, Node.js, Java, Python, Clojure, Scala, Go and PHP.

An application is a collection of source code written in one of these languages, perhaps a framework, and some dependency description that instructs a build system as to which additional dependencies are needed in order to build and run the application.

Dependency mechanisms vary across languages: in Ruby you use a Gemfile, in Python a requirements.txt, in Node.js a package.json, in Java a pom.xml and so on.

The source code for your application, together with the dependency file, should provide enough information for the Heroku platform to build your application, to produce something that can be executed.


legal\LICENSE.txt
From: https://github.com/heroku/cli/blob/master/LICENSE

LICENSE

The MIT License (MIT)

Copyright © Heroku 2016

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.
legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
1. Download installer:

    x32: https://cli-assets.heroku.com/branches/stable/heroku-windows-386.exe
    x64: https://cli-assets.heroku.com/branches/stable/heroku-windows-amd64.exe


2. You can use one of the following methods to obtain the checksum: 
    - Use powershell function 'Get-FileHash'
    - Use Chocolatey utility 'checksum.exe'

    checksum32: C5224309532F9EC594F360BD58CE9A6FF33538F44714F1697021CEEC872C60FE
    checksum64: 512BEB12B8251474C173D315F1DCB8F1ED19E4C219028818D042E7854AA853E8

   Using AU:
    
    Get-RemoteChecksum https://cli-assets.heroku.com/branches/stable/heroku-windows-amd64.exe
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';
$packageName = 'heroku-cli'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$installerFile = if ((Get-ProcessorBits 64) -and $env:chocolateyForceX86 -ne 'true') {
         Write-Host "Installing x64 bit version"; Get-Item "$toolsDir\*_x64.exe"
} else { Write-Host "Installing x32 bit version"; Get-Item "$toolsDir\*_x32.exe" }

$packageArgs = @{
  packageName   = $packageName
  fileType      = 'EXE'
  file          = $installerFile
  softwareName  = 'Heroku CLI'
  silentArgs   = '/S'
  validExitCodes= @(0)
}

Install-ChocolateyInstallPackage @packageArgs

Remove-Item ($toolsDir + '\*.' + $packageArgs.fileType)
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'heroku-cli'
$softwareName = 'Heroku CLI'
$installerType = 'EXE' 
$silentArgs = '/S'
$validExitCodes = @(0)

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName

if ($key.Count -eq 1) {
  $key | % { 
    $file = "$($_.UninstallString)"



    Uninstall-ChocolateyPackage -PackageName $packageName `
                                -FileType $installerType `
                                -SilentArgs "$silentArgs" `
                                -ValidExitCodes $validExitCodes `
                                -File "$file"
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $_.DisplayName"}
}
tools\heroku-windows-386_x32.exe
md5: FAF95B33E44917AB56D82C845DD332A0 | sha1: A66748ACCE5964122D97DBD1B69A9EDFC3E00E5A | sha256: C5224309532F9EC594F360BD58CE9A6FF33538F44714F1697021CEEC872C60FE | sha512: 732BA958BF812FAF420083B015643BF7075CEF0AF9EA0B3223AA1A5C2B91DB26FBF638A87B48DF235C157D5B04443CEE03F1B7005D62E9A9BC269103E663115C
tools\heroku-windows-amd64_x64.exe
md5: 2C184831121B2E76769C5918FEB057AC | sha1: DB52482827CD9BD3A5A265DD40DB4930F191403A | sha256: 512BEB12B8251474C173D315F1DCB8F1ED19E4C219028818D042E7854AA853E8 | sha512: 7B02191DDFEF0B96C4D0F44F3FDE0A0BCDDA4758B297DF688189A697460FCD8A5456789C0DB6AB9CA5821A68226E51A64D5F4FA4FDBB8EAC443695A1632B7823

Log in or click on link to see number of positives.

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
Heroku Command Line Interface (CLI) (Install) 9.0.0 382 Tuesday, October 29, 2024 Approved
Heroku Command Line Interface (CLI) (Install) 8.10.0 1040 Wednesday, February 21, 2024 Approved
Heroku Command Line Interface (CLI) (Install) 7.53.0.20220328 3176 Monday, March 28, 2022 Approved
Heroku Command Line Interface (CLI) (Install) 7.53.0.0 3107 Wednesday, April 28, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.52.0.0 807 Thursday, April 8, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.51.0.0 726 Thursday, March 18, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.50.0.0 622 Wednesday, March 3, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.49.1.0 430 Saturday, February 27, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.49.0.0 350 Thursday, February 25, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.48.0.0 375 Tuesday, February 23, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.13.0 407 Friday, February 19, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.12.0 684 Thursday, February 4, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.11.0 589 Saturday, January 23, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.10.0 293 Friday, January 22, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.7.0 660 Wednesday, January 6, 2021 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.6.0 676 Thursday, December 17, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.5.0 473 Friday, December 11, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.4.0 562 Wednesday, December 2, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.3.0 626 Thursday, November 19, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.2.0 520 Thursday, November 12, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.1.0 335 Wednesday, November 11, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.47.0.0 692 Friday, October 30, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.46.2.0 601 Friday, October 23, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.46.1.0 433 Wednesday, October 21, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.46.0.0 546 Wednesday, October 14, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.45.0.0 568 Thursday, October 8, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.44.0.0 532 Friday, October 2, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.43.3.0 390 Thursday, October 1, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.43.2.0 553 Wednesday, September 23, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.43.1.0 423 Tuesday, September 22, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.43.0.0 491 Wednesday, September 16, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.12.0 831 Thursday, August 27, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.11.0 388 Wednesday, August 26, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.8.0 540 Wednesday, August 19, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.6.0 743 Friday, July 31, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.5.0 627 Tuesday, July 21, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.4.0 597 Tuesday, July 14, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.3.0 441 Friday, July 10, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.2.0 568 Wednesday, July 1, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.1.0 861 Monday, June 8, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.42.0.0 380 Thursday, June 4, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.41.1.0 765 Friday, May 15, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.41.0.0 441 Tuesday, May 12, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.39.5.0 718 Thursday, April 23, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.39.3.0 556 Thursday, April 16, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.39.2.0 676 Thursday, April 2, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.39.1.0 716 Friday, March 20, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.39.0.0 628 Tuesday, March 3, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.38.2.0 617 Friday, February 21, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.38.1.0 611 Tuesday, February 11, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.38.0.0 486 Friday, February 7, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.37.0.0 550 Saturday, January 25, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.36.3.0 405 Wednesday, January 22, 2020 Approved
Heroku Command Line Interface (CLI) (Install) 7.35.1.0 765 Friday, December 20, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.35.0.0 962 Friday, November 8, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.34.2.0 414 Tuesday, November 5, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.33.3.0 738 Thursday, October 10, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.33.1.0 471 Friday, October 4, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.31.2.0 491 Tuesday, October 1, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.31.0.0 370 Monday, September 30, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.30.1.0 482 Wednesday, September 25, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.30.0.0 470 Tuesday, September 17, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.29.0.0 731 Thursday, August 22, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.27.1.0 673 Wednesday, July 31, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.26.2.0 767 Friday, June 28, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.26.1.0 380 Thursday, June 27, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.25.0.0 676 Tuesday, June 4, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.24.4.0 552 Thursday, May 23, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.24.3.0 595 Wednesday, May 8, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.24.1.0 529 Saturday, April 27, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.10.0 517 Saturday, April 20, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.9.0 543 Friday, April 5, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.7.0 640 Friday, March 15, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.5.0 403 Thursday, March 14, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.4.0 523 Wednesday, March 6, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.3.0 316 Tuesday, March 5, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.2.0 460 Friday, March 1, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.1.0 346 Wednesday, February 27, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.22.0.0 471 Friday, February 22, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.21.0.0 561 Thursday, February 14, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.20.1.0 442 Saturday, February 9, 2019 Approved
Heroku Command Line Interface (CLI) (Install) 7.19.4.0 892 Thursday, December 20, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.19.3.0 539 Wednesday, December 5, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.18.10.0 464 Tuesday, November 27, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.18.9.0 485 Wednesday, November 21, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.18.8.0 461 Thursday, November 15, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.18.5.0 480 Thursday, November 8, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.18.4.0 478 Saturday, November 3, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.18.3.0 572 Friday, October 19, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.18.2.0 399 Thursday, October 18, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.17.2.0 362 Wednesday, October 17, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.17.0.0 402 Tuesday, October 16, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.16.8.0 416 Friday, October 12, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.16.6.0 468 Monday, October 8, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.16.5.0 449 Friday, October 5, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.16.4.0 382 Thursday, October 4, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.16.1.0 321 Wednesday, October 3, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.16.0.0 619 Monday, September 17, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.15.2.0 427 Thursday, September 13, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.14.4.0 432 Monday, September 10, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.14.3.0 611 Friday, September 7, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.14.1.0 525 Friday, August 31, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.12.6.0 299 Thursday, August 30, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.12.3.0 455 Tuesday, August 28, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.12.2.0 368 Monday, August 27, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.12.1.0 397 Friday, August 24, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.11.0.0 375 Thursday, August 23, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.9.4.0 270 Wednesday, August 22, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.9.3.0 374 Monday, August 20, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.7.10.0 441 Wednesday, August 15, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.7.8.0 612 Tuesday, July 31, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.7.7.0 495 Friday, July 27, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.7.6.0 355 Thursday, July 26, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.7.4.0 484 Friday, July 20, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.7.3.0 361 Thursday, July 19, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.7.1.0 440 Wednesday, July 18, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.6.1.0 464 Tuesday, July 17, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.6.0.0 418 Friday, July 13, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.5.11.0 436 Friday, July 6, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.5.10.0 407 Wednesday, July 4, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.5.9.0 365 Tuesday, July 3, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.5.7.0 423 Monday, July 2, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.5.5.0 429 Friday, June 29, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.5.1.0 362 Wednesday, June 27, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.4.11.0 414 Thursday, June 21, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.4.1.0 403 Wednesday, June 20, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.100.0 409 Tuesday, June 19, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.98.0 402 Monday, June 18, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.95.0 370 Friday, June 15, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.93.0 585 Wednesday, June 13, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.88.0 470 Monday, June 11, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.86.0 514 Saturday, June 2, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.84.0 339 Friday, June 1, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.65.0 438 Wednesday, May 30, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.60.0 413 Monday, May 28, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.58.0 395 Friday, May 25, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.52.0 381 Wednesday, May 23, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.47.0 471 Friday, May 18, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.45.0 426 Wednesday, May 16, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.42.0 411 Monday, May 14, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.41.0 473 Sunday, May 13, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.38.0 407 Friday, May 11, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.37.0 397 Friday, May 11, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.35.0 390 Wednesday, May 9, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.26.0 426 Monday, May 7, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.25.0 463 Friday, May 4, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.22.0 422 Wednesday, May 2, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.17.0 399 Monday, April 30, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.15.0 432 Friday, April 27, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.12.0 374 Wednesday, April 25, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 7.0.2.0 519 Monday, April 23, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.16.0 432 Friday, April 20, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.15.0 384 Wednesday, April 18, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.13.0 389 Tuesday, April 17, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.12.0 563 Wednesday, April 11, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.8.0 476 Monday, April 9, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.7.0 474 Friday, April 6, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.6.0 392 Thursday, April 5, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.5.0 529 Wednesday, April 4, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.3.0 505 Wednesday, March 28, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.16.0.0 373 Tuesday, March 27, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.39.0 497 Monday, March 26, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.37.0 474 Friday, March 23, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.35.0 481 Monday, March 19, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.32.0 404 Friday, March 16, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.31.0 494 Thursday, March 8, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.30.0 463 Wednesday, March 7, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.28.0 525 Friday, March 2, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.26.0 611 Friday, February 16, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.25.0 447 Wednesday, February 14, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.24.0 448 Friday, February 9, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.22.0 470 Friday, February 2, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.19.0 367 Wednesday, January 31, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.18.0 478 Wednesday, January 24, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.17.0 578 Friday, January 19, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.13.0 488 Monday, January 8, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.6.0 394 Friday, January 5, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.5.0 380 Thursday, January 4, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.15.2.0 406 Wednesday, January 3, 2018 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.44.0 468 Sunday, December 31, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.43.0 507 Wednesday, December 20, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.42.0 546 Friday, December 15, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.41.0 497 Wednesday, December 13, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.39.0 566 Monday, November 27, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.38.0 491 Wednesday, November 22, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.36.0 686 Saturday, October 21, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.35.0 523 Tuesday, October 17, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.34.0 668 Thursday, October 5, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.33.0 492 Thursday, October 5, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.31.0 421 Wednesday, October 4, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.30.0 600 Thursday, September 28, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.27.0 561 Tuesday, September 26, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.25.0 547 Thursday, September 21, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.14.24.0 492 Tuesday, September 19, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.13.5 866 Monday, July 31, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 6.6.7 1209 Friday, June 2, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.10.2 493 Thursday, June 1, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.10.0 539 Wednesday, May 31, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.10 589 Friday, May 26, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.9 540 Tuesday, May 23, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.8 665 Saturday, May 20, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.7 565 Friday, May 19, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.6 579 Thursday, May 18, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.5 551 Tuesday, May 16, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.4 536 Saturday, May 13, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.3 613 Friday, May 12, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.2 559 Wednesday, May 10, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.1 648 Friday, May 5, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.9.0 629 Tuesday, May 2, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.8.11 512 Thursday, April 27, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.8.8 493 Wednesday, April 26, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.8.7 648 Saturday, April 22, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.8.6 777 Wednesday, April 12, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.8.4 533 Tuesday, April 11, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.8.1 550 Friday, April 7, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.8.0 598 Wednesday, April 5, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.16 539 Tuesday, April 4, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.15 607 Wednesday, March 29, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.12 472 Tuesday, March 28, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.10 590 Friday, March 24, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.8 543 Thursday, March 23, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.7 538 Wednesday, March 22, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.5 488 Tuesday, March 21, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.3 511 Saturday, March 18, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.7.0 513 Wednesday, March 15, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.32 538 Saturday, March 11, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.31 614 Thursday, March 9, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.29 627 Saturday, March 4, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.28 533 Tuesday, February 28, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.27 510 Saturday, February 25, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.26 505 Friday, February 24, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.25 510 Thursday, February 23, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.23 532 Wednesday, February 22, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.22 534 Thursday, February 16, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.20 526 Tuesday, February 14, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.18 513 Monday, February 6, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.17 462 Monday, February 6, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.16 554 Saturday, February 4, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.14 659 Wednesday, January 25, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.12 602 Thursday, January 12, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.11 552 Saturday, January 7, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.10 480 Sunday, January 1, 2017 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.8 546 Wednesday, December 21, 2016 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.7 440 Tuesday, December 20, 2016 Approved
Heroku Command Line Interface (CLI) (Install) 5.6.6 471 Saturday, December 17, 2016 Approved
Heroku Command Line Interface (CLI) (Install) 3.43.16 447 Tuesday, December 13, 2016 Approved
Heroku Command Line Interface (CLI) (Install) 3.43.15 510 Wednesday, December 7, 2016 Approved
Heroku Command Line Interface (CLI) (Install) 3.43.12.20161108 516 Tuesday, November 8, 2016 Approved
Heroku Command Line Interface (CLI) (Install) 3.43.12 466 Monday, November 7, 2016 Approved

    • git (≥ 2.8.1)
Discussion for the Heroku Command Line Interface (CLI) (Install) Package

Ground Rules:

  • This discussion is only about Heroku Command Line Interface (CLI) (Install) and the Heroku Command Line Interface (CLI) (Install) 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 Heroku Command Line Interface (CLI) (Install), 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.
comments powered by Disqus