Downloads:
289
Downloads of v 2024.6.1:
32
Last Update:
12 Oct 2024
Package Maintainer(s):
Software Author(s):
- Jeff Dickey
Tags:
nodejs cli golang sdk oss plugin-manager tools lua powershell asdf cmd version-manager development-tools foss dev-tools env-vars task task-runnermise-en-place
This is not the latest version of mise-en-place available.
- 1
- 2
- 3
2024.6.1 | Updated: 12 Oct 2024
Downloads:
289
Downloads of v 2024.6.1:
32
Maintainer(s):
Software Author(s):
- Jeff Dickey
mise-en-place 2024.6.1
This is not the latest version of mise-en-place available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Jeff Dickey. The inclusion of Jeff Dickey trademark(s), if any, upon this webpage is solely to identify Jeff Dickey 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 mise-en-place, run the following command from the command line or from PowerShell:
To upgrade mise-en-place, run the following command from the command line or from PowerShell:
To uninstall mise-en-place, 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 mise --internalize --version=2024.6.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 mise -y --source="'INTERNAL REPO URL'" --version="'2024.6.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 mise -y --source="'INTERNAL REPO URL'" --version="'2024.6.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 mise
win_chocolatey:
name: mise
version: '2024.6.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'mise' do
action :install
source 'INTERNAL REPO URL'
version '2024.6.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller mise
{
Name = "mise"
Version = "2024.6.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'mise':
ensure => '2024.6.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 as a trusted package on 12 Oct 2024.
What is it?
- Like asdf (or nvm or pyenv but for any language) it manages dev tools like node, python, cmake, terraform, and hundreds more.
- Like direnv it manages environment variables for different project directories.
- Like make it manages tasks used to build and test projects.
30 Second Demo
The following shows using mise to install different versions
of node.
Note that calling which node
gives us a real path to node, not a shim.
Quickstart
Install mise (other methods here):
$ curl https://mise.run | sh
$ ~/.local/bin/mise --version
mise 2024.8.5
or install a specific a version:
$ curl https://mise.run | MISE_VERSION=v2024.5.16 sh
$ ~/.local/bin/mise --version
mise 2024.8.5
Hook mise into your shell (pick the right one for your shell):
# note this assumes mise is located at ~/.local/bin/mise
# which is what https://mise.run does by default
echo 'eval "$(~/.local/bin/mise activate bash)"' >> ~/.bashrc
echo 'eval "$(~/.local/bin/mise activate zsh)"' >> ~/.zshrc
echo '~/.local/bin/mise activate fish | source' >> ~/.config/fish/config.fish
Install a runtime and set it as the global default:
$ mise use --global node@20
$ node -v
v20.0.0
From: https://github.com/jdx/mise/blob/v2024.6.1/LICENSE
LICENSE
Copyright (c) 2024 Jeff Dickey
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 https://github.com/jdx/mise/releases/tag/v2024.6.1, and download from there.
x86_64: https://github.com/jdx/mise/releases/download/v2024.6.1/mise-v2024.6.1-win-x64.zip
arm64: https://github.com/jdx/mise/releases/download/v2024.6.1/mise-v2024.6.1-win-arm64.zip
to download the ZIP archive and extract the executables. You may wish to rename one of the files.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum-x86_64: e8ccbad121cd810797408bcd012fe058f45595eb5c63e162829ae521da2cef1140461a3bdb587157bc307a4bce38cc7459aaacebbab9e1da62f1df19644a8fd3
checksum-arm64: a7ef448ce4a26f493cce8106aa7488a0cb2f9bc4cf4159a477ba5af1b87dc1326480797c826a8b8ea3feaa3aa865c3482c057090bcdf1eefb9db9de0786c1b2f
File 'LICENSE.txt' obtained from:
https://github.com/jdx/mise/blob/v2024.6.1/LICENSE
md5: 7187C7B1EBFDE0B6B011887C15F83C9B | sha1: 3D52FDA9B5FE0EE1C851BDD30A625B3C3EE6951A | sha256: BFB9A17BD83D1E76788D7253BE1516CD392C2A89F1F34FF5762DA8E1DCDFC0F6 | sha512: A7EF448CE4A26F493CCE8106AA7488A0CB2F9BC4CF4159A477BA5AF1B87DC1326480797C826A8B8EA3FEAA3AA865C3482C057090BCDF1EEFB9DB9DE0786C1B2F
md5: A44F799E4C34C32101DCAC7B3110EFD7 | sha1: 8E96F1E515EC8F146D273C5DB1CB1E092D783666 | sha256: 87319ABF8CF2FB12F3AD5572A517AC6A452709982FEFADABCA778D679158F438 | sha512: E8CCBAD121CD810797408BCD012FE058F45595EB5C63E162829AE521DA2CEF1140461A3BDB587157BC307A4BCE38CC7459AAACEBBAB9E1DA62F1DF19644A8FD3
Log in or click on link to see number of positives.
- mise.2024.6.1.nupkg (362168069b49) - ## / 69
- mise.exe (bfb9a17bd83d) - ## / 70
- mise.exe (87319abf8cf2) - ## / 73
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 |
---|---|---|---|---|
mise-en-place 2024.7.3 | 12 | Wednesday, November 20, 2024 | Approved | |
mise-en-place 2024.7.2 | 13 | Sunday, November 17, 2024 | Approved | |
mise-en-place 2024.7.1 | 14 | Thursday, November 14, 2024 | Approved | |
mise-en-place 2024.7.0 | 11 | Monday, November 11, 2024 | Approved | |
mise-en-place 2024.6.6 | 20 | Friday, November 1, 2024 | Approved | |
mise-en-place 2024.6.5 | 19 | Monday, October 28, 2024 | Approved | |
mise-en-place 2024.6.4 | 13 | Saturday, October 26, 2024 | Approved | |
mise-en-place 2024.6.3 | 20 | Friday, October 25, 2024 | Approved | |
mise-en-place 2024.6.2 | 14 | Wednesday, October 23, 2024 | Approved | |
mise-en-place 2024.6.1 | 32 | Saturday, October 12, 2024 | Approved | |
mise-en-place 2024.6.0 | 23 | Friday, September 27, 2024 | Approved | |
mise-en-place 2024.5.28 | 15 | Wednesday, September 25, 2024 | Approved | |
mise-en-place 2024.5.27 | 19 | Monday, September 23, 2024 | Approved | |
mise-en-place 2024.5.26 | 14 | Saturday, September 21, 2024 | Approved | |
mise-en-place 2024.5.24 | 13 | Friday, September 20, 2024 | Approved | |
mise-en-place 2024.5.23 | 18 | Tuesday, September 17, 2024 | Approved | |
mise-en-place 2024.5.22 | 19 | Saturday, August 10, 2024 | Approved |
Copyright © 2023 - 2024, Jeff Dickey
๐ Features
๐ Bug Fixes
๐ Documentation
๐งช Testing
๐ Other Changes
๐ฆ๏ธ Dependency Updates
- update rust crate demand to v1.2.4 by @renovate[bot] in #2246
- update rust crate zip to v2.1.2 by @renovate[bot] in #2247
New Contributors
-
- vcredist140 (โฅ 14.20.27508.1)
Ground Rules:
- This discussion is only about mise-en-place and the mise-en-place 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 mise-en-place, 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.