From bcd35924cf71d7a0ddd6c3f002f08021c2210d8a Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Mon, 1 Apr 2024 20:25:01 -0500 Subject: [PATCH] chore: release 2024.4.0 (#1849) --- CHANGELOG.md | 20 +++++++++++++++++++ Cargo.lock | 10 +++++----- Cargo.toml | 2 +- README.md | 2 +- default.nix | 2 +- man/man1/mise.1 | 4 ++-- packaging/rpm/mise.spec | 2 +- src/default_shorthands.rs | 42 +++++++++++++++++++++++++++++++++------ 8 files changed, 67 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a608509f2..a0c467cde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [2024.4.0](https://github.com/jdx/mise/compare/v2024.3.11..v2024.4.0) - 2024-04-02 + +### 🐛 Bug Fixes + +- **(python)** install python when pip is disabled outside virtualenv by [@GabDug](https://github.com/GabDug) in [#1847](https://github.com/jdx/mise/pull/1847) + +### 🔍 Other Changes + +- Move logic to set current directory before loading other config by [@joshbode](https://github.com/joshbode) in [#1848](https://github.com/jdx/mise/pull/1848) + +### ⚙️ Miscellaneous Tasks + +- **(release)** only save 1 build cache by [@jdx](https://github.com/jdx) in [f37f11d](https://github.com/jdx/mise/commit/f37f11dd56cb30c1df30d4a2a3df37290ce95a0b) +- **(release-plz)** rebuild release branch daily by [@jdx](https://github.com/jdx) in [3606d96](https://github.com/jdx/mise/commit/3606d9687ec205754269f7402a7f8095533627ae) + +### New Contributors + +* @GabDug made their first contribution in [#1847](https://github.com/jdx/mise/pull/1847) +* @joshbode made their first contribution in [#1848](https://github.com/jdx/mise/pull/1848) + ## [2024.3.11](https://github.com/jdx/mise/compare/v2024.3.10..v2024.3.11) - 2024-03-30 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index c25e1bb81..aae70673c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -131,9 +131,9 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.6" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c" +checksum = "86a9249d1447a85f95810c620abea82e001fe58a31713fcce614caf52499f905" dependencies = [ "flate2", "futures-core", @@ -579,9 +579,9 @@ dependencies = [ [[package]] name = "der" -version = "0.7.8" +version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" dependencies = [ "const-oid", "zeroize", @@ -1438,7 +1438,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.3.11" +version = "2024.4.0" dependencies = [ "assert_cmd", "base64 0.22.0", diff --git a/Cargo.toml b/Cargo.toml index b1588f88a..b2a20d7e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.3.11" +version = "2024.4.0" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 67b9701d5..c00ea44ca 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Install mise (other methods [here](https://mise.jdx.dev/getting-started.html)): ```sh-session $ curl https://mise.run | sh $ ~/.local/bin/mise --version -mise 2024.3.11 +mise 2024.4.0 ``` Hook mise into your shell (pick the right one for your shell): diff --git a/default.nix b/default.nix index 0b067018d..82907fcd4 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.3.11"; + version = "2024.4.0"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index bf6eaf9db..3db9870a1 100644 --- a/man/man1/mise.1 +++ b/man/man1/mise.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH mise 1 "mise 2024.3.11" +.TH mise 1 "mise 2024.4.0" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -183,6 +183,6 @@ Examples: $ mise settings Show settings in use $ mise settings set color 0 Disable color by modifying global config file .SH VERSION -v2024.3.11 +v2024.4.0 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index b35505a81..ad4fbc1a8 100644 --- a/packaging/rpm/mise.spec +++ b/packaging/rpm/mise.spec @@ -1,6 +1,6 @@ Summary: The front-end to your dev env Name: mise -Version: 2024.3.11 +Version: 2024.4.0 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/src/default_shorthands.rs b/src/default_shorthands.rs index c4cce3720..d8077319c 100644 --- a/src/default_shorthands.rs +++ b/src/default_shorthands.rs @@ -23,7 +23,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = Lazy::new(|| HashMap::from([ ("1password-cli", "https://github.com/NeoHsu/asdf-1password-cli.git"), ("R", "https://github.com/asdf-community/asdf-r.git"), - ("act", "https://github.com/grimoh/asdf-act.git"), + ("act", "https://github.com/gr1m0h/asdf-act.git"), ("action-validator", "https://github.com/mpalmer/action-validator.git"), ("actionlint", "https://github.com/crazy-matt/asdf-actionlint.git"), ("adr-tools", "https://gitlab.com/td7x/asdf/adr-tools.git"), @@ -42,6 +42,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("ansible-base", "https://github.com/amrox/asdf-pyapp.git"), ("ant", "https://github.com/jackboespflug/asdf-ant.git"), ("apko", "https://github.com/omissis/asdf-apko.git"), + ("apollo-ios-cli", "https://github.com/MacPaw/asdf-apollo-ios-cli"), ("apollo-router", "https://github.com/safx/asdf-apollo-router.git"), ("arc", "https://github.com/ORCID/asdf-arc.git"), ("argo", "https://github.com/sudermanjr/asdf-argo.git"), @@ -77,6 +78,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("batect", "https://github.com/johnlayton/asdf-batect.git"), ("bats", "https://github.com/timgluz/asdf-bats.git"), ("bazel", "https://github.com/rajatvig/asdf-bazel.git"), + ("bazelisk", "https://github.com/josephtate/asdf-bazelisk.git"), ("bbr", "https://github.com/vmware-tanzu/tanzu-plug-in-for-asdf.git"), ("bbr-s3-config-validator", "https://github.com/vmware-tanzu/tanzu-plug-in-for-asdf.git"), ("benthos", "https://github.com/benthosdev/benthos-asdf.git"), @@ -98,6 +100,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("bundler", "https://github.com/jonathanmorley/asdf-bundler.git"), ("cabal", "https://github.com/sestrella/asdf-ghcup.git"), ("caddy", "https://github.com/salasrod/asdf-caddy.git"), + ("calendarsync", "https://github.com/FeryET/asdf-calendarsync.git"), ("calicoctl", "https://github.com/TheCubicleJockey/asdf-calicoctl.git"), ("camunda-modeler", "https://github.com/barmac/asdf-camunda-modeler.git"), ("cargo-make", "https://github.com/kachick/asdf-cargo-make.git"), @@ -125,6 +128,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("clarinet", "https://github.com/alexgo-io/asdf-clarinet.git"), ("clickhouse", "https://github.com/tinybirdco/asdf-clickhouse"), ("clj-kondo", "https://github.com/rynkowsg/asdf-clj-kondo.git"), + ("cljstyle", "https://github.com/abogoyavlensky/asdf-cljstyle.git"), ("clojure", "https://github.com/asdf-community/asdf-clojure.git"), ("cloud-sql-proxy", "https://github.com/pbr0ck3r/asdf-cloud-sql-proxy.git"), ("cloudflared", "https://github.com/threkk/asdf-cloudflared"), @@ -149,6 +153,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("cookiecutter", "https://github.com/shawon-crosen/asdf-cookiecutter.git"), ("copper", "https://github.com/vladlosev/asdf-copper.git"), ("coq", "https://github.com/gingerhot/asdf-coq.git"), + ("coredns", "https://github.com/s3than/asdf-coredns.git"), ("cosign", "https://gitlab.com/wt0f/asdf-cosign.git"), ("coursier", "https://github.com/jiahuili430/asdf-coursier.git"), ("crane", "https://github.com/dmpe/asdf-crane"), @@ -162,9 +167,11 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("cue", "https://github.com/asdf-community/asdf-cue.git"), ("cyclonedx", "https://github.com/xeedio/asdf-cyclonedx.git"), ("dagger", "https://github.com/virtualstaticvoid/asdf-dagger.git"), + ("dapr", "https://github.com/asdf-community/asdf-dapr-cli.git"), ("dart", "https://github.com/PatOConnor43/asdf-dart.git"), ("dasel", "https://github.com/asdf-community/asdf-dasel.git"), ("datree", "https://github.com/lukeab/asdf-datree.git"), + ("daytona", "https://github.com/CrouchingMuppet/asdf-daytona.git"), ("dbmate", "https://github.com/juusujanar/asdf-dbmate.git"), ("deck", "https://github.com/nutellinoit/asdf-deck.git"), ("delta", "https://github.com/andweeb/asdf-delta.git"), @@ -201,6 +208,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("dust", "https://github.com/looztra/asdf-dust.git"), ("dvc", "https://github.com/fwfurtado/asdf-dvc.git"), ("dyff", "https://gitlab.com/wt0f/asdf-dyff.git"), + ("dynatrace-monaco", "https://github.com/nsaputro/asdf-monaco.git"), ("earthly", "https://github.com/YR-ZR0/asdf-earthly"), ("ecspresso", "https://github.com/kayac/asdf-ecspresso.git"), ("editorconfig-checker", "https://github.com/gabitchov/asdf-editorconfig-checker.git"), @@ -254,6 +262,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("ginkgo", "https://github.com/jimmidyson/asdf-ginkgo.git"), ("git", "https://gitlab.com/jcaigitlab/asdf-git.git"), ("git-chglog", "https://github.com/GoodwayGroup/asdf-git-chglog.git"), + ("git-cliff", "https://github.com/jylenhof/asdf-git-cliff.git"), ("gitconfig", "https://github.com/0ghny/asdf-gitconfig.git"), ("github-cli", "https://github.com/bartlomiejdanek/asdf-github-cli.git"), ("github-markdown-toc", "https://github.com/skyzyx/asdf-github-markdown-toc.git"), @@ -314,6 +323,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("helmsman", "https://github.com/luisdavim/asdf-helmsman"), ("heroku-cli", "https://github.com/treilly94/asdf-heroku-cli.git"), ("hey", "https://github.com/raimon49/asdf-hey.git"), + ("hishtory", "https://github.com/asdf-community/asdf-hishtory.git"), ("hledger", "https://github.com/airtonix/asdf-hledger.git"), ("hledger-flow", "https://github.com/airtonix/asdf-hledger-flow.git"), ("hls", "https://github.com/sestrella/asdf-ghcup.git"), @@ -345,6 +355,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("jless", "https://github.com/jc00ke/asdf-jless.git"), ("jmespath", "https://github.com/skyzyx/asdf-jmespath.git"), ("jmeter", "https://github.com/comdotlinux/asdf-jmeter"), + ("jnv", "https://github.com/raimon49/asdf-jnv.git"), ("jq", "https://github.com/mise-plugins/asdf-jq.git"), ("jqp", "https://gitlab.com/wt0f/asdf-jqp.git"), ("jreleaser", "https://github.com/joschi/asdf-jreleaser.git"), @@ -356,8 +367,10 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("k14s", "https://github.com/k14s/asdf-k14s.git"), ("k2tf", "https://github.com/carlduevel/asdf-k2tf.git"), ("k3d", "https://github.com/spencergilbert/asdf-k3d.git"), + ("k3kcli", "https://github.com/xanmanning/asdf-k3kcli.git"), + ("k3s", "https://github.com/dmpe/asdf-k3s.git"), ("k3sup", "https://github.com/cgroschupp/asdf-k3sup.git"), - ("k6", "https://github.com/grimoh/asdf-k6.git"), + ("k6", "https://github.com/gr1m0h/asdf-k6.git"), ("k9s", "https://github.com/looztra/asdf-k9s.git"), ("kafka", "https://github.com/ueisele/asdf-kafka.git"), ("kafkactl", "https://github.com/anweber/asdf-kafkactl.git"), @@ -377,6 +390,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("kops", "https://github.com/Antiarchitect/asdf-kops.git"), ("kotlin", "https://github.com/asdf-community/asdf-kotlin.git"), ("kp", "https://github.com/vmware-tanzu/tanzu-plug-in-for-asdf.git"), + ("kpack", "https://github.com/asdf-community/asdf-kpack-cli.git"), ("kpt", "https://github.com/nlamirault/asdf-kpt.git"), ("krab", "https://github.com/ohkrab/asdf-krab.git"), ("krew", "https://github.com/bjw-s/asdf-krew.git"), @@ -424,10 +438,12 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("leiningen", "https://github.com/miorimmax/asdf-lein.git"), ("levant", "https://github.com/asdf-community/asdf-hashicorp.git"), ("lfe", "https://github.com/asdf-community/asdf-lfe.git"), + ("libsql-server", "https://github.com/jonasb/asdf-libsql-server.git"), ("lima", "https://github.com/CrouchingMuppet/asdf-lima.git"), ("link", "https://github.com/asdf-community/asdf-link.git"), ("linkerd", "https://github.com/kforsthoevel/asdf-linkerd.git"), ("liqoctl", "https://github.com/pdemagny/asdf-liqoctl"), + ("liquibase", "https://github.com/saliougaye/asdf-liquibase.git"), ("litestream", "https://github.com/threkk/asdf-litestream"), ("logtalk", "https://github.com/LogtalkDotOrg/asdf-logtalk.git"), ("loki-logcli", "https://github.com/comdotlinux/asdf-loki-logcli.git"), @@ -468,6 +484,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("mkcert", "https://github.com/salasrod/asdf-mkcert.git"), ("mlton", "https://github.com/asdf-community/asdf-mlton.git"), ("mockery", "https://github.com/cabify/asdf-mockery.git"), + ("mockolo", "https://github.com/MontakOleg/asdf-mockolo"), ("monarch", "https://github.com/nyuyuyu/asdf-monarch.git"), ("mongo-tools", "https://github.com/itspngu/asdf-mongo-tools.git"), ("mongodb", "https://github.com/sylph01/asdf-mongodb.git"), @@ -498,6 +515,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("odo", "https://github.com/rm3l/asdf-odo.git"), ("okta-aws-cli", "https://github.com/bennythejudge/asdf-plugin-okta-aws-cli.git"), ("okteto", "https://github.com/BradenM/asdf-okteto"), + ("ollama", "https://github.com/virtualstaticvoid/asdf-ollama.git"), ("om", "https://github.com/vmware-tanzu/tanzu-plug-in-for-asdf.git"), ("onyx", "https://github.com/jtakakura/asdf-onyx"), ("opa", "https://github.com/tochukwuvictor/asdf-opa.git"), @@ -527,6 +545,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("pipenv", "https://github.com/mise-plugins/mise-pipenv.git"), ("pipx", "https://github.com/yozachar/asdf-pipx.git"), ("pivnet", "https://github.com/vmware-tanzu/tanzu-plug-in-for-asdf.git"), + ("pkl", "https://github.com/mise-plugins/asdf-pkl.git"), ("please", "https://github.com/asdf-community/asdf-please.git"), ("pluto", "https://github.com/FairwindsOps/asdf-pluto.git"), ("pnpm", "https://github.com/jonathanmorley/asdf-pnpm.git"), @@ -579,6 +598,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("rlwrap", "https://github.com/asdf-community/asdf-rlwrap.git"), ("rome", "https://github.com/kichiemon/asdf-rome.git"), ("rstash", "https://github.com/carlduevel/asdf-rstash.git"), + ("ruff", "https://github.com/simhem/asdf-ruff"), ("rust", "https://github.com/code-lever/asdf-rust.git"), ("rust-analyzer", "https://github.com/Xyven1/asdf-rust-analyzer"), ("rye", "https://github.com/Azuki-bar/asdf-rye"), @@ -593,11 +613,13 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("sccache", "https://github.com/emersonmx/asdf-sccache.git"), ("scenery", "https://github.com/skyzyx/asdf-scenery.git"), ("schemacrawler", "https://github.com/davidecavestro/asdf-schemacrawler.git"), + ("scie-pants", "https://github.com/robzr/asdf-scie-pants"), ("seed7", "https://github.com/susurri/asdf-seed7.git"), ("semgrep", "https://github.com/brentjanderson/asdf-semgrep.git"), ("semtag", "https://github.com/junminahn/asdf-semtag"), ("semver", "https://github.com/mathew-fleisch/asdf-semver.git"), ("sentinel", "https://github.com/asdf-community/asdf-hashicorp.git"), + ("sentry-cli", "https://github.com/MacPaw/asdf-sentry-cli"), ("serf", "https://github.com/asdf-community/asdf-hashicorp.git"), ("serverless", "https://github.com/pdemagny/asdf-serverless.git"), ("setup-envtest", "https://github.com/pmalek/mise-setup-envtest.git"), @@ -616,9 +638,9 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("soft-serve", "https://github.com/chessmango/asdf-soft-serve.git"), ("solidity", "https://github.com/diegodorado/asdf-solidity.git"), ("sonobuoy", "https://github.com/Nick-Triller/asdf-sonobuoy.git"), - ("sops", "https://github.com/feniix/asdf-sops.git"), + ("sops", "https://github.com/mise-plugins/mise-sops"), ("sopstool", "https://github.com/elementalvoid/asdf-sopstool.git"), - ("soracom", "https://github.com/grimoh/asdf-soracom.git"), + ("soracom", "https://github.com/gr1m0h/asdf-soracom.git"), ("sourcery", "https://github.com/younke/asdf-sourcery.git"), ("spacectl", "https://github.com/bodgit/asdf-spacectl.git"), ("spago", "https://github.com/jrrom/asdf-spago.git"), @@ -634,13 +656,15 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("starboard", "https://github.com/zufardhiyaulhaq/asdf-starboard.git"), ("starknet-foundry", "https://github.com/foundry-rs/asdf-starknet-foundry.git"), ("starport", "https://github.com/nikever/asdf-starport.git"), - ("starship", "https://github.com/grimoh/asdf-starship.git"), + ("starship", "https://github.com/gr1m0h/asdf-starship.git"), ("staticcheck", "https://github.com/pbr0ck3r/asdf-staticcheck.git"), ("steampipe", "https://github.com/carnei-ro/asdf-steampipe.git"), ("step", "https://github.com/log2/asdf-step.git"), ("stern", "https://github.com/looztra/asdf-stern.git"), ("stripe-cli", "https://github.com/offbyone/asdf-stripe.git"), ("stylua", "https://github.com/jc00ke/asdf-stylua.git"), + ("sui", "https://github.com/placeholder-soft/asdf-sui.git"), + ("sver", "https://github.com/robzr/asdf-sver"), ("svu", "https://github.com/asdf-community/asdf-svu"), ("swag", "https://github.com/behoof4mind/asdf-swag.git"), ("swift", "https://github.com/fcrespo82/asdf-swift.git"), @@ -670,7 +694,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("terraform-ls", "https://github.com/asdf-community/asdf-hashicorp.git"), ("terraform-lsp", "https://github.com/bartlomiejdanek/asdf-terraform-lsp.git"), ("terraform-validator", "https://github.com/looztra/asdf-terraform-validator.git"), - ("terraformer", "https://github.com/grimoh/asdf-terraformer.git"), + ("terraformer", "https://github.com/gr1m0h/asdf-terraformer.git"), ("terragrunt", "https://github.com/ohmer/asdf-terragrunt.git"), ("terramate", "https://github.com/martinlindner/asdf-terramate.git"), ("terrascan", "https://github.com/hpdobrica/asdf-terrascan.git"), @@ -707,6 +731,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("tuist", "https://github.com/asdf-community/asdf-tuist.git"), ("tx", "https://github.com/ORCID/asdf-transifex.git"), ("typos", "https://github.com/aschiavon91/asdf-typos.git"), + ("typst", "https://github.com/stephane-klein/asdf-typst.git"), ("uaa-cli", "https://github.com/vmware-tanzu/tanzu-plug-in-for-asdf.git"), ("unison", "https://github.com/susurri/asdf-unison.git"), ("updatecli", "https://github.com/updatecli/asdf-updatecli.git"), @@ -714,6 +739,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("upx", "https://github.com/jimmidyson/asdf-upx.git"), ("usage", "https://github.com/jdx/mise-usage.git"), ("usql", "https://github.com/itspngu/asdf-usql.git"), + ("uv", "https://github.com/asdf-community/asdf-uv.git"), ("v", "https://github.com/jthegedus/asdf-v.git"), ("vale", "https://github.com/pdemagny/asdf-vale"), ("vals", "https://github.com/dex4er/asdf-vals.git"), @@ -742,6 +768,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("wrk", "https://github.com/ivanvc/asdf-wrk.git"), ("wtfutil", "https://github.com/NeoHsu/asdf-wtfutil.git"), ("xc", "https://github.com/airtonix/asdf-xc"), + ("xcbeautify", "https://github.com/MacPaw/asdf-xcbeautify.git"), ("xchtmlreport", "https://github.com/younke/asdf-xchtmlreport.git"), ("xcodegen", "https://github.com/younke/asdf-xcodegen.git"), ("xcodes", "https://github.com/younke/asdf-xcodes.git"), @@ -749,6 +776,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("yadm", "https://github.com/particledecay/asdf-yadm.git"), ("yamlfmt", "https://github.com/kachick/asdf-yamlfmt.git"), ("yamllint", "https://github.com/ericcornelissen/asdf-yamllint.git"), + ("yamlscript", "https://github.com/FeryET/asdf-yamlscript.git"), ("yarn", "https://github.com/twuni/asdf-yarn.git"), ("yay", "https://github.com/aaaaninja/asdf-yay.git"), ("yj", "https://github.com/ryodocx/asdf-yj.git"), @@ -783,10 +811,12 @@ pub static TRUSTED_SHORTHANDS: Lazy> = Lazy::new(|| { "nomad-pack", "packer", "pipenv", + "pkl", "poetry", "rabbitmq", "sentinel", "serf", + "sops", "terraform", "terraform-ls", "tfc-agent",