rust-just 1.47.1 → 1.48.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 +51 -1
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,6 +1,56 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ [1.48.1](https://github.com/casey/just/releases/tag/1.48.1) - 2026-03-27
5
+ ------------------------------------------------------------------------
6
+
7
+ - Fix bash completion of command lines containing `:` ([#3205](https://github.com/casey/just/pull/3205) by [casey](https://github.com/casey))
8
+ - Call zsh completion function when first auto-loaded ([#3199](https://github.com/casey/just/pull/3199) by [casey](https://github.com/casey))
9
+ - Fix `--set` missing value error message interpolation ([#3198](https://github.com/casey/just/pull/3198) by [cuiweixie](https://github.com/cuiweixie))
10
+ - Add `#compdef` to zsh completion script ([#3197](https://github.com/casey/just/pull/3197) by [casey](https://github.com/casey))
11
+ - Add instructions for alias completions in bash ([#3190](https://github.com/casey/just/pull/3190) by [casey](https://github.com/casey))
12
+ - Remove redundant clap derive attributes ([#3183](https://github.com/casey/just/pull/3183) by [casey](https://github.com/casey))
13
+ - Move files into etc/ ([#3182](https://github.com/casey/just/pull/3182) by [casey](https://github.com/casey))
14
+ - Update stable features in readme ([#3181](https://github.com/casey/just/pull/3181) by [casey](https://github.com/casey))
15
+
16
+ [1.48.0](https://github.com/casey/just/releases/tag/1.48.0) - 2026-03-23
17
+ ------------------------------------------------------------------------
18
+
19
+ ### Added
20
+ - Build docker images ([#3174](https://github.com/casey/just/pull/3174) by [casey](https://github.com/casey))
21
+ - Dynamically complete recipes for `--usage` ([#3172](https://github.com/casey/just/pull/3172) by [casey](https://github.com/casey))
22
+ - Dynamically complete groups ([#3171](https://github.com/casey/just/pull/3171) by [casey](https://github.com/casey))
23
+ - Dynamically complete recipes and variables ([#3169](https://github.com/casey/just/pull/3169) by [casey](https://github.com/casey))
24
+ - Complete appropriate filetypes ([#3168](https://github.com/casey/just/pull/3168) by [casey](https://github.com/casey))
25
+ - Allow overriding variables in submodules ([#3151](https://github.com/casey/just/pull/3151) by [casey](https://github.com/casey))
26
+ - Add `--json` as synonym for `--dump --dump-format json` ([#3143](https://github.com/casey/just/pull/3143) by [casey](https://github.com/casey))
27
+
28
+ ### Changed
29
+ - Stabilize lazy evaluation ([#3180](https://github.com/casey/just/pull/3180) by [casey](https://github.com/casey))
30
+ - Switch to dynamic completion engine ([#3167](https://github.com/casey/just/pull/3167) by [casey](https://github.com/casey))
31
+ - Respect PATH and PATHEXT when running commands on Windows ([#3160](https://github.com/casey/just/pull/3160) by [casey](https://github.com/casey))
32
+ - Make `which()` and `require()` respect PATHEXT on Windows ([#3144](https://github.com/casey/just/pull/3144) by [casey](https://github.com/casey))
33
+
34
+ ### Misc
35
+ - Add completion script installation instructions ([#3178](https://github.com/casey/just/pull/3178) by [casey](https://github.com/casey))
36
+ - Fix readme typo ([#3176](https://github.com/casey/just/pull/3176) by [Rohan5commit](https://github.com/Rohan5commit))
37
+ - Remove Vagrantfile ([#3173](https://github.com/casey/just/pull/3173) by [casey](https://github.com/casey))
38
+ - Fix signal handling typo ([#3170](https://github.com/casey/just/pull/3170) by [Rohan5commit](https://github.com/Rohan5commit))
39
+ - Add cargo-binstall installation instructions ([#3165](https://github.com/casey/just/pull/3165) by [casey](https://github.com/casey))
40
+ - Fix typos ([#3162](https://github.com/casey/just/pull/3162) by [casey](https://github.com/casey))
41
+ - Readme typo: forground ([#3161](https://github.com/casey/just/pull/3161) by [Rohan5commit](https://github.com/Rohan5commit))
42
+ - Use clap derive to parse arguments ([#3158](https://github.com/casey/just/pull/3158) by [casey](https://github.com/casey))
43
+ - Fix readme typo ([#3156](https://github.com/casey/just/pull/3156) by [teee32](https://github.com/teee32))
44
+ - Document that path_exists() returns strings ([#2946](https://github.com/casey/just/pull/2946) by [cspotcode](https://github.com/cspotcode))
45
+ - Remove version references from readme headings ([#3153](https://github.com/casey/just/pull/3153) by [casey](https://github.com/casey))
46
+ - Fix readme typo ([#3152](https://github.com/casey/just/pull/3152) by [Rohan5commit](https://github.com/Rohan5commit))
47
+ - Fix variadic parameter typo in readme ([#3150](https://github.com/casey/just/pull/3150) by [casey](https://github.com/casey))
48
+ - Fix readme typo ([#3148](https://github.com/casey/just/pull/3148) by [Rohan5commit](https://github.com/Rohan5commit))
49
+ - Avoid conditional compilation ([#3145](https://github.com/casey/just/pull/3145) by [casey](https://github.com/casey))
50
+ - Update VS Code extension in Chinese readme ([#2984](https://github.com/casey/just/pull/2984) by [A-moment096](https://github.com/A-moment096))
51
+ - Change replace wording in readme ([#3137](https://github.com/casey/just/pull/3137) by [Rohan5commit](https://github.com/Rohan5commit))
52
+ - Document recipe metadata ([#3142](https://github.com/casey/just/pull/3142) by [casey](https://github.com/casey))
53
+
4
54
  [1.47.1](https://github.com/casey/just/releases/tag/1.47.1) - 2026-03-16
5
55
  ------------------------------------------------------------------------
6
56
 
@@ -63,7 +113,7 @@ Changelog
63
113
  - Don't leak signal handler pipe into child processes ([#3035](https://github.com/casey/just/pull/3035) by [rjmac](https://github.com/rjmac))
64
114
 
65
115
  ### Added
66
- - Allow `long` to default to to parameter name ([#3041](https://github.com/casey/just/pull/3041) by [casey](https://github.com/casey))
116
+ - Allow `long` to default to parameter name ([#3041](https://github.com/casey/just/pull/3041) by [casey](https://github.com/casey))
67
117
  - Allow const expressions in all settings ([#3037](https://github.com/casey/just/pull/3037) by [casey](https://github.com/casey))
68
118
  - Allow const expressions in `working-directory` ([#3033](https://github.com/casey/just/pull/3033) by [casey](https://github.com/casey))
69
119
  - Add --usage subcommand and argument help strings ([#3031](https://github.com/casey/just/pull/3031) by [casey](https://github.com/casey))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-just",
3
- "version": "1.47.1",
3
+ "version": "1.48.1",
4
4
  "description": "🤖 Just a command runner",
5
5
  "bin": {
6
6
  "just": "lib/index.mjs",
@@ -52,13 +52,13 @@
52
52
  "typescript": "^5.7.3"
53
53
  },
54
54
  "optionalDependencies": {
55
- "rust-just-darwin-arm64": "1.47.1",
56
- "rust-just-darwin-x64": "1.47.1",
57
- "rust-just-linux-arm": "1.47.1",
58
- "rust-just-linux-arm64": "1.47.1",
59
- "rust-just-linux-x64": "1.47.1",
60
- "rust-just-windows-arm64": "1.47.1",
61
- "rust-just-windows-x64": "1.47.1"
55
+ "rust-just-darwin-arm64": "1.48.1",
56
+ "rust-just-darwin-x64": "1.48.1",
57
+ "rust-just-linux-arm": "1.48.1",
58
+ "rust-just-linux-arm64": "1.48.1",
59
+ "rust-just-linux-x64": "1.48.1",
60
+ "rust-just-windows-arm64": "1.48.1",
61
+ "rust-just-windows-x64": "1.48.1"
62
62
  },
63
63
  "eslintConfig": {
64
64
  "extends": [