rust-just 1.51.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
-
[1.
|
|
4
|
+
[1.52.0](https://github.com/casey/just/releases/tag/1.52.0) - 2026-06-08
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Add `[shell]` attribute to override `default-script` setting ([#3359](https://github.com/casey/just/pull/3359) by [casey](https://github.com/casey))
|
|
9
|
+
- Add `default-script` setting ([#3354](https://github.com/casey/just/pull/3354) by [casey](https://github.com/casey))
|
|
10
|
+
- Add `--default-list` flag ([#3350](https://github.com/casey/just/pull/3350) by [casey](https://github.com/casey))
|
|
11
|
+
- Add `default-list` setting ([#3337](https://github.com/casey/just/pull/3337) by [casey](https://github.com/casey))
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Disable aliases that depend on absent modules ([#3358](https://github.com/casey/just/pull/3358) by [casey](https://github.com/casey))
|
|
15
|
+
- Print formatted justfile to stdout when source is stdin ([#3356](https://github.com/casey/just/pull/3356) by [casey](https://github.com/casey))
|
|
16
|
+
- Allow search directory with more subcommands ([#3353](https://github.com/casey/just/pull/3353) by [casey](https://github.com/casey))
|
|
17
|
+
- Disable recipes that depend on absent modules ([#3352](https://github.com/casey/just/pull/3352) by [casey](https://github.com/casey))
|
|
18
|
+
|
|
19
|
+
### Misc
|
|
20
|
+
- Improve absent optional module error messages ([#3357](https://github.com/casey/just/pull/3357) by [casey](https://github.com/casey))
|
|
21
|
+
- Alphabetize Attribute derive macro order ([#3355](https://github.com/casey/just/pull/3355) by [casey](https://github.com/casey))
|
|
22
|
+
- Include UTF-8 byte-order mark in PowerShell scripts ([#3347](https://github.com/casey/just/pull/3347) by [casey](https://github.com/casey))
|
|
23
|
+
- Remove options from `--list` output ([#3346](https://github.com/casey/just/pull/3346) by [casey](https://github.com/casey))
|
|
24
|
+
- Switch from ansi_term to nu_ansi_term ([#3344](https://github.com/casey/just/pull/3344) by [casey](https://github.com/casey))
|
|
25
|
+
- Remove redundant argument parser attributes ([#3340](https://github.com/casey/just/pull/3340) by [casey](https://github.com/casey))
|
|
26
|
+
|
|
27
|
+
[1.51.0](https://github.com/casey/just/releases/tag/1.51.0) - 2026-05-09
|
|
5
28
|
------------------------------------------------------------------------
|
|
6
29
|
|
|
7
30
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.52.0",
|
|
4
4
|
"description": "🤖 Just a command runner",
|
|
5
5
|
"bin": {
|
|
6
6
|
"just": "lib/index.mjs",
|
|
@@ -53,16 +53,16 @@
|
|
|
53
53
|
"typescript": "^6.0.2"
|
|
54
54
|
},
|
|
55
55
|
"optionalDependencies": {
|
|
56
|
-
"rust-just-darwin-arm64": "1.
|
|
57
|
-
"rust-just-darwin-x64": "1.
|
|
58
|
-
"rust-just-linux-arm": "1.
|
|
59
|
-
"rust-just-linux-arm64": "1.
|
|
60
|
-
"rust-just-linux-armv7": "1.
|
|
61
|
-
"rust-just-linux-loong64": "1.
|
|
62
|
-
"rust-just-linux-riscv64": "1.
|
|
63
|
-
"rust-just-linux-x64": "1.
|
|
64
|
-
"rust-just-windows-arm64": "1.
|
|
65
|
-
"rust-just-windows-x64": "1.
|
|
56
|
+
"rust-just-darwin-arm64": "1.52.0",
|
|
57
|
+
"rust-just-darwin-x64": "1.52.0",
|
|
58
|
+
"rust-just-linux-arm": "1.52.0",
|
|
59
|
+
"rust-just-linux-arm64": "1.52.0",
|
|
60
|
+
"rust-just-linux-armv7": "1.52.0",
|
|
61
|
+
"rust-just-linux-loong64": "1.52.0",
|
|
62
|
+
"rust-just-linux-riscv64": "1.52.0",
|
|
63
|
+
"rust-just-linux-x64": "1.52.0",
|
|
64
|
+
"rust-just-windows-arm64": "1.52.0",
|
|
65
|
+
"rust-just-windows-x64": "1.52.0"
|
|
66
66
|
},
|
|
67
67
|
"eslintConfig": {
|
|
68
68
|
"extends": [
|