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:

602,040

Downloads of v 1.21.1:

10,931

Last Update:

17 Nov 2018

Package Maintainer(s):

Software Author(s):

  • JFrog Ltd

Tags:

jfrog cli admin

JFrog CLI

This is not the latest version of JFrog CLI available.

  • 1
  • 2
  • 3

1.21.1 | Updated: 17 Nov 2018

Downloads:

602,040

Downloads of v 1.21.1:

10,931

Maintainer(s):

Software Author(s):

  • JFrog Ltd

Tags:

jfrog cli admin

JFrog CLI 1.21.1

This is not the latest version of JFrog CLI available.

  • 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 JFrog CLI, run the following command from the command line or from PowerShell:

>

To upgrade JFrog CLI, run the following command from the command line or from PowerShell:

>

To uninstall JFrog CLI, 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 jfrog-cli -y --source="'INTERNAL REPO URL'" --version="'1.21.1'" [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 jfrog-cli -y --source="'INTERNAL REPO URL'" --version="'1.21.1'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install jfrog-cli
  win_chocolatey:
    name: jfrog-cli
    version: '1.21.1'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'jfrog-cli' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.21.1'
end

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


cChocoPackageInstaller jfrog-cli
{
    Name     = "jfrog-cli"
    Version  = "1.21.1"
    Source   = "INTERNAL REPO URL"
}

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


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

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 17 Nov 2018.

Description

JFrog CLI is a compact and smart client that provides a simple interface that automates access to JFrog products simplifying your automation scripts and making them more readable and easier to maintain. JFrog CLI works with JFrog Artifactory, JFrog Mission Control, JFrog Bintray and JFrog Xray (through their respective REST APIs) making your scripts more efficient and reliable in several ways.


tools\chocolateyinstall.ps1
#JFrog CLI is completely contained within an .exe that is provided by the team at JFrog.
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
Get-ChocolateyWebFile `
    -PackageName 'JFrog CLI' `
    -FileFullPath "$env:ProgramData\JFrog\jfrog.exe" `
    -Url 'https://bintray.com/jfrog/jfrog-cli-go/download_file?file_path=1.21.1%2Fjfrog-cli-windows-amd64%2Fjfrog.exe' `
    -Checksum '33DB1F822AD1832C539ADA7796BDE663D9361C06AA225E0849641530E3BB7D8D1A79DA051B7F77F17DBBBA89DF9B7FF3CCEC15EA3DCE823FC74E768E9EBF7A9B' `
    -ChecksumType 'sha512' `
    -ForceDownload
    
Install-ChocolateyPath -PathToInstall "$env:ProgramData\JFrog\" -PathType 'Machine'
Update-SessionEnvironment

Write-Warning ('jfrog added to PATH. It might be required to restart your session in order to use new the environment variable.')
tools\chocolateyuninstall.ps1
$jfrogDir = "$env:ProgramData\Jfrog"
if(Test-Path -Path "$jfrogDir\jfrog.exe" -ErrorAction SilentlyContinue)
{
    Remove-Item -Path $jfrogDir -Force -Recurse > $null
}
else
{
    Write-Warning ("Cannot locate jfrog.exe at $jFrogDir.")
}

$jfrogDir = $jfrogDir -replace '\\','\\' #this formats the path to work with -replace
$path     = "Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"
$oldPath  = (Get-ItemProperty -Path $path -Name PATH).Path
if($oldPath | Select-String -Pattern 'jfrog')
{
    $newPath  = $oldPath -replace ";$jfrogDir\\",";"
    Set-ItemProperty -Path $path -Name PATH –Value $newPath

    &"C:\ProgramData\Chocolatey\bin\RefreshEnv.cmd"
}
else
{
    Write-Warning ('Cannot locate jfrog in PATH variable.')   
}

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
JFrog CLI V2 2.61.1 180 Thursday, July 25, 2024 Approved
JFrog CLI V2 2.61.0 348 Wednesday, July 24, 2024 Approved
JFrog CLI V2 2.60.0 45 Wednesday, July 24, 2024 Approved
JFrog CLI V2 2.59.1 4260 Thursday, June 27, 2024 Approved
JFrog CLI V2 2.59.0 574 Monday, June 24, 2024 Approved
JFrog CLI V2 2.58.2 2070 Tuesday, June 11, 2024 Approved
JFrog CLI V2 2.58.1 161 Monday, June 10, 2024 Approved
JFrog CLI V2 2.57.1 1253 Sunday, June 2, 2024 Approved
JFrog CLI V2 2.57.0 1268 Thursday, May 23, 2024 Approved
JFrog CLI V2 2.56.1 2064 Thursday, May 9, 2024 Approved
JFrog CLI V2 2.56.0 3264 Wednesday, April 17, 2024 Approved
JFrog CLI V2 2.55.0 2720 Thursday, March 28, 2024 Approved
JFrog CLI V2 2.54.0 1487 Tuesday, March 19, 2024 Approved
JFrog CLI V2 2.53.2 2482 Tuesday, March 5, 2024 Approved
JFrog CLI V2 2.53.1 2155 Wednesday, February 21, 2024 Approved
JFrog CLI V2 2.52.10 41650 Tuesday, January 23, 2024 Approved
JFrog CLI V2 2.52.9 2517 Sunday, January 7, 2024 Approved
JFrog CLI V2 2.52.8 1489 Wednesday, December 27, 2023 Approved
JFrog CLI V2 2.52.7 219 Monday, December 25, 2023 Approved
JFrog CLI V2 2.52.6 456 Thursday, December 21, 2023 Approved
JFrog CLI V2 2.52.5 334 Tuesday, December 19, 2023 Approved
JFrog CLI V2 2.52.4 30 Tuesday, December 19, 2023 Approved
JFrog CLI V2 2.52.3 484 Friday, December 15, 2023 Approved
JFrog CLI V2 2.52.2 1072 Monday, December 11, 2023 Approved
JFrog CLI V2 2.52.1 1222 Tuesday, December 5, 2023 Approved
JFrog CLI V2 2.52.0 298 Monday, December 4, 2023 Approved
JFrog CLI V2 2.51.1 3532 Thursday, November 9, 2023 Approved
JFrog CLI V2 2.51.0 326 Wednesday, November 8, 2023 Approved
JFrog CLI V2 2.50.4 2504 Monday, October 23, 2023 Approved
JFrog CLI V2 2.50.2 754 Wednesday, October 18, 2023 Approved
JFrog CLI V2 2.50.1 1277 Wednesday, October 11, 2023 Approved
JFrog CLI V2 2.50.0 919 Thursday, October 5, 2023 Approved
JFrog CLI V2 2.49.2 582 Thursday, October 5, 2023 Approved
JFrog CLI V2 2.49.1 138 Thursday, October 5, 2023 Approved
JFrog CLI V2 2.49.0 142 Wednesday, October 4, 2023 Approved
JFrog CLI V2 2.48.0 2531 Thursday, September 14, 2023 Approved
JFrog CLI V2 2.47.0 331 Wednesday, September 13, 2023 Approved
JFrog CLI V2 2.46.3 444 Monday, September 11, 2023 Approved
JFrog CLI V2 2.46.2 2458 Friday, August 25, 2023 Approved
JFrog CLI V2 2.46.1 175 Thursday, August 24, 2023 Approved
JFrog CLI V2 2.46.0 169 Wednesday, August 23, 2023 Approved
JFrog CLI V2 2.44.1 18100 Monday, July 31, 2023 Approved
JFrog CLI V2 2.44.0 2663 Sunday, July 23, 2023 Approved
JFrog CLI V2 2.43.1 3725 Wednesday, July 12, 2023 Approved
JFrog CLI V2 2.42.1 2824 Tuesday, July 4, 2023 Approved
JFrog CLI V2 2.41.1 1454 Wednesday, June 28, 2023 Approved
JFrog CLI V2 2.41.0 407 Tuesday, June 27, 2023 Approved
JFrog CLI V2 2.40.0 4916 Saturday, June 10, 2023 Approved
JFrog CLI V2 2.39.1 1970 Sunday, June 4, 2023 Approved
JFrog CLI V2 2.39.0 833 Thursday, June 1, 2023 Approved
JFrog CLI V2 2.38.5 462 Wednesday, May 31, 2023 Approved
JFrog CLI V2 2.38.4 246 Wednesday, May 31, 2023 Approved
JFrog CLI V2 2.38.3 379 Sunday, May 28, 2023 Approved
JFrog CLI V2 2.38.2 385 Wednesday, May 24, 2023 Approved
JFrog CLI V2 2.38.1 233 Tuesday, May 23, 2023 Approved
JFrog CLI V2 2.38.0 125 Tuesday, May 23, 2023 Approved
JFrog CLI V2 2.37.3 563 Wednesday, May 17, 2023 Approved
JFrog CLI V2 2.37.1 836 Tuesday, May 9, 2023 Approved
JFrog CLI V2 2.37.0 755 Wednesday, May 3, 2023 Approved
JFrog CLI V2 2.36.0 2644 Thursday, March 30, 2023 Approved
JFrog CLI V2 2.35.0 2037 Thursday, March 16, 2023 Approved
JFrog CLI V2 2.34.6 2668 Thursday, March 2, 2023 Approved
JFrog CLI V2 2.34.5 768 Monday, February 27, 2023 Approved
JFrog CLI V2 2.34.4 199 Sunday, February 26, 2023 Approved
JFrog CLI V2 2.34.3 874 Wednesday, February 22, 2023 Approved
JFrog CLI V2 2.34.2 1128 Thursday, February 16, 2023 Approved
JFrog CLI V2 2.34.0 3721 Thursday, January 26, 2023 Approved
JFrog CLI V2 2.33.0 1007 Sunday, January 22, 2023 Approved
JFrog CLI V2 2.32.0 3523 Tuesday, January 3, 2023 Approved
JFrog CLI V2 2.31.0 2920 Thursday, December 15, 2022 Approved
JFrog CLI V2 2.29.2 8771 Tuesday, November 8, 2022 Approved
JFrog CLI V2 2.29.0 1299 Thursday, November 3, 2022 Approved
JFrog CLI V2 2.28.2 2268 Thursday, October 27, 2022 Approved
JFrog CLI V2 2.28.1 1650 Friday, October 21, 2022 Approved
JFrog CLI V2 2.28.0 258 Wednesday, October 19, 2022 Approved
JFrog CLI V2 2.27.1 4898 Monday, October 3, 2022 Approved
JFrog CLI V2 2.27.0 364 Sunday, October 2, 2022 Approved
JFrog CLI V2 2.26.2 1493 Tuesday, September 27, 2022 Approved
JFrog CLI V2 2.26.1 2220 Monday, September 19, 2022 Approved
JFrog CLI V2 2.26.0 286 Sunday, September 18, 2022 Approved
JFrog CLI V2 2.25.5 1571 Tuesday, September 13, 2022 Approved
JFrog CLI V2 2.25.4 412 Monday, September 12, 2022 Approved
JFrog CLI V2 2.25.3 1801 Monday, September 5, 2022 Approved
JFrog CLI V2 2.25.2 1683 Tuesday, August 30, 2022 Approved
JFrog CLI V2 2.25.1 88 Tuesday, August 30, 2022 Approved
JFrog CLI V2 2.25.0 2616 Sunday, August 21, 2022 Approved
JFrog CLI V2 2.24.3 1308 Tuesday, August 16, 2022 Approved
JFrog CLI V2 2.24.2 1825 Tuesday, August 9, 2022 Approved
JFrog CLI V2 2.24.1 292 Monday, August 8, 2022 Approved
JFrog CLI V2 2.22.0 3123 Wednesday, July 27, 2022 Approved
JFrog CLI V2 2.21.5 712 Monday, July 25, 2022 Approved
JFrog CLI V2 2.21.4 1472 Tuesday, July 19, 2022 Approved
JFrog CLI V2 2.21.3 598 Sunday, July 17, 2022 Approved
JFrog CLI V2 2.21.2 645 Thursday, July 14, 2022 Approved
JFrog CLI V2 2.21.1 514 Wednesday, July 13, 2022 Approved
JFrog CLI V2 2.21.0 1430 Thursday, July 7, 2022 Approved
JFrog CLI V2 2.20.0 1100 Sunday, July 3, 2022 Approved
JFrog CLI V2 2.18.2 7520 Monday, May 30, 2022 Approved
JFrog CLI V2 2.17.0 1969 Sunday, May 22, 2022 Approved
JFrog CLI V2 2.16.4 2936 Tuesday, May 10, 2022 Approved
JFrog CLI V2 2.16.3 579 Sunday, May 8, 2022 Approved
JFrog CLI V2 2.16.2 2783 Thursday, April 28, 2022 Approved
JFrog CLI V2 2.16.1 1713 Thursday, April 21, 2022 Approved
JFrog CLI V2 2.15.1 2417 Tuesday, April 12, 2022 Approved
JFrog CLI V2 2.15.0 4951 Thursday, March 31, 2022 Approved
JFrog CLI V2 2.14.2 1213 Sunday, March 27, 2022 Approved
JFrog CLI V2 2.14.1 761 Thursday, March 24, 2022 Approved
JFrog CLI V2 2.14.0 1515 Friday, March 18, 2022 Approved
JFrog CLI V2 2.13.0 5953 Thursday, February 24, 2022 Approved
JFrog CLI V2 2.12.1 3675 Tuesday, February 8, 2022 Approved
JFrog CLI V2 2.12.0 1900 Sunday, January 30, 2022 Approved
JFrog CLI V2 2.11.1 999 Monday, January 24, 2022 Approved
JFrog CLI V2 2.11.0 1300 Thursday, January 13, 2022 Approved
JFrog CLI V2 2.10.1 997 Tuesday, January 4, 2022 Approved
JFrog CLI V2 2.10.0 280 Friday, December 31, 2021 Approved
JFrog CLI V2 2.8.3 1489 Monday, December 6, 2021 Approved
JFrog CLI V2 2.8.1 275 Thursday, December 2, 2021 Approved
JFrog CLI V2 2.8.0 94 Tuesday, November 30, 2021 Approved
JFrog CLI V2 2.7.0 278 Monday, November 29, 2021 Approved
JFrog CLI V2 2.6.2 12847 Thursday, November 25, 2021 Approved
JFrog CLI V2 2.6.1 376 Monday, November 22, 2021 Approved
JFrog CLI V2 2.6.0 228 Sunday, November 21, 2021 Approved
JFrog CLI V2 2.5.1 123941 Tuesday, November 9, 2021 Approved
JFrog CLI V2 2.5.0 18923 Saturday, October 23, 2021 Approved
JFrog CLI 2.4.1 4746 Sunday, October 10, 2021 Approved
JFrog CLI 1.53.1 3243 Monday, January 31, 2022 Approved
JFrog CLI 1.53.0 5043 Tuesday, January 18, 2022 Approved
JFrog CLI 1.52.0 38140 Sunday, October 10, 2021 Approved
JFrog CLI 1.51.1 15827 Saturday, August 28, 2021 Approved
JFrog CLI 1.51.0 4466 Monday, August 9, 2021 Approved
JFrog CLI 1.50.2 6094 Wednesday, July 14, 2021 Approved
JFrog CLI 1.50.1 415 Wednesday, July 14, 2021 Approved
JFrog CLI 1.50.0 5578 Wednesday, June 23, 2021 Approved
JFrog CLI 1.49.0 1247 Thursday, June 17, 2021 Approved
JFrog CLI 1.48.1 4135 Friday, May 28, 2021 Approved
JFrog CLI 1.48.0 1420 Sunday, May 23, 2021 Approved
JFrog CLI 1.47.3 1678 Saturday, May 15, 2021 Approved
JFrog CLI 1.47.2 1960 Wednesday, May 5, 2021 Approved
JFrog CLI 1.47.1 1022 Thursday, April 29, 2021 Approved
JFrog CLI 1.47.0 325 Wednesday, April 28, 2021 Approved
JFrog CLI 1.46.4 1854 Monday, April 19, 2021 Approved
JFrog CLI 1.46.3 343 Friday, April 16, 2021 Approved
JFrog CLI 1.46.2 401 Thursday, April 15, 2021 Approved
JFrog CLI 1.46.1 2067 Monday, April 5, 2021 Approved
JFrog CLI 1.46.0 141 Sunday, April 4, 2021 Approved
JFrog CLI 1.45.2 3183 Thursday, March 18, 2021 Approved
JFrog CLI 1.45.1 1752 Wednesday, March 10, 2021 Approved
JFrog CLI 1.45.0 390 Tuesday, March 9, 2021 Approved
JFrog CLI 1.44.0 6594 Sunday, January 31, 2021 Approved
JFrog CLI 1.43.2 3815 Wednesday, January 6, 2021 Approved
JFrog CLI 1.43.1 849 Thursday, December 31, 2020 Approved
JFrog CLI 1.43.0 222 Wednesday, December 30, 2020 Approved
JFrog CLI 1.42.3 8001 Friday, December 18, 2020 Approved
JFrog CLI 1.42.2 203 Thursday, December 17, 2020 Approved
JFrog CLI 1.42.1 317 Wednesday, December 16, 2020 Approved
JFrog CLI 1.42.0 250 Tuesday, December 15, 2020 Approved
JFrog CLI 1.41.2 3179 Wednesday, November 25, 2020 Approved
JFrog CLI 1.41.1 1471 Friday, November 13, 2020 Approved
JFrog CLI 1.41.0 162 Thursday, November 12, 2020 Approved
JFrog CLI 1.40.1 1776 Monday, November 2, 2020 Approved
JFrog CLI 1.40.0 1080 Monday, October 26, 2020 Approved
JFrog CLI 1.39.7 2630 Tuesday, October 13, 2020 Approved
JFrog CLI 1.39.6 200 Tuesday, October 13, 2020 Approved
JFrog CLI 1.39.5 1586 Wednesday, September 23, 2020 Approved
JFrog CLI 1.39.4 1432 Thursday, September 10, 2020 Approved
JFrog CLI 1.39.3 786 Thursday, September 3, 2020 Approved
JFrog CLI 1.39.2 816 Saturday, August 29, 2020 Approved
JFrog CLI 1.39.1 489 Monday, August 24, 2020 Approved
JFrog CLI 1.39.0 584 Monday, August 17, 2020 Approved
JFrog CLI 1.38.4 618 Monday, August 10, 2020 Approved
JFrog CLI 1.38.3 330 Wednesday, August 5, 2020 Approved
JFrog CLI 1.38.2 1134 Monday, July 20, 2020 Approved
JFrog CLI 1.38.1 1191 Sunday, July 19, 2020 Approved
JFrog CLI 1.38.0 1180 Wednesday, July 1, 2020 Approved
JFrog CLI 1.37.1 787 Thursday, June 18, 2020 Approved
JFrog CLI 1.37.0 625 Tuesday, June 9, 2020 Approved
JFrog CLI 1.36.0 1336 Monday, May 25, 2020 Approved
JFrog CLI 1.35.5 608 Thursday, May 14, 2020 Approved
JFrog CLI 1.35.4 299 Wednesday, May 13, 2020 Approved
JFrog CLI 1.35.3 2223 Monday, March 30, 2020 Approved
JFrog CLI 1.35.2 274 Sunday, March 29, 2020 Approved
JFrog CLI 1.35.1 785 Wednesday, March 18, 2020 Approved
JFrog CLI 1.35.0 119 Wednesday, March 18, 2020 Approved
JFrog CLI 1.34.1 670 Thursday, March 5, 2020 Approved
JFrog CLI 1.34.0 1619 Saturday, February 29, 2020 Approved
JFrog CLI 1.33.2 1519 Monday, January 27, 2020 Approved
JFrog CLI 1.33.1 410 Sunday, January 19, 2020 Approved
JFrog CLI 1.32.4 8448 Tuesday, December 24, 2019 Approved
JFrog CLI 1.32.3 194 Friday, December 20, 2019 Approved
JFrog CLI 1.32.2 343 Monday, December 16, 2019 Approved
JFrog CLI 1.31.2 912 Wednesday, November 27, 2019 Approved
JFrog CLI 1.31.0 1253 Wednesday, November 27, 2019 Approved
JFrog CLI 1.30.4 1212 Tuesday, November 12, 2019 Approved
JFrog CLI 1.30.3 400 Thursday, November 7, 2019 Approved
JFrog CLI 1.30.2 372 Sunday, November 3, 2019 Approved
JFrog CLI 1.30.1 239 Thursday, October 31, 2019 Approved
JFrog CLI 1.30.0 444 Thursday, October 24, 2019 Approved
JFrog CLI 1.29.2 858 Wednesday, October 16, 2019 Approved
JFrog CLI 1.29.1 641 Thursday, September 26, 2019 Approved
JFrog CLI 1.29.0 262 Tuesday, September 24, 2019 Approved
JFrog CLI 1.28.0 824 Sunday, September 1, 2019 Approved
JFrog CLI 1.27.0 565 Friday, August 16, 2019 Approved
JFrog CLI 1.26.3 1481 Sunday, July 28, 2019 Approved
JFrog CLI 1.26.2 631 Wednesday, July 10, 2019 Approved
JFrog CLI 1.26.1 648 Monday, June 17, 2019 Approved
JFrog CLI 1.26.0 298 Wednesday, June 12, 2019 Approved
JFrog CLI 1.25.0 1737 Thursday, April 18, 2019 Approved
JFrog CLI 1.24.3 1732 Wednesday, March 6, 2019 Approved
JFrog CLI 1.24.2 292 Sunday, March 3, 2019 Approved
JFrog CLI 1.24.1 419 Wednesday, February 20, 2019 Approved
JFrog CLI 1.24.0 177 Wednesday, February 20, 2019 Approved
JFrog CLI 1.23.2 1131 Wednesday, January 30, 2019 Approved
JFrog CLI 1.23.1 969 Wednesday, December 26, 2018 Approved
JFrog CLI 1.23.0 181 Wednesday, December 26, 2018 Approved
JFrog CLI 1.22.1 509 Sunday, December 9, 2018 Approved
JFrog CLI 1.21.1 10931 Saturday, November 17, 2018 Approved
JFrog CLI 1.21.0 194 Saturday, November 17, 2018 Approved
JFrog CLI 1.20.2 219 Saturday, November 17, 2018 Approved
JFrog CLI 1.20.1 176 Saturday, November 17, 2018 Approved
JFrog CLI 1.17.0 1643 Wednesday, July 11, 2018 Approved
JFrog CLI 1.16.2 225 Wednesday, July 11, 2018 Approved
JFrog CLI 1.16.1 280 Tuesday, July 10, 2018 Approved
JFrog CLI 1.11.2 3284 Monday, October 16, 2017 Approved
JFrog CLI 1.10.1 478 Wednesday, August 9, 2017 Approved
JFrog CLI 1.9.0 431 Saturday, July 8, 2017 Approved

This package has no dependencies.

Discussion for the JFrog CLI Package

Ground Rules:

  • This discussion is only about JFrog CLI and the JFrog 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 JFrog 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.
comments powered by Disqus