rust-just 1.54.0 → 1.55.1

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 +58 -0
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,64 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ [1.55.1](https://github.com/casey/just/releases/tag/1.55.1) - 2026-06-29
5
+ ------------------------------------------------------------------------
6
+
7
+ ### Fixed
8
+ - Fix panic when empty path is passed to `--show` and `--usage` ([#3511](https://github.com/casey/just/pull/3511) by [casey](https://github.com/casey))
9
+
10
+ ### Misc
11
+ - Upgrade sha2 to 0.11.0 ([#3512](https://github.com/casey/just/pull/3512) by [casey](https://github.com/casey))
12
+ - Remove `Test::test_round_trip()` ([#3509](https://github.com/casey/just/pull/3509) by [casey](https://github.com/casey))
13
+ - Remove round-trip testing ([#3508](https://github.com/casey/just/pull/3508) by [casey](https://github.com/casey))
14
+
15
+ [1.55.0](https://github.com/casey/just/releases/tag/1.55.0) - 2026-06-29
16
+ ------------------------------------------------------------------------
17
+
18
+ ### Fixed
19
+ - Fix forwarded dependency flag value ([#3489](https://github.com/casey/just/pull/3489) by [casey](https://github.com/casey))
20
+
21
+ ### Changed
22
+ - Allow `[arg(pattern)]` to be a list ([#3484](https://github.com/casey/just/pull/3484) by [casey](https://github.com/casey))
23
+ - Allow `[arg(help)]` to be expression ([#3483](https://github.com/casey/just/pull/3483) by [casey](https://github.com/casey))
24
+ - Allow `[arg(pattern)]` to be expression ([#3482](https://github.com/casey/just/pull/3482) by [casey](https://github.com/casey))
25
+
26
+ ### Added
27
+ - Add stream gates to `style()` ([#3503](https://github.com/casey/just/pull/3503) by [casey](https://github.com/casey))
28
+ - Accept `-F` for `--dotenv-filename` ([#3498](https://github.com/casey/just/pull/3498) by [casey](https://github.com/casey))
29
+ - Add `just_version()` function ([#3497](https://github.com/casey/just/pull/3497) by [casey](https://github.com/casey))
30
+ - Add `[arg(multiple)]` ([#3493](https://github.com/casey/just/pull/3493) by [casey](https://github.com/casey))
31
+ - Allow combining short options ([#3490](https://github.com/casey/just/pull/3490) by [casey](https://github.com/casey))
32
+ - Allow variadic parameters to be options ([#3488](https://github.com/casey/just/pull/3488) by [casey](https://github.com/casey))
33
+ - Default `[arg(short)]` to first character of parameter name ([#3486](https://github.com/casey/just/pull/3486) by [casey](https://github.com/casey))
34
+ - Add support for RGB and fixed colors to `style()` ([#3479](https://github.com/casey/just/pull/3479) by [casey](https://github.com/casey))
35
+ - Improve `style()` function ([#3478](https://github.com/casey/just/pull/3478) by [casey](https://github.com/casey))
36
+ - Add `set minimum-version` ([#3477](https://github.com/casey/just/pull/3477) by [casey](https://github.com/casey))
37
+ - Add module aliases ([#3472](https://github.com/casey/just/pull/3472) by [casey](https://github.com/casey))
38
+
39
+ ### Misc
40
+ - Add example to cached recipes readme ([#3506](https://github.com/casey/just/pull/3506) by [casey](https://github.com/casey))
41
+ - Fix readme heading levels ([#3505](https://github.com/casey/just/pull/3505) by [casey](https://github.com/casey))
42
+ - Move Friendly Admonitions higher in Cached Recipes section ([#3504](https://github.com/casey/just/pull/3504) by [casey](https://github.com/casey))
43
+ - Rename test helper functions ([#3502](https://github.com/casey/just/pull/3502) by [casey](https://github.com/casey))
44
+ - Simplify tests ([#3501](https://github.com/casey/just/pull/3501) by [casey](https://github.com/casey))
45
+ - Use `assert_eval_eq` in tests ([#3499](https://github.com/casey/just/pull/3499) by [casey](https://github.com/casey))
46
+ - Expand readme intro list ([#3496](https://github.com/casey/just/pull/3496) by [casey](https://github.com/casey))
47
+ - Organize readme into sections ([#3495](https://github.com/casey/just/pull/3495) by [casey](https://github.com/casey))
48
+ - Rename option tests ([#3494](https://github.com/casey/just/pull/3494) by [casey](https://github.com/casey))
49
+ - Move option application to `switch.apply()` ([#3491](https://github.com/casey/just/pull/3491) by [casey](https://github.com/casey))
50
+ - Document that `[arg(help)]` may be a list ([#3485](https://github.com/casey/just/pull/3485) by [casey](https://github.com/casey))
51
+ - Move override processing out of `Analyzer` ([#3481](https://github.com/casey/just/pull/3481) by [casey](https://github.com/casey))
52
+ - Add `ConstEvalError` ([#3480](https://github.com/casey/just/pull/3480) by [casey](https://github.com/casey))
53
+ - Remove `ModuleAlias` ([#3475](https://github.com/casey/just/pull/3475) by [casey](https://github.com/casey))
54
+ - Chain tests ([#3476](https://github.com/casey/just/pull/3476) by [casey](https://github.com/casey))
55
+ - Remove temptree dependency ([#3473](https://github.com/casey/just/pull/3473) by [casey](https://github.com/casey))
56
+ - Simplify show tests ([#3471](https://github.com/casey/just/pull/3471) by [casey](https://github.com/casey))
57
+ - Remove unnecessary tab escapes ([#3470](https://github.com/casey/just/pull/3470) by [casey](https://github.com/casey))
58
+ - Indent `Test::write()` strings ([#3469](https://github.com/casey/just/pull/3469) by [casey](https://github.com/casey))
59
+ - Document cache key printing ([#3468](https://github.com/casey/just/pull/3468) by [casey](https://github.com/casey))
60
+ - Remove generic argument from `Count` ([#3467](https://github.com/casey/just/pull/3467) by [casey](https://github.com/casey))
61
+
4
62
  [1.54.0](https://github.com/casey/just/releases/tag/1.54.0) - 2026-06-22
5
63
  ------------------------------------------------------------------------
6
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-just",
3
- "version": "1.54.0",
3
+ "version": "1.55.1",
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.1",
57
+ "rust-just-darwin-x64": "1.55.1",
58
+ "rust-just-linux-arm": "1.55.1",
59
+ "rust-just-linux-arm64": "1.55.1",
60
+ "rust-just-linux-armv7": "1.55.1",
61
+ "rust-just-linux-loong64": "1.55.1",
62
+ "rust-just-linux-riscv64": "1.55.1",
63
+ "rust-just-linux-x64": "1.55.1",
64
+ "rust-just-windows-arm64": "1.55.1",
65
+ "rust-just-windows-x64": "1.55.1"
66
66
  },
67
67
  "eslintConfig": {
68
68
  "extends": [