rust-just 1.40.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 CHANGED
@@ -1,6 +1,43 @@
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
+
4
41
  [1.40.0](https://github.com/casey/just/releases/tag/1.40.0) - 2025-03-09
5
42
  ------------------------------------------------------------------------
6
43
 
package/lib/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { execa } from 'execa';
3
- import { fileURLToPath } from 'node:url';
3
+ import { fileURLToPath } from 'url';
4
4
  import { platform, arch } from 'os';
5
5
  import yargs from 'yargs/yargs';
6
6
  import { hideBin } from 'yargs/helpers';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-just",
3
- "version": "1.40.0",
3
+ "version": "1.41.0",
4
4
  "description": "🤖 Just a command runner",
5
5
  "bin": {
6
6
  "just": "lib/index.mjs",
@@ -40,11 +40,11 @@
40
40
  },
41
41
  "homepage": "https://github.com/gnpaone/rust-just/tree/master/npm#readme",
42
42
  "dependencies": {
43
- "execa": "^9.5.2",
44
- "yargs": "^17.7.2"
43
+ "execa": "^9.6.0",
44
+ "yargs": "^18.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@types/node": "^22.10.10",
47
+ "@types/node": "^24.0.1",
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.40.0",
56
- "rust-just-darwin-x64": "1.40.0",
57
- "rust-just-linux-arm": "1.40.0",
58
- "rust-just-linux-arm64": "1.40.0",
59
- "rust-just-linux-x64": "1.40.0",
60
- "rust-just-windows-arm64": "1.40.0",
61
- "rust-just-windows-x64": "1.40.0"
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"
62
62
  },
63
63
  "eslintConfig": {
64
64
  "extends": [
@@ -79,6 +79,6 @@
79
79
  "access": "public"
80
80
  },
81
81
  "engines": {
82
- "node": ">=18.19 || >=20.6 || >=21"
82
+ "node": ">=20.19.0"
83
83
  }
84
84
  }