rust-just 1.51.0 → 1.53.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 +95 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,101 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
-
[1.
|
|
4
|
+
[1.53.0](https://github.com/casey/just/releases/tag/1.53.0) - 2026-06-16
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Add `recipe_name()` function ([#3366](https://github.com/casey/just/pull/3366) by [casey](https://github.com/casey))
|
|
9
|
+
- Support markdown justfiles ([#3361](https://github.com/casey/just/pull/3361) by [casey](https://github.com/casey))
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Allow omitting `assert()` message ([#3423](https://github.com/casey/just/pull/3423) by [casey](https://github.com/casey))
|
|
13
|
+
- Preserve bare `[arg]` long key when formatting ([#3397](https://github.com/casey/just/pull/3397) by [casey](https://github.com/casey))
|
|
14
|
+
|
|
15
|
+
### Lists
|
|
16
|
+
- Add list concatenation operator ([#3427](https://github.com/casey/just/pull/3427) by [casey](https://github.com/casey))
|
|
17
|
+
- Do not export empty lists ([#3424](https://github.com/casey/just/pull/3424) by [casey](https://github.com/casey))
|
|
18
|
+
- Add `split()` function ([#3420](https://github.com/casey/just/pull/3420) by [casey](https://github.com/casey))
|
|
19
|
+
- Make `which()` require `set lists` ([#3418](https://github.com/casey/just/pull/3418) by [casey](https://github.com/casey))
|
|
20
|
+
- Make `env()` functions work with lists ([#3416](https://github.com/casey/just/pull/3416) by [casey](https://github.com/casey))
|
|
21
|
+
- Make `+` and `/` work with lists ([#3415](https://github.com/casey/just/pull/3415) by [casey](https://github.com/casey))
|
|
22
|
+
- Allow lists as regex operands of `=~` and `!~` ([#3414](https://github.com/casey/just/pull/3414) by [casey](https://github.com/casey))
|
|
23
|
+
- Allow multiple `--dotenv-filename` and `--dotenv-path` options ([#3413](https://github.com/casey/just/pull/3413) by [casey](https://github.com/casey))
|
|
24
|
+
- Load multiple `.env` files ([#3412](https://github.com/casey/just/pull/3412) by [casey](https://github.com/casey))
|
|
25
|
+
- Flatten interpreter settings ([#3410](https://github.com/casey/just/pull/3410) by [casey](https://github.com/casey))
|
|
26
|
+
- Make `[env]` work with lists ([#3409](https://github.com/casey/just/pull/3409) by [casey](https://github.com/casey))
|
|
27
|
+
- Join lists in `assert()` and `[confirm]` messages ([#3408](https://github.com/casey/just/pull/3408) by [casey](https://github.com/casey))
|
|
28
|
+
- Join lists in interpolations ([#3407](https://github.com/casey/just/pull/3407) by [casey](https://github.com/casey))
|
|
29
|
+
- Using lists in string contexts is an error ([#3406](https://github.com/casey/just/pull/3406) by [casey](https://github.com/casey))
|
|
30
|
+
- `assert(condition)` evaluates to `condition` ([#3405](https://github.com/casey/just/pull/3405) by [casey](https://github.com/casey))
|
|
31
|
+
- Make `assert()` evaluate to `"true"` when `set lists` is enabled ([#3404](https://github.com/casey/just/pull/3404) by [casey](https://github.com/casey))
|
|
32
|
+
- Make `=~` and `!~` work with lists ([#3403](https://github.com/casey/just/pull/3403) by [casey](https://github.com/casey))
|
|
33
|
+
- `if` without `else` evalutes to `[]` when false ([#3401](https://github.com/casey/just/pull/3401) by [casey](https://github.com/casey))
|
|
34
|
+
- Check structural equality in `!=` and `==` ([#3402](https://github.com/casey/just/pull/3402) by [casey](https://github.com/casey))
|
|
35
|
+
- Add `flag` `[arg]` attribute ([#3398](https://github.com/casey/just/pull/3398) by [casey](https://github.com/casey))
|
|
36
|
+
- Make `show()` require `set lists` ([#3392](https://github.com/casey/just/pull/3392) by [casey](https://github.com/casey))
|
|
37
|
+
- Add `bool()` function ([#3391](https://github.com/casey/just/pull/3391) by [casey](https://github.com/casey))
|
|
38
|
+
- Add negation operator `!` ([#3389](https://github.com/casey/just/pull/3389) by [casey](https://github.com/casey))
|
|
39
|
+
- Allow conditions to be used in arbitrary expressions ([#3387](https://github.com/casey/just/pull/3387) by [casey](https://github.com/casey))
|
|
40
|
+
- Add `show()` function ([#3383](https://github.com/casey/just/pull/3383) by [casey](https://github.com/casey))
|
|
41
|
+
- Print lists in `--evaluate` ([#3382](https://github.com/casey/just/pull/3382) by [casey](https://github.com/casey))
|
|
42
|
+
- Reform booleans ([#3381](https://github.com/casey/just/pull/3381) by [casey](https://github.com/casey))
|
|
43
|
+
- Add list literals ([#3380](https://github.com/casey/just/pull/3380) by [casey](https://github.com/casey))
|
|
44
|
+
- Allow mapping dependencies over lists ([#3379](https://github.com/casey/just/pull/3379) by [casey](https://github.com/casey))
|
|
45
|
+
- Forwards lists to dependencies ([#3378](https://github.com/casey/just/pull/3378) by [casey](https://github.com/casey))
|
|
46
|
+
- Map `append()` and `prepend()` over lists ([#3375](https://github.com/casey/just/pull/3375) by [casey](https://github.com/casey))
|
|
47
|
+
- Map `absolute_path()` over lists ([#3374](https://github.com/casey/just/pull/3374) by [casey](https://github.com/casey))
|
|
48
|
+
- Add `set lists` ([#3372](https://github.com/casey/just/pull/3372) by [casey](https://github.com/casey))
|
|
49
|
+
- Preserve variadic arguments as lists of strings ([#3362](https://github.com/casey/just/pull/3362) by [casey](https://github.com/casey))
|
|
50
|
+
|
|
51
|
+
### Misc
|
|
52
|
+
- Improve broken WSL bash workaround ([#3426](https://github.com/casey/just/pull/3426) by [casey](https://github.com/casey))
|
|
53
|
+
- Fix `[arg]` attribute examples in readme ([#3422](https://github.com/casey/just/pull/3422) by [casey](https://github.com/casey))
|
|
54
|
+
- Organize lists readme section ([#3421](https://github.com/casey/just/pull/3421) by [casey](https://github.com/casey))
|
|
55
|
+
- Remove extra detail from most list in string context errors ([#3417](https://github.com/casey/just/pull/3417) by [casey](https://github.com/casey))
|
|
56
|
+
- Add tokens to `[env]` and `[working-directory]` string context errors ([#3411](https://github.com/casey/just/pull/3411) by [casey](https://github.com/casey))
|
|
57
|
+
- Reduce parser test churn ([#3400](https://github.com/casey/just/pull/3400) by [casey](https://github.com/casey))
|
|
58
|
+
- Add example using `[parallel]` with mapped dependencies ([#3399](https://github.com/casey/just/pull/3399) by [casey](https://github.com/casey))
|
|
59
|
+
- Use `StringResult` and `ValueResult` instead of `FunctionResult` ([#3396](https://github.com/casey/just/pull/3396) by [casey](https://github.com/casey))
|
|
60
|
+
- Allow stable calls to user-defined functions that shadow unstable functions ([#3395](https://github.com/casey/just/pull/3395) by [casey](https://github.com/casey))
|
|
61
|
+
- Replace rule 110 with rule 124 ([#3394](https://github.com/casey/just/pull/3394) by [casey](https://github.com/casey))
|
|
62
|
+
- Consolidate list feature errors ([#3393](https://github.com/casey/just/pull/3393) by [casey](https://github.com/casey))
|
|
63
|
+
- Simplify `Lexer::lex_choices()` ([#3390](https://github.com/casey/just/pull/3390) by [casey](https://github.com/casey))
|
|
64
|
+
- Consolidate list feature tracking ([#3388](https://github.com/casey/just/pull/3388) by [casey](https://github.com/casey))
|
|
65
|
+
- Refactor function context retrieval ([#3386](https://github.com/casey/just/pull/3386) by [casey](https://github.com/casey))
|
|
66
|
+
- Remove `summary` module ([#3385](https://github.com/casey/just/pull/3385) by [casey](https://github.com/casey))
|
|
67
|
+
- Use `show()` and `--evaluate` in tests ([#3384](https://github.com/casey/just/pull/3384) by [casey](https://github.com/casey))
|
|
68
|
+
- Include number in counts ([#3376](https://github.com/casey/just/pull/3376) by [casey](https://github.com/casey))
|
|
69
|
+
- Improve list tests ([#3373](https://github.com/casey/just/pull/3373) by [casey](https://github.com/casey))
|
|
70
|
+
- Add `rule110` recipe to `demo` group ([#3368](https://github.com/casey/just/pull/3368) by [casey](https://github.com/casey))
|
|
71
|
+
- Move doc comments above long recipe signatures in `--list` ([#3367](https://github.com/casey/just/pull/3367) by [casey](https://github.com/casey))
|
|
72
|
+
- Propagate `is_dependency` to defined function evaluators ([#3365](https://github.com/casey/just/pull/3365) by [casey](https://github.com/casey))
|
|
73
|
+
- Use `value` consistently in functions ([#3364](https://github.com/casey/just/pull/3364) by [casey](https://github.com/casey))
|
|
74
|
+
|
|
75
|
+
[1.52.0](https://github.com/casey/just/releases/tag/1.52.0) - 2026-06-08
|
|
76
|
+
------------------------------------------------------------------------
|
|
77
|
+
|
|
78
|
+
### Added
|
|
79
|
+
- Add `[shell]` attribute to override `default-script` setting ([#3359](https://github.com/casey/just/pull/3359) by [casey](https://github.com/casey))
|
|
80
|
+
- Add `default-script` setting ([#3354](https://github.com/casey/just/pull/3354) by [casey](https://github.com/casey))
|
|
81
|
+
- Add `--default-list` flag ([#3350](https://github.com/casey/just/pull/3350) by [casey](https://github.com/casey))
|
|
82
|
+
- Add `default-list` setting ([#3337](https://github.com/casey/just/pull/3337) by [casey](https://github.com/casey))
|
|
83
|
+
|
|
84
|
+
### Changed
|
|
85
|
+
- Disable aliases that depend on absent modules ([#3358](https://github.com/casey/just/pull/3358) by [casey](https://github.com/casey))
|
|
86
|
+
- Print formatted justfile to stdout when source is stdin ([#3356](https://github.com/casey/just/pull/3356) by [casey](https://github.com/casey))
|
|
87
|
+
- Allow search directory with more subcommands ([#3353](https://github.com/casey/just/pull/3353) by [casey](https://github.com/casey))
|
|
88
|
+
- Disable recipes that depend on absent modules ([#3352](https://github.com/casey/just/pull/3352) by [casey](https://github.com/casey))
|
|
89
|
+
|
|
90
|
+
### Misc
|
|
91
|
+
- Improve absent optional module error messages ([#3357](https://github.com/casey/just/pull/3357) by [casey](https://github.com/casey))
|
|
92
|
+
- Alphabetize Attribute derive macro order ([#3355](https://github.com/casey/just/pull/3355) by [casey](https://github.com/casey))
|
|
93
|
+
- Include UTF-8 byte-order mark in PowerShell scripts ([#3347](https://github.com/casey/just/pull/3347) by [casey](https://github.com/casey))
|
|
94
|
+
- Remove options from `--list` output ([#3346](https://github.com/casey/just/pull/3346) by [casey](https://github.com/casey))
|
|
95
|
+
- Switch from ansi_term to nu_ansi_term ([#3344](https://github.com/casey/just/pull/3344) by [casey](https://github.com/casey))
|
|
96
|
+
- Remove redundant argument parser attributes ([#3340](https://github.com/casey/just/pull/3340) by [casey](https://github.com/casey))
|
|
97
|
+
|
|
98
|
+
[1.51.0](https://github.com/casey/just/releases/tag/1.51.0) - 2026-05-09
|
|
5
99
|
------------------------------------------------------------------------
|
|
6
100
|
|
|
7
101
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.53.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.53.0",
|
|
57
|
+
"rust-just-darwin-x64": "1.53.0",
|
|
58
|
+
"rust-just-linux-arm": "1.53.0",
|
|
59
|
+
"rust-just-linux-arm64": "1.53.0",
|
|
60
|
+
"rust-just-linux-armv7": "1.53.0",
|
|
61
|
+
"rust-just-linux-loong64": "1.53.0",
|
|
62
|
+
"rust-just-linux-riscv64": "1.53.0",
|
|
63
|
+
"rust-just-linux-x64": "1.53.0",
|
|
64
|
+
"rust-just-windows-arm64": "1.53.0",
|
|
65
|
+
"rust-just-windows-x64": "1.53.0"
|
|
66
66
|
},
|
|
67
67
|
"eslintConfig": {
|
|
68
68
|
"extends": [
|