rust-just 1.47.0 → 1.47.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 +19 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[1.47.1](https://github.com/casey/just/releases/tag/1.47.1) - 2026-03-16
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Block on running parallel dependencies ([#3139](https://github.com/casey/just/pull/3139) by [casey](https://github.com/casey))
|
|
9
|
+
- Fix setting-exported assignment visibility in child modules ([#3128](https://github.com/casey/just/pull/3128) by [casey](https://github.com/casey))
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Add `eager` keyword to force evaluation of unused assignments ([#3131](https://github.com/casey/just/pull/3131) by [casey](https://github.com/casey))
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Only evaluate used variables in --evaluate and --command ([#3130](https://github.com/casey/just/pull/3130) by [casey](https://github.com/casey))
|
|
16
|
+
|
|
17
|
+
### Misc
|
|
18
|
+
- Make eager assignments unstable ([#3140](https://github.com/casey/just/pull/3140) by [casey](https://github.com/casey))
|
|
19
|
+
- Include path to .env file in error messages ([#3135](https://github.com/casey/just/pull/3135) by [casey](https://github.com/casey))
|
|
20
|
+
- Consolidate override checking ([#3127](https://github.com/casey/just/pull/3127) by [casey](https://github.com/casey))
|
|
21
|
+
- Update readme version references ([#3126](https://github.com/casey/just/pull/3126) by [casey](https://github.com/casey))
|
|
22
|
+
|
|
4
23
|
[1.47.0](https://github.com/casey/just/releases/tag/1.47.0) - 2026-03-14
|
|
5
24
|
------------------------------------------------------------------------
|
|
6
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.47.
|
|
3
|
+
"version": "1.47.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.
|
|
56
|
-
"rust-just-darwin-x64": "1.47.
|
|
57
|
-
"rust-just-linux-arm": "1.47.
|
|
58
|
-
"rust-just-linux-arm64": "1.47.
|
|
59
|
-
"rust-just-linux-x64": "1.47.
|
|
60
|
-
"rust-just-windows-arm64": "1.47.
|
|
61
|
-
"rust-just-windows-x64": "1.47.
|
|
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"
|
|
62
62
|
},
|
|
63
63
|
"eslintConfig": {
|
|
64
64
|
"extends": [
|