Automated Dependency Updates for mise
Categories: no-category
Renovate supports updating mise dependencies.
File Matching¶
By default, Renovate will check any files matching any of the following regular expressions:
(^|/)\.?mise\.toml$
(^|/)\.?mise/config\.toml$
For details on how to extend a manager's fileMatch
value, please follow this link.
Supported datasources¶
This manager supports extracting the following datasources: dart-version
, docker
, dotnet-version
, flutter-version
, github-releases
, github-tags
, hexpm-bob
, java-version
, node-version
, npm
, pypi
, ruby-version
.
Default config¶
{
"fileMatch": [
"(^|/)\\.?mise\\.toml$",
"(^|/)\\.?mise/config\\.toml$"
]
}
Additional Information¶
Renovate can update the mise .mise.toml
file.
Renovate's mise
manager can version these tools:
- bun (mise)
- deno (mise)
- erlang (mise)
- go (mise)
- java (mise)
- node (mise)
- python (mise)
- ruby (mise)
- act (asdf)
- actionlint (asdf)
- adr-tools (asdf)
- argocd (asdf)
- asdf-plugin-manager (asdf)
- atmos (asdf)
- awscli (asdf)
- bun (asdf)
- cargo-make (asdf)
- checkov (asdf)
- clojure (asdf)
- cookiecutter (asdf)
- cosign (asdf)
- crystal (asdf)
- dart (asdf)
- deno (asdf)
- direnv (asdf)
- dotnet-core (asdf)
- dprint (asdf)
- ecspresso (asdf)
- editorconfig-checker (asdf)
- elixir (asdf)
- elm (asdf)
- erlang (asdf)
- flutter (asdf)
- flux2 (asdf)
- gauche (asdf)
- github-cli (asdf)
- gitleaks (asdf)
- gleam (asdf)
- gohugo (asdf)
- golang (asdf)
- golangci-lint (asdf)
- gomplate (asdf)
- hadolint (asdf)
- haskell (asdf)
- helm (asdf)
- helmfile (asdf)
- hugo (asdf)
- idris (asdf)
- istioctl (asdf)
- java (asdf)
- julia (asdf)
- just (asdf)
- k3s (asdf)
- kind (asdf)
- kotlin (asdf)
- kubectl (asdf)
- kustomize (asdf)
- lua (asdf)
- markdownlint-cli2 (asdf)
- maven (asdf)
- mimirtool (asdf)
- minikube (asdf)
- nim (asdf)
- nodejs (asdf)
- ocaml (asdf)
- oci (asdf)
- opentofu (asdf)
- packer (asdf)
- perl (asdf)
- php (asdf)
- pnpm (asdf)
- poetry (asdf)
- pre-commit (asdf)
- pulumi (asdf)
- python (asdf)
- rebar (asdf)
- ruby (asdf)
- rust (asdf)
- sbt (asdf)
- scala (asdf)
- shellcheck (asdf)
- shfmt (asdf)
- sops (asdf)
- steampipe (asdf)
- terraform (asdf)
- terraform-docs (asdf)
- terragrunt (asdf)
- tflint (asdf)
- tfsec (asdf)
- trivy (asdf)
- vault (asdf)
- yamllint (asdf)
- yq (asdf)
- zig (asdf)
- maestro (asdf)
- detekt (asdf)
- ktlint (asdf)
- yamlfmt (asdf)
- tuist (asdf)
- typos (asdf)
- uv (asdf)
Renovate only updates primary versions¶
Renovate's mise
manager is designed to automatically update the first (primary) version listed for each tool in the .mise.toml
file.
Secondary or fallback versions require manual updates.
Example¶
Given a .mise.toml
entry like:
[tools]
erlang = ["23.3", "22.0"]
Renovate will update "23.3"
(the primary version) but will not touch "22.0"
(the fallback version).
Why can Renovate only update primary versions?¶
To maintain consistency and reliability, Renovate opts to only manage the first listed version.
- Fallback versions can often be older versions of a tool that are known to work and are there as a backup.
This follows the same workflow that Renovate's asdf
manager uses.
Plugin/tool support¶
Renovate uses:
to understand and manage tool versioning.
Support for new tools/plugins needs to be manually added to Renovate's logic.
Adding new tool support¶
There are 2 ways to integrate versioning for a new tool:
- Renovate's
mise
manager: ensure upstreammise
supports the tool, then add support to themise
manager in Renovate - Renovate's
asdf
manager: improve theasdf
manager in Renovate, which automatically extends support tomise
If mise
adds support for more tools via its own core plugins, you can create a PR to extend Renovate's mise
manager to add support for the new tooling.
You may be able to add support for new tooling upstream in the core plugins - create an issue and see if the community agrees whether it belongs there, or if it would be better as an asdf-
plugin.
If you are wanting to add support for an existing asdf-x
plugin to mise
, you can create a PR to extend Renovate's asdf
manager, which indirectly helps Renovate's mise
manager as well.
Open items¶
The below list of features were current when this page was generated on November 21, 2024.