Skip to content

Commit 7261519

Browse files
New version: jdx.mise version 2026.2.20 (microsoft#342570)
1 parent bd996b8 commit 7261519

3 files changed

Lines changed: 85 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Created with komac v2.15.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
3+
4+
PackageIdentifier: jdx.mise
5+
PackageVersion: 2026.2.20
6+
InstallerType: zip
7+
NestedInstallerType: portable
8+
NestedInstallerFiles:
9+
- RelativeFilePath: mise/bin/mise-shim.exe
10+
- RelativeFilePath: mise/bin/mise.exe
11+
UpgradeBehavior: install
12+
Dependencies:
13+
PackageDependencies:
14+
- PackageIdentifier: Microsoft.VCRedist.2015+.x64
15+
ReleaseDate: 2026-02-25
16+
Installers:
17+
- Architecture: x64
18+
InstallerUrl: https://github.com/jdx/mise/releases/download/v2026.2.20/mise-v2026.2.20-windows-x64.zip
19+
InstallerSha256: 4E5B6390038612F719F0C2401D5716F26A7B0C27BF0E2F765E4B48C685F5629A
20+
- Architecture: arm64
21+
InstallerUrl: https://github.com/jdx/mise/releases/download/v2026.2.20/mise-v2026.2.20-windows-arm64.zip
22+
InstallerSha256: 2F4941E08A055891A244D8A65BA01A2F5E0880A255DF73EC093F78BC761442E6
23+
ManifestType: installer
24+
ManifestVersion: 1.12.0
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Created with komac v2.15.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
3+
4+
PackageIdentifier: jdx.mise
5+
PackageVersion: 2026.2.20
6+
PackageLocale: en-US
7+
Publisher: jdx
8+
PublisherUrl: https://jdx.dev/
9+
PublisherSupportUrl: https://github.com/jdx/mise
10+
Author: jdx
11+
PackageName: mise-en-place
12+
PackageUrl: https://mise.jdx.dev/
13+
License: MIT
14+
LicenseUrl: https://github.com/jdx/mise/blob/HEAD/LICENSE
15+
ShortDescription: Dev tools, env vars, tasks
16+
Moniker: mise
17+
ReleaseNotes: |-
18+
A feature-packed release that replaces the conda backend with production-grade internals, adds a native .NET SDK plugin, and finally enforces per-task timeouts. Several lockfile and environment-handling fixes round things out.
19+
Highlights
20+
- Conda backend rewritten with rattler -- The experimental conda backend has been completely rewritten to use the rattler Rust crates (the same engine behind pixi), replacing ~1,600 lines of custom code that relied on the unsupported anaconda.org API. This brings a proper SAT-based dependency solver, correct binary prefix replacement, and repodata caching via CDN. #8325 by @jdx
21+
- Native .NET SDK management -- A new core plugin for .NET SDK installs all versions side-by-side under a shared DOTNET_ROOT, matching .NET's native multi-version model. It uses Microsoft's official dotnet-install script and supports global.json for per-project SDK pinning. #8326 by @jdx
22+
- Per-task timeouts are now enforced -- The timeout field on tasks (added in v2025.1.6 but never wired up) now actually kills tasks that exceed their limit. Timeouts send SIGTERM with a 5-second grace period before SIGKILL, and both per-task and global task_timeout settings are respected. #8250 by @tvararu
23+
Added
24+
- Core .NET SDK plugin -- mise use dotnet@8 now installs via a native core plugin with side-by-side version support and global.json detection. Configure DOTNET_ROOT via the new dotnet.dotnet_root setting. #8326 by @jdx
25+
- Per-task timeout enforcement -- Tasks with a timeout field are now killed if they exceed the configured duration. Works with both per-task config and the global task_timeout/--timeout flag. #8250 by @tvararu
26+
[tasks.deploy]
27+
run = "npm run deploy"
28+
timeout = "5m"
29+
- VSIX archive support -- The HTTP backend now recognizes .vsix files as ZIP archives and extracts them correctly, enabling tools distributed as VS Code extensions to be installed via http: URLs. #8306 by @sosumappu
30+
- Registry: oxfmt -- Added the oxfmt formatter to the tool registry. #8316 by @taoufik07
31+
Changed
32+
- Conda backend rewritten with rattler crates -- Replaces custom version matching, dependency resolution, archive extraction, and binary patching with the battle-tested rattler ecosystem (rattler_solve, rattler_repodata_gateway, rattler::install). Binary prefix replacement now works correctly (the old code skipped binary files entirely). Since the conda backend is still experimental, this is a non-breaking change. #8325 by @jdx
33+
Fixed
34+
- Lockfile not modified with --locked -- mise install --locked no longer writes to mise.lock, matching the semantics of cargo install --locked and uv pip install --locked. #8308 by @jdx
35+
- Orphan lockfile entries pruned -- mise lock now removes stale tool entries that are no longer present in config, keeping the lockfile aligned with the current toolset. #8265 by @mackwic
36+
- Contradictory lockfile config caught early -- Setting locked=true alongside lockfile=false now produces a clear error instead of silently ignoring the lock. #8329 by @jdx
37+
- watch_files triggers on every change -- The hook-env fast-path now checks [[watch_files]] paths, fixing a bug where only the first file change triggered the associated run command. #8317 by @jdx
38+
- Fish alias completions cleaned up -- Setting or unsetting shell aliases in fish now clears stale completions, preventing tab-complete from offering outdated suggestions. #8324 by @jdx
39+
- JSON schema accepts age-encrypted env values -- Fixed a oneOf ambiguity in the mise schema that rejected [env] entries using age encryption. #8328 by @adamliang0
40+
- Regal registry updated -- The regal tool now points to its new home at open-policy-agent/regal. #8315 by @charlieegan3
41+
- Conda: locked installs preserve package data -- conda_packages entries are no longer silently dropped during --locked installs, and concurrent downloads no longer race on the same temp file. #8335 by @jdx
42+
- Conda: solver no longer fails on Linux -- Deduplicated repodata records before passing them to the solver, fixing "duplicate records" errors when installing tools like imagemagick. #8337 by @jdx
43+
New Contributors
44+
- @tvararu made their first contribution in #8250
45+
- @sosumappu made their first contribution in #8306
46+
- @charlieegan3 made their first contribution in #8315
47+
- @taoufik07 made their first contribution in #8316
48+
- @adamliang0 made their first contribution in #8328
49+
- @mackwic made their first contribution in #8265
50+
Full Changelog: v2026.2.19...v2026.2.20
51+
ReleaseNotesUrl: https://github.com/jdx/mise/releases/tag/v2026.2.20
52+
ManifestType: defaultLocale
53+
ManifestVersion: 1.12.0
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Created with komac v2.15.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
3+
4+
PackageIdentifier: jdx.mise
5+
PackageVersion: 2026.2.20
6+
DefaultLocale: en-US
7+
ManifestType: version
8+
ManifestVersion: 1.12.0

0 commit comments

Comments
 (0)