rust-just 1.41.0 → 1.42.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.
- package/CHANGELOG.md +25 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,31 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[1.42.1](https://github.com/casey/just/releases/tag/1.42.1) - 2025-07-14
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Export variables to submodules ([#2816](https://github.com/casey/just/pull/2816) by [casey](https://github.com/casey))
|
|
10
|
+
- Only override root-justfile variable assignments ([#2815](https://github.com/casey/just/pull/2815) by [casey](https://github.com/casey))
|
|
11
|
+
|
|
12
|
+
[1.42.0](https://github.com/casey/just/releases/tag/1.42.0) - 2025-07-13
|
|
13
|
+
------------------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- Use correct scope when running recipes in submodules ([#2810](https://github.com/casey/just/pull/2810) by [casey](https://github.com/casey))
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
- Add `[parallel]` attribute to run dependencies in parallel ([#2803](https://github.com/casey/just/pull/2803) by [casey](https://github.com/casey))
|
|
20
|
+
- Allow configuring `cygpath` with `--cygpath` and `$JUST_CYGPATH` ([#2804](https://github.com/casey/just/pull/2804) by [hyrious](https://github.com/hyrious))
|
|
21
|
+
- Use GitHub token in `install.sh` if available ([#2676](https://github.com/casey/just/pull/2676) by [jpeeler](https://github.com/jpeeler))
|
|
22
|
+
- Add `[metadata]` recipe attribute ([#2794](https://github.com/casey/just/pull/2794) by [wiktor-k](https://github.com/wiktor-k))
|
|
23
|
+
- Allow depending on recipes in submodules ([#2672](https://github.com/casey/just/pull/2672) by [corvusrabus](https://github.com/corvusrabus))
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- Allow completing multiple recipes in bash ([#2764](https://github.com/casey/just/pull/2764) by [antirais](https://github.com/antirais))
|
|
27
|
+
- Make global justfile filename case-insensitive ([#2802](https://github.com/casey/just/pull/2802) by [casey](https://github.com/casey))
|
|
28
|
+
|
|
4
29
|
[1.41.0](https://github.com/casey/just/releases/tag/1.41.0) - 2025-07-01
|
|
5
30
|
------------------------------------------------------------------------
|
|
6
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.42.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.
|
|
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.42.1",
|
|
56
|
+
"rust-just-darwin-x64": "1.42.1",
|
|
57
|
+
"rust-just-linux-arm": "1.42.1",
|
|
58
|
+
"rust-just-linux-arm64": "1.42.1",
|
|
59
|
+
"rust-just-linux-x64": "1.42.1",
|
|
60
|
+
"rust-just-windows-arm64": "1.42.1",
|
|
61
|
+
"rust-just-windows-x64": "1.42.1"
|
|
62
62
|
},
|
|
63
63
|
"eslintConfig": {
|
|
64
64
|
"extends": [
|