rust-just 1.53.0 → 1.55.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +93 -0
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,99 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ [1.55.0](https://github.com/casey/just/releases/tag/1.55.0) - 2026-06-29
5
+ ------------------------------------------------------------------------
6
+
7
+ ### Fixed
8
+ - Fix forwarded dependency flag value ([#3489](https://github.com/casey/just/pull/3489) by [casey](https://github.com/casey))
9
+
10
+ ### Changed
11
+ - Allow `[arg(pattern)]` to be a list ([#3484](https://github.com/casey/just/pull/3484) by [casey](https://github.com/casey))
12
+ - Allow `[arg(help)]` to be expression ([#3483](https://github.com/casey/just/pull/3483) by [casey](https://github.com/casey))
13
+ - Allow `[arg(pattern)]` to be expression ([#3482](https://github.com/casey/just/pull/3482) by [casey](https://github.com/casey))
14
+
15
+ ### Added
16
+ - Add stream gates to `style()` ([#3503](https://github.com/casey/just/pull/3503) by [casey](https://github.com/casey))
17
+ - Accept `-F` for `--dotenv-filename` ([#3498](https://github.com/casey/just/pull/3498) by [casey](https://github.com/casey))
18
+ - Add `just_version()` function ([#3497](https://github.com/casey/just/pull/3497) by [casey](https://github.com/casey))
19
+ - Add `[arg(multiple)]` ([#3493](https://github.com/casey/just/pull/3493) by [casey](https://github.com/casey))
20
+ - Allow combining short options ([#3490](https://github.com/casey/just/pull/3490) by [casey](https://github.com/casey))
21
+ - Allow variadic parameters to be options ([#3488](https://github.com/casey/just/pull/3488) by [casey](https://github.com/casey))
22
+ - Default `[arg(short)]` to first character of parameter name ([#3486](https://github.com/casey/just/pull/3486) by [casey](https://github.com/casey))
23
+ - Add support for RGB and fixed colors to `style()` ([#3479](https://github.com/casey/just/pull/3479) by [casey](https://github.com/casey))
24
+ - Improve `style()` function ([#3478](https://github.com/casey/just/pull/3478) by [casey](https://github.com/casey))
25
+ - Add `set minimum-version` ([#3477](https://github.com/casey/just/pull/3477) by [casey](https://github.com/casey))
26
+ - Add module aliases ([#3472](https://github.com/casey/just/pull/3472) by [casey](https://github.com/casey))
27
+
28
+ ### Misc
29
+ - Add example to cached recipes readme ([#3506](https://github.com/casey/just/pull/3506) by [casey](https://github.com/casey))
30
+ - Fix readme heading levels ([#3505](https://github.com/casey/just/pull/3505) by [casey](https://github.com/casey))
31
+ - Move Friendly Admonitions higher in Cached Recipes section ([#3504](https://github.com/casey/just/pull/3504) by [casey](https://github.com/casey))
32
+ - Rename test helper functions ([#3502](https://github.com/casey/just/pull/3502) by [casey](https://github.com/casey))
33
+ - Simplify tests ([#3501](https://github.com/casey/just/pull/3501) by [casey](https://github.com/casey))
34
+ - Use `assert_eval_eq` in tests ([#3499](https://github.com/casey/just/pull/3499) by [casey](https://github.com/casey))
35
+ - Expand readme intro list ([#3496](https://github.com/casey/just/pull/3496) by [casey](https://github.com/casey))
36
+ - Organize readme into sections ([#3495](https://github.com/casey/just/pull/3495) by [casey](https://github.com/casey))
37
+ - Rename option tests ([#3494](https://github.com/casey/just/pull/3494) by [casey](https://github.com/casey))
38
+ - Move option application to `switch.apply()` ([#3491](https://github.com/casey/just/pull/3491) by [casey](https://github.com/casey))
39
+ - Document that `[arg(help)]` may be a list ([#3485](https://github.com/casey/just/pull/3485) by [casey](https://github.com/casey))
40
+ - Move override processing out of `Analyzer` ([#3481](https://github.com/casey/just/pull/3481) by [casey](https://github.com/casey))
41
+ - Add `ConstEvalError` ([#3480](https://github.com/casey/just/pull/3480) by [casey](https://github.com/casey))
42
+ - Remove `ModuleAlias` ([#3475](https://github.com/casey/just/pull/3475) by [casey](https://github.com/casey))
43
+ - Chain tests ([#3476](https://github.com/casey/just/pull/3476) by [casey](https://github.com/casey))
44
+ - Remove temptree dependency ([#3473](https://github.com/casey/just/pull/3473) by [casey](https://github.com/casey))
45
+ - Simplify show tests ([#3471](https://github.com/casey/just/pull/3471) by [casey](https://github.com/casey))
46
+ - Remove unnecessary tab escapes ([#3470](https://github.com/casey/just/pull/3470) by [casey](https://github.com/casey))
47
+ - Indent `Test::write()` strings ([#3469](https://github.com/casey/just/pull/3469) by [casey](https://github.com/casey))
48
+ - Document cache key printing ([#3468](https://github.com/casey/just/pull/3468) by [casey](https://github.com/casey))
49
+ - Remove generic argument from `Count` ([#3467](https://github.com/casey/just/pull/3467) by [casey](https://github.com/casey))
50
+
51
+ [1.54.0](https://github.com/casey/just/releases/tag/1.54.0) - 2026-06-22
52
+ ------------------------------------------------------------------------
53
+
54
+ ### Fixed
55
+ - Forbid duplicate attribute keys ([#3454](https://github.com/casey/just/pull/3454) by [casey](https://github.com/casey))
56
+ - Clear signal handler when infallible line catches signal ([#3444](https://github.com/casey/just/pull/3444) by [casey](https://github.com/casey))
57
+
58
+ ### Changed
59
+ - Allow passing `--dotenv-command` multiple times ([#3445](https://github.com/casey/just/pull/3445) by [casey](https://github.com/casey))
60
+ - Allow `[arg]` `value` to be expression ([#3429](https://github.com/casey/just/pull/3429) by [casey](https://github.com/casey))
61
+
62
+ ### Added
63
+ - Add `[continue]` attribute ([#3442](https://github.com/casey/just/pull/3442) by [casey](https://github.com/casey))
64
+ - Add `--dotenv-command` and `set dotenv-command` ([#3441](https://github.com/casey/just/pull/3441) by [casey](https://github.com/casey))
65
+
66
+ ### Cached Recipes
67
+ - Add cache key to verbose output ([#3465](https://github.com/casey/just/pull/3465) by [casey](https://github.com/casey))
68
+ - Add `--no-cache` flag ([#3463](https://github.com/casey/just/pull/3463) by [casey](https://github.com/casey))
69
+ - Remove empty cache entries with `just --clean` ([#3462](https://github.com/casey/just/pull/3462) by [casey](https://github.com/casey))
70
+ - Add `just --clean` instructions to readme ([#3461](https://github.com/casey/just/pull/3461) by [casey](https://github.com/casey))
71
+ - Allow filtering `--clean` by recipe and module path ([#3460](https://github.com/casey/just/pull/3460) by [casey](https://github.com/casey))
72
+ - Add `--clean` subcommand for clearing recipe cache ([#3459](https://github.com/casey/just/pull/3459) by [casey](https://github.com/casey))
73
+ - Include recipe name in cache entries ([#3457](https://github.com/casey/just/pull/3457) by [casey](https://github.com/casey))
74
+ - Add extra user-supplied cache key ([#3456](https://github.com/casey/just/pull/3456) by [casey](https://github.com/casey))
75
+ - Fix working directory cache key ([#3455](https://github.com/casey/just/pull/3455) by [casey](https://github.com/casey))
76
+ - Add output files to cached recipes ([#3453](https://github.com/casey/just/pull/3453) by [casey](https://github.com/casey))
77
+ - Add file inputs to cached recipes ([#3452](https://github.com/casey/just/pull/3452) by [casey](https://github.com/casey))
78
+ - Use body lines in cache key ([#3451](https://github.com/casey/just/pull/3451) by [casey](https://github.com/casey))
79
+ - Use recipe body in cache key instead of lines ([#3447](https://github.com/casey/just/pull/3447) by [casey](https://github.com/casey))
80
+ - Add additional cache keys ([#3446](https://github.com/casey/just/pull/3446) by [casey](https://github.com/casey))
81
+ - Add cached recipes ([#3437](https://github.com/casey/just/pull/3437) by [casey](https://github.com/casey))
82
+
83
+ ### Misc
84
+ - Rename `AttributeDiscriminant` to `AttributeKind` ([#3464](https://github.com/casey/just/pull/3464) by [casey](https://github.com/casey))
85
+ - Improve invalid shell recipe attribute error message ([#3458](https://github.com/casey/just/pull/3458) by [casey](https://github.com/casey))
86
+ - Add `Environment` struct ([#3450](https://github.com/casey/just/pull/3450) by [casey](https://github.com/casey))
87
+ - Remove `Test::no_justfile()` ([#3449](https://github.com/casey/just/pull/3449) by [casey](https://github.com/casey))
88
+ - Use plural consistently in `UnstableFeature` enum ([#3448](https://github.com/casey/just/pull/3448) by [casey](https://github.com/casey))
89
+ - Lowercase `ctrl` consistently ([#3443](https://github.com/casey/just/pull/3443) by [casey](https://github.com/casey))
90
+ - Add activating environments section to readme ([#3440](https://github.com/casey/just/pull/3440) by [casey](https://github.com/casey))
91
+ - Bump minimum-supported Rust version to 1.89.0 ([#3438](https://github.com/casey/just/pull/3438) by [casey](https://github.com/casey))
92
+ - Make non-unicode error messages consistent ([#3436](https://github.com/casey/just/pull/3436) by [casey](https://github.com/casey))
93
+ - Lowercase function error messages ([#3435](https://github.com/casey/just/pull/3435) by [casey](https://github.com/casey))
94
+ - Reword readme ([#3433](https://github.com/casey/just/pull/3433) by [casey](https://github.com/casey))
95
+ - Remove emacs `Local Variables:` block from justfile ([#3432](https://github.com/casey/just/pull/3432) by [casey](https://github.com/casey))
96
+
4
97
  [1.53.0](https://github.com/casey/just/releases/tag/1.53.0) - 2026-06-16
5
98
  ------------------------------------------------------------------------
6
99
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-just",
3
- "version": "1.53.0",
3
+ "version": "1.55.0",
4
4
  "description": "🤖 Just a command runner",
5
5
  "bin": {
6
6
  "just": "lib/index.mjs",
@@ -44,7 +44,7 @@
44
44
  "yargs": "^18.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@types/node": "^25.0.3",
47
+ "@types/node": "^26.0.0",
48
48
  "@types/yargs": "^17.0.35",
49
49
  "@typescript-eslint/eslint-plugin": "^8.21.0",
50
50
  "@typescript-eslint/parser": "^8.21.0",
@@ -53,16 +53,16 @@
53
53
  "typescript": "^6.0.2"
54
54
  },
55
55
  "optionalDependencies": {
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"
56
+ "rust-just-darwin-arm64": "1.55.0",
57
+ "rust-just-darwin-x64": "1.55.0",
58
+ "rust-just-linux-arm": "1.55.0",
59
+ "rust-just-linux-arm64": "1.55.0",
60
+ "rust-just-linux-armv7": "1.55.0",
61
+ "rust-just-linux-loong64": "1.55.0",
62
+ "rust-just-linux-riscv64": "1.55.0",
63
+ "rust-just-linux-x64": "1.55.0",
64
+ "rust-just-windows-arm64": "1.55.0",
65
+ "rust-just-windows-x64": "1.55.0"
66
66
  },
67
67
  "eslintConfig": {
68
68
  "extends": [