Downloads:
24,467
Downloads of v 1.12.1:
23
Last Update:
20 Mar 2024
Package Maintainer(s):
Software Author(s):
- Anoop M D
Tags:
admin api development cross-platform foss- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Bruno
This is not the latest version of Bruno available.
- 1
- 2
- 3
1.12.1 | Updated: 20 Mar 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
24,467
Downloads of v 1.12.1:
23
Maintainer(s):
Software Author(s):
- Anoop M D
Bruno 1.12.1
This is not the latest version of Bruno available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Anoop M D. The inclusion of Anoop M D trademark(s), if any, upon this webpage is solely to identify Anoop M D 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 Bruno, run the following command from the command line or from PowerShell:
To upgrade Bruno, run the following command from the command line or from PowerShell:
To uninstall Bruno, 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 bruno --internalize --version=1.12.1 --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 bruno -y --source="'INTERNAL REPO URL'" --version="'1.12.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 bruno -y --source="'INTERNAL REPO URL'" --version="'1.12.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 bruno
win_chocolatey:
name: bruno
version: '1.12.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'bruno' do
action :install
source 'INTERNAL REPO URL'
version '1.12.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller bruno
{
Name = "bruno"
Version = "1.12.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'bruno':
ensure => '1.12.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.
This package was approved by moderator TheCakeIsNaOH on 23 Mar 2024.
Bruno is a new and innovative API client, aimed at revolutionizing the status quo represented by Postman and similar tools out there.
Bruno stores your collections directly in a folder on your filesystem. We use a plain text markup language, Bru, to save information about API requests.
You can use git or any version control of your choice to collaborate over your API collections.
Bruno is offline-only. There are no plans to add cloud-sync to Bruno, ever. We value your data privacy and believe it should stay on your device. Read our long-term vision here
md5: 094397CB5F48E449AA925B9ABDA90613 | sha1: 459A54FC0721708F4463E822D2F0AE4AAEBA9615 | sha256: DFA7E26FEDD047B6B328F9C7B3A1BCDDDCD0202BB4AECD2825AD99ABA231445E | sha512: 4D23ED05DD200CF9E8545121461A328E21248212C0AF14A0C3FB0626980A13BAEB1E0C91C2B83D259DC0D04ED67AD925804837F9729718E6462679C36AA38A7C
$ErrorActionPreference = 'Stop'
$packageName = $Env:ChocolateyPackageName
$softwareNamePattern = 'bruno'
[array] $key = Get-UninstallRegistryKey $softwareNamePattern
if ($key.Count -eq 1) {
$key | % {
$packageArgs = @{
packageName = $packageName
silentArgs = "/x86=0 /S"
fileType = 'EXE'
validExitCodes = @(0)
file = "$($_.UninstallString.Replace(' /x86=0', ''))" #"C:\Program Files\OpenSSH\uninstall.exe" /x86=0
}
Uninstall-ChocolateyPackage @packageArgs
}
}
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)"}
}
MIT License
Copyright (c) 2022 Anoop M D, Anusree P S and Contributors
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.
Package can be verified like this:
1. Go to
x64: https://github.com/usebruno/bruno/releases/download/v1.12.1/bruno_1.12.1_x64_win.exe
to download the installer.
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum64: DFA7E26FEDD047B6B328F9C7B3A1BCDDDCD0202BB4AECD2825AD99ABA231445E
File 'license.md' is obtained from:
https://github.com/usebruno/bruno/blob/main/license.md
Log in or click on link to see number of positives.
- bruno.1.12.1.nupkg (156bc9fa56e5) - ## / 60
- bruno_1.12.1_x64_win.exe (dfa7e26fedd0) - ## / 65
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 |
---|---|---|---|---|
Bruno 1.34.2 | 863 | Wednesday, November 6, 2024 | Approved | |
Bruno 1.34.1 | 527 | Thursday, October 31, 2024 | Approved | |
Bruno 1.34.0 | 709 | Friday, October 25, 2024 | Approved | |
Bruno 1.33.1 | 903 | Tuesday, October 15, 2024 | Approved | |
Bruno 1.33.0 | 574 | Thursday, October 10, 2024 | Approved | |
Bruno 1.32.1 | 547 | Friday, October 4, 2024 | Approved | |
Bruno 1.32.0 | 340 | Wednesday, October 2, 2024 | Approved | |
Bruno 1.31.0 | 257 | Monday, September 30, 2024 | Approved | |
Bruno 1.30.1 | 720 | Monday, September 23, 2024 | Approved | |
Bruno 1.30.0 | 157 | Sunday, September 22, 2024 | Approved | |
Bruno 1.29.1 | 285 | Thursday, September 19, 2024 | Approved | |
Bruno 1.29.0 | 207 | Wednesday, September 18, 2024 | Approved | |
Bruno 1.28.0 | 894 | Thursday, September 5, 2024 | Approved | |
Bruno 1.27.0 | 811 | Thursday, August 29, 2024 | Approved | |
Bruno 1.26.2 | 434 | Monday, August 26, 2024 | Approved | |
Bruno 1.26.1 | 340 | Friday, August 23, 2024 | Approved | |
Bruno 1.26.0 | 172 | Thursday, August 22, 2024 | Approved | |
Bruno 1.25.0 | 612 | Thursday, August 15, 2024 | Approved | |
Bruno 1.24.0 | 919 | Friday, August 9, 2024 | Approved | |
Bruno 1.23.1 | 564 | Saturday, August 3, 2024 | Approved | |
Bruno 1.23.0 | 19 | Thursday, August 1, 2024 | Approved | |
Bruno 1.22.0 | 565 | Wednesday, July 24, 2024 | Approved | |
Bruno 1.21.0 | 500 | Wednesday, July 17, 2024 | Approved | |
Bruno 1.20.4 | 504 | Thursday, July 11, 2024 | Approved | |
Bruno 1.20.2 | 17 | Monday, July 8, 2024 | Approved | |
Bruno 1.20.1 | 17 | Friday, July 5, 2024 | Approved | |
Bruno 1.20.0 | 21 | Tuesday, July 2, 2024 | Approved | |
Bruno 1.19.0 | 1005 | Wednesday, June 12, 2024 | Approved | |
Bruno 1.18.1 | 1152 | Thursday, May 30, 2024 | Approved | |
Bruno 1.18.0 | 471 | Thursday, May 23, 2024 | Approved | |
Bruno 1.17.0 | 839 | Wednesday, May 8, 2024 | Approved | |
Bruno 1.16.1 | 515 | Wednesday, May 1, 2024 | Approved | |
Bruno 1.16.0 | 21 | Tuesday, April 30, 2024 | Approved | |
Bruno 1.14.0 | 611 | Tuesday, April 23, 2024 | Approved | |
Bruno 1.13.1 | 494 | Tuesday, April 16, 2024 | Approved | |
Bruno 1.13.0 | 174 | Sunday, April 14, 2024 | Approved | |
Bruno 1.12.3 | 982 | Tuesday, March 26, 2024 | Approved | |
Bruno 1.12.2 | 326 | Friday, March 22, 2024 | Approved | |
Bruno 1.12.1 | 23 | Wednesday, March 20, 2024 | Approved | |
Bruno 1.11.0 | 502 | Wednesday, March 13, 2024 | Approved | |
Bruno 1.10.0 | 934 | Wednesday, February 28, 2024 | Approved | |
Bruno 1.9.0 | 544 | Wednesday, February 14, 2024 | Approved | |
Bruno 1.8.0 | 430 | Tuesday, February 6, 2024 | Approved | |
Bruno 1.7.1 | 165 | Wednesday, January 31, 2024 | Approved | |
Bruno 1.7.0 | 178 | Tuesday, January 30, 2024 | Approved | |
Bruno 1.6.1 | 555 | Saturday, January 6, 2024 | Approved | |
Bruno 1.6.0 | 28 | Friday, January 5, 2024 | Approved | |
Bruno 1.5.1 | 411 | Tuesday, December 19, 2023 | Approved | |
Bruno 1.5.0 | 87 | Monday, December 18, 2023 | Approved | |
Bruno 1.4.0 | 276 | Wednesday, December 6, 2023 | Approved | |
Bruno 1.3.2 | 84 | Tuesday, December 5, 2023 | Approved | |
Bruno 1.3.0 | 111 | Saturday, December 2, 2023 | Approved | |
Bruno 1.2.0 | 230 | Monday, November 20, 2023 | Approved | |
Bruno 1.1.1 | 165 | Friday, November 10, 2023 | Approved | |
Bruno 1.1.0 | 170 | Saturday, November 4, 2023 | Approved | |
Bruno 1.0.1 | 32 | Thursday, November 2, 2023 | Approved | |
Bruno 1.0.0 | 102 | Tuesday, October 31, 2023 | Approved | |
Bruno 0.27.2 | 82 | Tuesday, October 24, 2023 | Approved | |
Bruno 0.27.0 | 38 | Monday, October 23, 2023 | Approved | |
Bruno 0.26.0 | 37 | Friday, October 20, 2023 | Approved | |
Bruno 0.25.0 | 82 | Monday, October 16, 2023 | Approved | |
Bruno 0.24.0 | 64 | Friday, October 13, 2023 | Approved | |
Bruno 0.23.0 | 69 | Wednesday, October 11, 2023 | Approved |
usebruno
-
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about Bruno and the Bruno 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 Bruno, 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.