pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/mise
Module Name: pkgsrc
Committed By: pin
Date: Sun Feb 22 06:53:58 UTC 2026
Modified Files:
pkgsrc/devel/mise: Makefile cargo-depends.mk distinfo
Log Message:
devel/mise: update to 2026.2.18
## [2026.2.18](https://github.com/jdx/mise/compare/v2026.2.17..v2026.2.18) - 2026-02-21
### 🚀 Features
- **(install)** auto-lock all platforms after tool installation by @jdx in [#8277](https://github.com/jdx/mise/pull/8277)
### 🐛 Bug Fixes
- **(config)** respect --yes flag for config trust prompts by @jdx in [#8288](https://github.com/jdx/mise/pull/8288)
- **(exec)** strip shims from PATH on Unix to prevent infinite recursion by @jdx in [#8276](https://github.com/jdx/mise/pull/8276)
- **(install)** validate --locked before --dry-run short-circuit by @altendky in [#8290](https://github.com/jdx/mise/pull/8290)
- **(release)** refresh PATH after mise up in release-plz by @jdx in [#8292](https://github.com/jdx/mise/pull/8292)
- **(schema)** replace unevaluatedProperties with additionalProperties by @jdx in [#8285](https://github.com/jdx/mise/pull/8285)
- **(task)** avoid duplicated stderr on task failure in replacing mode by @jdx in [#8275](https://github.com/jdx/mise/pull/8275)
- **(task)** use process groups to kill child process trees on Unix by @jdx in [#8279](https://github.com/jdx/mise/pull/8279)
- **(task)** run depends_post tasks even when parent task fails by @jdx in [#8274](https://github.com/jdx/mise/pull/8274)
- **(task)** suggest similar commands when mistyping a CLI subcommand by @jdx in [#8286](https://github.com/jdx/mise/pull/8286)
- **(task)** execute monorepo subdirectory prepare steps from root by @jdx in [#8291](https://github.com/jdx/mise/pull/8291)
- **(upgrade)** don't force-reinstall already installed versions by @jdx in [#8282](https://github.com/jdx/mise/pull/8282)
- **(watch)** restore terminal state after watchexec exits by @jdx in [#8273](https://github.com/jdx/mise/pull/8273)
### 📚 Documentation
- clarify that MISE_CEILING_PATHS excludes the ceiling directory itself by @jdx in [#8283](https://github.com/jdx/mise/pull/8283)
### Chore
- replace gen-release-notes script with communique by @jdx in [#8289](https://github.com/jdx/mise/pull/8289)
### New Contributors
- @altendky made their first contribution in [#8290](https://github.com/jdx/mise/pull/8290)
### 📦 Aqua Registry Updates
#### New Packages (4)
- [`Skarlso/crd-to-sample-yaml`](https://github.com/Skarlso/crd-to-sample-yaml)
- [`kunobi-ninja/kunobi-releases`](https://github.com/kunobi-ninja/kunobi-releases)
- [`swanysimon/markdownlint-rs`](https://github.com/swanysimon/markdownlint-rs)
- [`tmux/tmux-builds`](https://github.com/tmux/tmux-builds)
#### Updated Packages (2)
- [`firecow/gitlab-ci-local`](https://github.com/firecow/gitlab-ci-local)
- [`k1LoW/runn`](https://github.com/k1LoW/runn)
## [2026.2.17](https://github.com/jdx/mise/compare/v2026.2.16..v2026.2.17) - 2026-02-19
### 🚀 Features
- **(prepare)** update mtime of outputs after command is run by @halms in [#8243](https://github.com/jdx/mise/pull/8243)
### 🐛 Bug Fixes
- **(install)** use backend bin paths for per-tool postinstall hooks by @jdx in [#8234](https://github.com/jdx/mise/pull/8234)
- **(use)** write to config.toml instead of config.local.toml by @jdx in [#8240](https://github.com/jdx/mise/pull/8240)
- default legacy .mise.backend installs to non-explicit by @jean-humann in [#8245](https://github.com/jdx/mise/pull/8245)
### 🚜 Refactor
- **(config)** consolidate flat task_* settings into nested task.* by @jdx in [#8239](https://github.com/jdx/mise/pull/8239)
### Chore
- **(prepare)** refactor common code into ProviderBase by @halms in [#8246](https://github.com/jdx/mise/pull/8246)
### 📦 Aqua Registry Updates
#### Updated Packages (1)
- [`namespacelabs/foundation/nsc`](https://github.com/namespacelabs/foundation/nsc)
To generate a diff of this commit:
cvs rdiff -u -r1.106 -r1.107 pkgsrc/devel/mise/Makefile
cvs rdiff -u -r1.100 -r1.101 pkgsrc/devel/mise/cargo-depends.mk
cvs rdiff -u -r1.101 -r1.102 pkgsrc/devel/mise/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/mise/Makefile
diff -u pkgsrc/devel/mise/Makefile:1.106 pkgsrc/devel/mise/Makefile:1.107
--- pkgsrc/devel/mise/Makefile:1.106 Thu Feb 19 08:17:26 2026
+++ pkgsrc/devel/mise/Makefile Sun Feb 22 06:53:58 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.106 2026/02/19 08:17:26 pin Exp $
+# $NetBSD: Makefile,v 1.107 2026/02/22 06:53:58 pin Exp $
-DISTNAME= mise-2026.2.16
+DISTNAME= mise-2026.2.18
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=jdx/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/devel/mise/cargo-depends.mk
diff -u pkgsrc/devel/mise/cargo-depends.mk:1.100 pkgsrc/devel/mise/cargo-depends.mk:1.101
--- pkgsrc/devel/mise/cargo-depends.mk:1.100 Tue Feb 17 13:29:31 2026
+++ pkgsrc/devel/mise/cargo-depends.mk Sun Feb 22 06:53:58 2026
@@ -1,4 +1,4 @@
-# $NetBSD: cargo-depends.mk,v 1.100 2026/02/17 13:29:31 pin Exp $
+# $NetBSD: cargo-depends.mk,v 1.101 2026/02/22 06:53:58 pin Exp $
CARGO_CRATE_DEPENDS+= addr2line-0.25.1
CARGO_CRATE_DEPENDS+= adler2-2.0.1
Index: pkgsrc/devel/mise/distinfo
diff -u pkgsrc/devel/mise/distinfo:1.101 pkgsrc/devel/mise/distinfo:1.102
--- pkgsrc/devel/mise/distinfo:1.101 Thu Feb 19 08:17:26 2026
+++ pkgsrc/devel/mise/distinfo Sun Feb 22 06:53:58 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.101 2026/02/19 08:17:26 pin Exp $
+$NetBSD: distinfo,v 1.102 2026/02/22 06:53:58 pin Exp $
BLAKE2s (addr2line-0.25.1.crate) = cc5c422ec48ccef5c2c46379d2f600644609490afafea5020f2020815d1146e6
SHA512 (addr2line-0.25.1.crate) = c400f3b6ccaff8a1c0d7d82c708a1784b8fd5ba64b6e420e85819d59b1cadb55fa59c852925093b921469f272d1d5140cf12f013ae75d1e1bc85021097df8fc2
@@ -1341,9 +1341,9 @@ Size (miniz_oxide-0.8.9.crate) = 67132 b
BLAKE2s (mio-1.1.1.crate) = fbb7f9607e7a387318c020bee5a544bdfba3ef3e03b1bf35c59eacc25cc82cb1
SHA512 (mio-1.1.1.crate) = 0b1c82773f5cc3f33ccb80a2cfbd58e48ffac82934afa7d9ec632b36484f8a13a079802dd8a658dbc94fc158e597e4d7a2c02a799f7b506a7de98fe74e80e684
Size (mio-1.1.1.crate) = 105630 bytes
-BLAKE2s (mise-2026.2.16.tar.gz) = b6406df00f3cd43918b45d6498cf272324f8cde5fb1c1b5226008f99c9c1059b
-SHA512 (mise-2026.2.16.tar.gz) = 60db1cf5b03c04a29f65990a517726f9a40e07512d3f00c4cfef64cc7f36170a851bf7624934c6e3ae25f20e320d56b98635b17e28c0e6bef1629a52ba4da3c3
-Size (mise-2026.2.16.tar.gz) = 6366795 bytes
+BLAKE2s (mise-2026.2.18.tar.gz) = 2820f51542c933ac0ec9ca6244dcf69b68177794bb88f14a37de73ec37ef4782
+SHA512 (mise-2026.2.18.tar.gz) = 09b939878f4a5d96e3b61dc49a615f0eae5ae95d7c64566308588a2dd48dc76c45a5ff727269879a8db316a9b0b151351e1136daa615860669d8b81c9427ac8a
+Size (mise-2026.2.18.tar.gz) = 6378000 bytes
BLAKE2s (mlua-0.11.6.crate) = df1c422ec661c7df9c3cfcd7b741ec7a92d57a0db98299e2c453bd77fe1d3167
SHA512 (mlua-0.11.6.crate) = 2466e374bb055599663197b4d8c5175f461841bc86d82e303516e43e92231b1914c888e631f4b7298df89956704e236a19843cead5c477192e6c3c042377448f
Size (mlua-0.11.6.crate) = 261952 bytes
Home |
Main Index |
Thread Index |
Old Index