@moonrepo/cli 1.24.1 → 1.25.0-canary.202404222327

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -10,6 +10,13 @@
10
10
  - More accurately monitors signals (ctrl+c) and shutdowns.
11
11
  - Tasks can now be configured with a timeout.
12
12
 
13
+ ## Unreleased
14
+
15
+ #### ⚙️ Internal
16
+
17
+ - Greatly reduced the amount of concurrent locks being held during task execution. May see slight
18
+ performance improvements.
19
+
13
20
  ## 1.24.1
14
21
 
15
22
  #### 🐞 Fixes
@@ -24,6 +31,8 @@
24
31
  - Added an experimental `moon templates` command, that lists all available codegen templates.
25
32
  - Added a `--dependents` flag to `moon project-graph <id>` and `moon query projects`, to include
26
33
  downstream dependents of a focused/affected project.
34
+ - Added a `mutex` task option, allowing for exclusivity and to ensure only 1 task is running at a
35
+ time for the same mutex.
27
36
  - Added a `runner.autoCleanCache` setting to `.moon/workspace.yml`, allowing the post-run clean
28
37
  mechanism to be controlled.
29
38
  - Updated `moon ci` to automatically determine base/head revisions based on your current CI provider
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "1.24.1",
3
+ "version": "1.25.0-canary.202404222327",
4
4
  "description": "moon command line and core system.",
5
5
  "keywords": [
6
6
  "moon",
@@ -26,15 +26,15 @@
26
26
  "postinstall": "node ./postinstall.js"
27
27
  },
28
28
  "dependencies": {
29
- "detect-libc": "^2.0.2"
29
+ "detect-libc": "^2.0.3"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@moonrepo/core-linux-arm64-gnu": "1.24.1",
33
- "@moonrepo/core-linux-arm64-musl": "1.24.1",
34
- "@moonrepo/core-linux-x64-gnu": "1.24.1",
35
- "@moonrepo/core-linux-x64-musl": "1.24.1",
36
- "@moonrepo/core-macos-arm64": "1.24.1",
37
- "@moonrepo/core-macos-x64": "1.24.1",
38
- "@moonrepo/core-windows-x64-msvc": "1.24.1"
32
+ "@moonrepo/core-linux-arm64-gnu": "1.25.0",
33
+ "@moonrepo/core-linux-arm64-musl": "1.25.0",
34
+ "@moonrepo/core-linux-x64-gnu": "1.25.0",
35
+ "@moonrepo/core-linux-x64-musl": "1.25.0",
36
+ "@moonrepo/core-macos-arm64": "1.25.0",
37
+ "@moonrepo/core-macos-x64": "1.25.0",
38
+ "@moonrepo/core-windows-x64-msvc": "1.25.0"
39
39
  }
40
40
  }