rust-just 1.43.1 → 1.45.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 +67 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,73 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[1.46.0](https://github.com/casey/just/releases/tag/1.46.0) - 2026-01-01
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Don't leak signal handler pipe into child processes ([#3035](https://github.com/casey/just/pull/3035) by [rjmac](https://github.com/rjmac))
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Allow `long` to default to to parameter name ([#3041](https://github.com/casey/just/pull/3041) by [casey](https://github.com/casey))
|
|
12
|
+
- Allow const expressions in all settings ([#3037](https://github.com/casey/just/pull/3037) by [casey](https://github.com/casey))
|
|
13
|
+
- Allow const expressions in `working-directory` ([#3033](https://github.com/casey/just/pull/3033) by [casey](https://github.com/casey))
|
|
14
|
+
- Add --usage subcommand and argument help strings ([#3031](https://github.com/casey/just/pull/3031) by [casey](https://github.com/casey))
|
|
15
|
+
- Add flags without values ([#3029](https://github.com/casey/just/pull/3029) by [casey](https://github.com/casey))
|
|
16
|
+
- Allow passing arguments as short `-x` options ([#3028](https://github.com/casey/just/pull/3028) by [casey](https://github.com/casey))
|
|
17
|
+
- Allow recipes to take `--long` options ([#3026](https://github.com/casey/just/pull/3026) by [casey](https://github.com/casey))
|
|
18
|
+
|
|
19
|
+
### Misc
|
|
20
|
+
- Add original token to string literal ([#3042](https://github.com/casey/just/pull/3042) by [casey](https://github.com/casey))
|
|
21
|
+
- Remove string literal lifetime ([#3036](https://github.com/casey/just/pull/3036) by [casey](https://github.com/casey))
|
|
22
|
+
- Move overrides into config ([#3032](https://github.com/casey/just/pull/3032) by [casey](https://github.com/casey))
|
|
23
|
+
- Test that options are passed as positional arguments ([#3030](https://github.com/casey/just/pull/3030) by [casey](https://github.com/casey))
|
|
24
|
+
- Group arguments by parameter ([#3025](https://github.com/casey/just/pull/3025) by [casey](https://github.com/casey))
|
|
25
|
+
- Add OpenBSD package to readme ([#2900](https://github.com/casey/just/pull/2900) by [vext01](https://github.com/vext01))
|
|
26
|
+
- Re-enable mdbook-linkcheck ([#3011](https://github.com/casey/just/pull/3011) by [casey](https://github.com/casey))
|
|
27
|
+
- Disable dependabot ([#3010](https://github.com/casey/just/pull/3010) by [casey](https://github.com/casey))
|
|
28
|
+
- Fix pre-release check in pages deploy job ([#3009](https://github.com/casey/just/pull/3009) by [casey](https://github.com/casey))
|
|
29
|
+
|
|
30
|
+
[1.45.0](https://github.com/casey/just/releases/tag/1.45.0) - 2025-12-10
|
|
31
|
+
------------------------------------------------------------------------
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
- Allow requiring recipe arguments to match regular expression patterns ([#3000](https://github.com/casey/just/pull/3000) by [casey](https://github.com/casey))
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
- Allow shell-expanded strings in attributes ([#3007](https://github.com/casey/just/pull/3007) by [casey](https://github.com/casey))
|
|
38
|
+
- Fix arg pattern anchoring ([#3002](https://github.com/casey/just/pull/3002) by [casey](https://github.com/casey))
|
|
39
|
+
|
|
40
|
+
### Misc
|
|
41
|
+
- Use non-capturing group in arg pattern regex ([#3006](https://github.com/casey/just/pull/3006) by [casey](https://github.com/casey))
|
|
42
|
+
- Remove redundant type annotation ([#3004](https://github.com/casey/just/pull/3004) by [casey](https://github.com/casey))
|
|
43
|
+
|
|
44
|
+
[1.44.1](https://github.com/casey/just/releases/tag/1.44.1) - 2025-12-09
|
|
45
|
+
------------------------------------------------------------------------
|
|
46
|
+
|
|
47
|
+
### Fixed
|
|
48
|
+
- Properly close format string delimiter ([#2997](https://github.com/casey/just/pull/2997) by [casey](https://github.com/casey))
|
|
49
|
+
|
|
50
|
+
[1.44.0](https://github.com/casey/just/releases/tag/1.44.0) - 2025-12-06
|
|
51
|
+
------------------------------------------------------------------------
|
|
52
|
+
|
|
53
|
+
### Added
|
|
54
|
+
- Add f'{format}' strings ([#2985](https://github.com/casey/just/pull/2985) by [casey](https://github.com/casey))
|
|
55
|
+
- Use double braces `{{…}}` for format strings ([#2993](https://github.com/casey/just/pull/2993) by [casey](https://github.com/casey))
|
|
56
|
+
- Stabilize `[script]` attribute ([#2988](https://github.com/casey/just/pull/2988) by [casey](https://github.com/casey))
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
- Allow newlines in interpolations and `}` to abut interpolation `}}` ([#2992](https://github.com/casey/just/pull/2992) by [casey](https://github.com/casey))
|
|
60
|
+
|
|
61
|
+
### Misc
|
|
62
|
+
- Test format strings with conditionals ([#2991](https://github.com/casey/just/pull/2991) by [casey](https://github.com/casey))
|
|
63
|
+
- Move StringState into module ([#2989](https://github.com/casey/just/pull/2989) by [casey](https://github.com/casey))
|
|
64
|
+
- Test undefined variable in format string error ([#2987](https://github.com/casey/just/pull/2987) by [casey](https://github.com/casey))
|
|
65
|
+
- Update `softprops/action-gh-release` to 2.5.0 ([#2979](https://github.com/casey/just/pull/2979) by [app/dependabot](https://github.com/app/dependabot))
|
|
66
|
+
- Link to `just-lsp` in readme ([#2846](https://github.com/casey/just/pull/2846) by [terror](https://github.com/terror))
|
|
67
|
+
- Fix `just --list` submodule example in readme ([#2973](https://github.com/casey/just/pull/2973) by [neodejack](https://github.com/neodejack))
|
|
68
|
+
- Update `actions/checkout` ([#2969](https://github.com/casey/just/pull/2969) by [app/dependabot](https://github.com/app/dependabot))
|
|
69
|
+
- Disable mdbook-linkcheck ([#2970](https://github.com/casey/just/pull/2970) by [casey](https://github.com/casey))
|
|
70
|
+
|
|
4
71
|
[1.43.1](https://github.com/casey/just/releases/tag/1.43.1) - 2025-11-12
|
|
5
72
|
------------------------------------------------------------------------
|
|
6
73
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.45.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": "^
|
|
47
|
+
"@types/node": "^25.0.3",
|
|
48
48
|
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
|
49
49
|
"@typescript-eslint/parser": "^8.21.0",
|
|
50
50
|
"eslint": "^9.18.0",
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"typescript": "^5.7.3"
|
|
53
53
|
},
|
|
54
54
|
"optionalDependencies": {
|
|
55
|
-
"rust-just-darwin-arm64": "1.
|
|
56
|
-
"rust-just-darwin-x64": "1.
|
|
57
|
-
"rust-just-linux-arm": "1.
|
|
58
|
-
"rust-just-linux-arm64": "1.
|
|
59
|
-
"rust-just-linux-x64": "1.
|
|
60
|
-
"rust-just-windows-arm64": "1.
|
|
61
|
-
"rust-just-windows-x64": "1.
|
|
55
|
+
"rust-just-darwin-arm64": "1.45.0",
|
|
56
|
+
"rust-just-darwin-x64": "1.45.0",
|
|
57
|
+
"rust-just-linux-arm": "1.45.0",
|
|
58
|
+
"rust-just-linux-arm64": "1.45.0",
|
|
59
|
+
"rust-just-linux-x64": "1.45.0",
|
|
60
|
+
"rust-just-windows-arm64": "1.45.0",
|
|
61
|
+
"rust-just-windows-x64": "1.45.0"
|
|
62
62
|
},
|
|
63
63
|
"eslintConfig": {
|
|
64
64
|
"extends": [
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
],
|
|
75
75
|
"root": true
|
|
76
76
|
},
|
|
77
|
-
"packageManager": "yarn@4.
|
|
77
|
+
"packageManager": "yarn@4.12.0",
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public"
|
|
80
80
|
},
|