rust-just 1.54.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 +47 -0
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,53 @@
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
+
4
51
  [1.54.0](https://github.com/casey/just/releases/tag/1.54.0) - 2026-06-22
5
52
  ------------------------------------------------------------------------
6
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-just",
3
- "version": "1.54.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.54.0",
57
- "rust-just-darwin-x64": "1.54.0",
58
- "rust-just-linux-arm": "1.54.0",
59
- "rust-just-linux-arm64": "1.54.0",
60
- "rust-just-linux-armv7": "1.54.0",
61
- "rust-just-linux-loong64": "1.54.0",
62
- "rust-just-linux-riscv64": "1.54.0",
63
- "rust-just-linux-x64": "1.54.0",
64
- "rust-just-windows-arm64": "1.54.0",
65
- "rust-just-windows-x64": "1.54.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": [