rust-just 1.39.0 → 1.41.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 +63 -0
- package/README.md +3 -3
- package/lib/index.mjs +1 -1
- package/package.json +22 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,69 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[1.41.0](https://github.com/casey/just/releases/tag/1.41.0) - 2025-07-01
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Treat SIGINFO as non-fatal ([#2788](https://github.com/casey/just/pull/2788) by [casey](https://github.com/casey))
|
|
9
|
+
- Improve signal handling ([#2488](https://github.com/casey/just/pull/2488) by [casey](https://github.com/casey))
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Add `dotenv-override` setting ([#2785](https://github.com/casey/just/pull/2785) by [Lun4m](https://github.com/Lun4m))
|
|
13
|
+
- Add `PATH_SEP` and `PATH_VAR_SEP` constants ([#2679](https://github.com/casey/just/pull/2679) by [casey](https://github.com/casey))
|
|
14
|
+
- Add `--tempdir` command-line option ([#2798](https://github.com/casey/just/pull/2798) by [casey](https://github.com/casey))
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- Pin `clap_complete` to last compatible version ([#2800](https://github.com/casey/just/pull/2800) by [casey](https://github.com/casey))
|
|
18
|
+
|
|
19
|
+
### Misc
|
|
20
|
+
- Add `arkade` to readme ([#2700](https://github.com/casey/just/pull/2700) by [rgee0](https://github.com/rgee0))
|
|
21
|
+
- Link to pipx instead of pypi in readme ([#2799](https://github.com/casey/just/pull/2799) by [casey](https://github.com/casey))
|
|
22
|
+
- Add reasons to `#[ignore]` attributes ([#2797](https://github.com/casey/just/pull/2797) by [casey](https://github.com/casey))
|
|
23
|
+
- Mention that command-line environment variables are inherited ([#2783](https://github.com/casey/just/pull/2783) by [philipmgrant](https://github.com/philipmgrant))
|
|
24
|
+
- Fix attribute grammar and update documentation ([#2790](https://github.com/casey/just/pull/2790) by [casey](https://github.com/casey))
|
|
25
|
+
- Tweak prose in groups section of readme ([#2767](https://github.com/casey/just/pull/2767) by [offby1](https://github.com/offby1))
|
|
26
|
+
- Update `extractions/setup-just` version in readme ([#2735](https://github.com/casey/just/pull/2735) by [esadek](https://github.com/esadek))
|
|
27
|
+
- Remove `return` in `Recipe::confirm` ([#2789](https://github.com/casey/just/pull/2789) by [casey](https://github.com/casey))
|
|
28
|
+
- Add `mise` to alternatives in readem ([#2758](https://github.com/casey/just/pull/2758) by [koppor](https://github.com/koppor))
|
|
29
|
+
- Update `softprops/action-gh-release` ([#2781](https://github.com/casey/just/pull/2781) by [app/dependabot](https://github.com/app/dependabot))
|
|
30
|
+
- Use `default` as name of `--init` justfile default recipe ([#2777](https://github.com/casey/just/pull/2777) by [casey](https://github.com/casey))
|
|
31
|
+
- Add `just.systems` link to `--init` justfile ([#2776](https://github.com/casey/just/pull/2776) by [casey](https://github.com/casey))
|
|
32
|
+
- Fix `kitchen-sink.just` comment ([#2738](https://github.com/casey/just/pull/2738) by [azarmadr](https://github.com/azarmadr))
|
|
33
|
+
- Update `softprops/action-gh-release` ([#2716](https://github.com/casey/just/pull/2716) by [app/dependabot](https://github.com/app/dependabot))
|
|
34
|
+
- Fix clippy lints ([#2768](https://github.com/casey/just/pull/2768) by [casey](https://github.com/casey))
|
|
35
|
+
- Add back-to-the-top link to readme ([#2707](https://github.com/casey/just/pull/2707) by [bravesasha](https://github.com/bravesasha))
|
|
36
|
+
- Placate clippy lints for 1.86 ([#2708](https://github.com/casey/just/pull/2708) by [casey](https://github.com/casey))
|
|
37
|
+
- Use `-S` in `uv` example ([#2696](https://github.com/casey/just/pull/2696) by [rmoorman](https://github.com/rmoorman))
|
|
38
|
+
- Handle `--request` without parsing justfile ([#2683](https://github.com/casey/just/pull/2683) by [casey](https://github.com/casey))
|
|
39
|
+
- Bump MSRV to 1.77 and enforce on CI ([#2674](https://github.com/casey/just/pull/2674) by [casey](https://github.com/casey))
|
|
40
|
+
|
|
41
|
+
[1.40.0](https://github.com/casey/just/releases/tag/1.40.0) - 2025-03-09
|
|
42
|
+
------------------------------------------------------------------------
|
|
43
|
+
|
|
44
|
+
### Added
|
|
45
|
+
- Allow the target of aliases to be recipes in submodules ([#2632](https://github.com/casey/just/pull/2632) by [corvusrabus](https://github.com/corvusrabus))
|
|
46
|
+
- Make `--list-submodules` require `--list` ([#2622](https://github.com/casey/just/pull/2622) by [casey](https://github.com/casey))
|
|
47
|
+
|
|
48
|
+
### Fixed
|
|
49
|
+
- Star parameters may follow default parameters ([#2660](https://github.com/casey/just/pull/2660) by [casey](https://github.com/casey))
|
|
50
|
+
|
|
51
|
+
### Misc
|
|
52
|
+
- Remove `test!` macro from readme ([#2648](https://github.com/casey/just/pull/2648) by [casey](https://github.com/casey))
|
|
53
|
+
- Sort enum variant, struct member, and trait members alphabetically ([#2646](https://github.com/casey/just/pull/2646) by [casey](https://github.com/casey))
|
|
54
|
+
- Add Zed extension to readme ([#2640](https://github.com/casey/just/pull/2640) by [sectore](https://github.com/sectore))
|
|
55
|
+
- Refactor error checking in choose function ([#2643](https://github.com/casey/just/pull/2643) by [casey](https://github.com/casey))
|
|
56
|
+
- Use `Test` struct instead of `test!` macro ([#2642](https://github.com/casey/just/pull/2642) by [casey](https://github.com/casey))
|
|
57
|
+
- Include unicode codepoint in unknown start of token error ([#2637](https://github.com/casey/just/pull/2637) by [CramBL](https://github.com/CramBL))
|
|
58
|
+
- Ignore broken pipe error from chooser ([#2639](https://github.com/casey/just/pull/2639) by [casey](https://github.com/casey))
|
|
59
|
+
- Guarantee that `Namepath`s are non-empty ([#2638](https://github.com/casey/just/pull/2638) by [casey](https://github.com/casey))
|
|
60
|
+
- Remove unnecessary binding modifiers ([#2636](https://github.com/casey/just/pull/2636) by [casey](https://github.com/casey))
|
|
61
|
+
- Document Vim and Neovim built-in syntax highlighting ([#2619](https://github.com/casey/just/pull/2619) by [laniakea64](https://github.com/laniakea64))
|
|
62
|
+
- Remove rust:just Repology badge ([#2614](https://github.com/casey/just/pull/2614) by [laniakea64](https://github.com/laniakea64))
|
|
63
|
+
- Clarify --list argument ([#2609](https://github.com/casey/just/pull/2609) by [casey](https://github.com/casey))
|
|
64
|
+
- Expand Windows path documentation ([#2602](https://github.com/casey/just/pull/2602) by [casey](https://github.com/casey))
|
|
65
|
+
- Fix readme typos ([#2596](https://github.com/casey/just/pull/2596) by [CramBL](https://github.com/CramBL))
|
|
66
|
+
|
|
4
67
|
[1.39.0](https://github.com/casey/just/releases/tag/1.39.0) - 2025-01-22
|
|
5
68
|
------------------------------------------------------------------------
|
|
6
69
|
|
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ The recommended way to install `rust-just` is as a global dependency:
|
|
|
48
48
|
and then run with:
|
|
49
49
|
|
|
50
50
|
```
|
|
51
|
-
~/$
|
|
51
|
+
~/$ just [OPTIONS] [ARGUMENTS]...
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
### Installation as local dependency
|
|
@@ -59,12 +59,12 @@ and then run with:
|
|
|
59
59
|
~/$ npm install rust-just
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
> **Note:** To pass Execa options to `
|
|
62
|
+
> **Note:** To pass Execa options to `just`, use the `--execaoptions <OPTIONS>` flag, where `OPTIONS` is in JSON format.
|
|
63
63
|
>
|
|
64
64
|
> For example:
|
|
65
65
|
>
|
|
66
66
|
> ```
|
|
67
|
-
> ~/$
|
|
67
|
+
> ~/$ just --execaoptions '{"stdio": "inherit", "reject": false}' [OPTIONS] [ARGUMENTS]...
|
|
68
68
|
> ```
|
|
69
69
|
>
|
|
70
70
|
> For a complete list of available Execa options, refer to the [Execa API documentation](https://github.com/sindresorhus/execa/blob/main/docs/api.md#options-1).
|
package/lib/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.41.0",
|
|
4
4
|
"description": "🤖 Just a command runner",
|
|
5
|
-
"bin":
|
|
5
|
+
"bin": {
|
|
6
|
+
"just": "lib/index.mjs",
|
|
7
|
+
"rust-just": "lib/index.mjs"
|
|
8
|
+
},
|
|
6
9
|
"exports": {
|
|
7
10
|
".": {
|
|
8
11
|
"import": "./lib/index.mjs"
|
|
@@ -37,25 +40,25 @@
|
|
|
37
40
|
},
|
|
38
41
|
"homepage": "https://github.com/gnpaone/rust-just/tree/master/npm#readme",
|
|
39
42
|
"dependencies": {
|
|
40
|
-
"execa": "^9.
|
|
41
|
-
"yargs": "^
|
|
43
|
+
"execa": "^9.6.0",
|
|
44
|
+
"yargs": "^18.0.0"
|
|
42
45
|
},
|
|
43
46
|
"devDependencies": {
|
|
44
|
-
"@types/node": "^
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
46
|
-
"@typescript-eslint/parser": "^
|
|
47
|
-
"eslint": "^
|
|
48
|
-
"tsup": "^8.
|
|
49
|
-
"typescript": "^5.
|
|
47
|
+
"@types/node": "^24.0.1",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
|
49
|
+
"@typescript-eslint/parser": "^8.21.0",
|
|
50
|
+
"eslint": "^9.18.0",
|
|
51
|
+
"tsup": "^8.3.5",
|
|
52
|
+
"typescript": "^5.7.3"
|
|
50
53
|
},
|
|
51
54
|
"optionalDependencies": {
|
|
52
|
-
"rust-just-darwin-arm64": "1.
|
|
53
|
-
"rust-just-darwin-x64": "1.
|
|
54
|
-
"rust-just-linux-arm": "1.
|
|
55
|
-
"rust-just-linux-arm64": "1.
|
|
56
|
-
"rust-just-linux-x64": "1.
|
|
57
|
-
"rust-just-windows-arm64": "1.
|
|
58
|
-
"rust-just-windows-x64": "1.
|
|
55
|
+
"rust-just-darwin-arm64": "1.41.0",
|
|
56
|
+
"rust-just-darwin-x64": "1.41.0",
|
|
57
|
+
"rust-just-linux-arm": "1.41.0",
|
|
58
|
+
"rust-just-linux-arm64": "1.41.0",
|
|
59
|
+
"rust-just-linux-x64": "1.41.0",
|
|
60
|
+
"rust-just-windows-arm64": "1.41.0",
|
|
61
|
+
"rust-just-windows-x64": "1.41.0"
|
|
59
62
|
},
|
|
60
63
|
"eslintConfig": {
|
|
61
64
|
"extends": [
|
|
@@ -71,11 +74,11 @@
|
|
|
71
74
|
],
|
|
72
75
|
"root": true
|
|
73
76
|
},
|
|
74
|
-
"packageManager": "yarn@4.
|
|
77
|
+
"packageManager": "yarn@4.6.0",
|
|
75
78
|
"publishConfig": {
|
|
76
79
|
"access": "public"
|
|
77
80
|
},
|
|
78
81
|
"engines": {
|
|
79
|
-
"node": ">=
|
|
82
|
+
"node": ">=20.19.0"
|
|
80
83
|
}
|
|
81
84
|
}
|