Skip to content

Commit 819edd1

Browse files
authored
chore: release 2026.1.12 (#7915)
### 🐛 Bug Fixes - **(task)** resolve monorepo task includes relative to config file directory by @jdx in [#7917](#7917) - disable autocrlf on git clone to fix WSL issues by @jdx in [#7916](#7916) ### 📚 Documentation - **(tasks)** add bash array pattern for variadic args by @jdx in [#7914](#7914)
1 parent 54efccc commit 819edd1

File tree

13 files changed

+28
-17
lines changed

13 files changed

+28
-17
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [2026.1.12](https://github.com/jdx/mise/compare/v2026.1.11..v2026.1.12) - 2026-01-31
4+
5+
### 🐛 Bug Fixes
6+
7+
- **(task)** resolve monorepo task includes relative to config file directory by @jdx in [#7917](https://github.com/jdx/mise/pull/7917)
8+
- disable autocrlf on git clone to fix WSL issues by @jdx in [#7916](https://github.com/jdx/mise/pull/7916)
9+
10+
### 📚 Documentation
11+
12+
- **(tasks)** add bash array pattern for variadic args by @jdx in [#7914](https://github.com/jdx/mise/pull/7914)
13+
314
## [2026.1.11](https://github.com/jdx/mise/compare/v2026.1.10..v2026.1.11) - 2026-01-30
415

516
### 🚀 Features

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/vfox", "crates/aqua-registry"]
33

44
[package]
55
name = "mise"
6-
version = "2026.1.11"
6+
version = "2026.1.12"
77
edition = "2024"
88
description = "The front-end to your dev env"
99
authors = ["Jeff Dickey (@jdx)"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ $ ~/.local/bin/mise --version
6161
/ / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/
6262
/_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/
6363
/_/ by @jdx
64-
2026.1.11 macos-arm64 (2026-01-30)
64+
2026.1.12 macos-arm64 (2026-01-31)
6565
```
6666

6767
Hook mise into your shell (pick the right one for your shell):

completions/_mise

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ _mise() {
2323
return 1
2424
fi
2525

26-
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_1_11.spec"
26+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_1_12.spec"
2727
if [[ ! -f "$spec_file" ]]; then
2828
mise usage > "$spec_file"
2929
fi

completions/mise.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ _mise() {
99

1010
local cur prev words cword was_split comp_args
1111
_comp_initialize -n : -- "$@" || return
12-
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_1_11.spec"
12+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_1_12.spec"
1313
if [[ ! -f "$spec_file" ]]; then
1414
mise usage > "$spec_file"
1515
fi

completions/mise.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if ! type -p usage &> /dev/null
88
return 1
99
end
1010
set -l tmpdir (if set -q TMPDIR; echo $TMPDIR; else; echo /tmp; end)
11-
set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_1_11.spec"
11+
set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_1_12.spec"
1212
if not test -f "$spec_file"
1313
mise usage | string collect > "$spec_file"
1414
end

completions/mise.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Register-ArgumentCompleter -Native -CommandName 'mise' -ScriptBlock {
1010
param($wordToComplete, $commandAst, $cursorPosition)
1111

1212
$tmpDir = if ($env:TEMP) { $env:TEMP } else { [System.IO.Path]::GetTempPath() }
13-
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_1_11.kdl"
13+
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_1_12.kdl"
1414

1515
if (-not (Test-Path $specFile)) {
1616
mise usage | Out-File -FilePath $specFile -Encoding utf8

crates/vfox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vfox"
3-
version = "2026.1.4"
3+
version = "2026.1.5"
44
edition = "2024"
55
license = "MIT"
66
description = "Interface to vfox plugins"

crates/vfox/embedded-plugins/vfox-lua/hooks/post_install.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ function PLUGIN:PostInstall(ctx)
6161

6262
-- Install LuaRocks for Lua 5.x
6363
if major and major >= 5 then
64-
-- Get latest LuaRocks version from GitHub
64+
-- Get latest LuaRocks version from GitHub releases
6565
local luarocksVersion = "3.11.1" -- Default fallback
6666

6767
local resp, err = http.get({
68-
url = "https://api.github.com/repos/luarocks/luarocks/tags?per_page=1",
68+
url = "https://api.github.com/repos/luarocks/luarocks/releases/latest",
6969
})
7070

7171
if err == nil and resp.status_code == 200 then
7272
local data = json.decode(resp.body)
73-
if data ~= nil and type(data) == "table" and #data > 0 then
74-
local tag = data[1]["name"]
73+
if data ~= nil and type(data) == "table" then
74+
local tag = data["tag_name"]
7575
if tag then
7676
-- Remove 'v' prefix if present
7777
luarocksVersion = string.gsub(tag, "^v", "")
@@ -80,7 +80,7 @@ function PLUGIN:PostInstall(ctx)
8080
end
8181

8282
-- Download and install LuaRocks
83-
local luarocksUrl = "https://luarocks.org/releases/luarocks-" .. luarocksVersion .. ".tar.gz"
83+
local luarocksUrl = "https://github.com/luarocks/luarocks/archive/refs/tags/v" .. luarocksVersion .. ".tar.gz"
8484
local luarocksArchive = sdkPath .. "/luarocks.tar.gz"
8585

8686
local downloadCmd = string.format("curl -sL '%s' -o '%s'", luarocksUrl, luarocksArchive)

0 commit comments

Comments
 (0)